forked from janavipandole/Cara
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
513 lines (447 loc) · 22 KB
/
Copy pathterms.html
File metadata and controls
513 lines (447 loc) · 22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
<!doctype html>
<html lang="en">
<head>
<!-- Character Encoding -->
<meta charset="UTF-8" />
<!-- Viewport for Responsive Design -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Page Title -->
<title>Terms & Conditions | Cara — Modern E-Commerce</title>
<!-- Favicon -->
<link rel="icon" type="image/jpg" sizes="32x32" href="images/favicon.jpg" />
<!-- SEO Meta Tags -->
<meta name="description" content="Read Cara's Terms and Conditions to understand the rules and guidelines for using our platform." />
<meta name="author" content="Cara" />
<meta name="robots" content="index, follow" />
<!-- Language -->
<meta http-equiv="Content-Language" content="en" />
<!-- Theme Color -->
<meta name="theme-color" content="#000000" />
<!-- Stylesheets -->
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="ui-fix.css" />
<link href="https://cdn.jsdelivr.net/npm/remixicon@4.5.0/fonts/remixicon.css" rel="stylesheet" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<style>
#terms-page {
max-width: 860px;
margin: 0 auto;
padding: 40px 80px 60px;
}
#terms-page .back-btn {
display: inline-flex;
align-items: center;
gap: 8px;
margin-bottom: 32px;
background-color: #088178;
color: #fff;
border: none;
padding: 10px 22px;
border-radius: 4px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
text-decoration: none;
transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
#terms-page .back-btn:hover {
background-color: #066b63;
box-shadow: 0 4px 14px rgba(8, 129, 120, 0.35);
}
#terms-page h1 {
font-size: 32px;
font-weight: 700;
color: var(--text-primary);
margin-bottom: 8px;
}
#terms-page .subtitle {
color: var(--text-secondary);
font-size: 15px;
margin-bottom: 28px;
}
#terms-page .intro-text {
color: var(--text-primary);
font-size: 15px;
line-height: 1.8;
margin-bottom: 32px;
}
#terms-page .terms-section {
margin-bottom: 28px;
padding: 24px 28px;
border-radius: 6px;
background-color: var(--bg-secondary);
border-left: 4px solid #088178;
}
#terms-page .terms-section h2 {
font-size: 18px;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 10px;
}
#terms-page .terms-section p,
#terms-page .terms-section ul {
color: var(--text-secondary);
font-size: 14px;
line-height: 1.8;
margin: 0;
}
#terms-page .terms-section ul {
padding-left: 20px;
}
#terms-page .terms-section ul li {
margin-bottom: 6px;
}
#terms-page .footer-note {
text-align: center;
color: var(--text-secondary);
font-size: 13px;
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid var(--border-color, #e0e0e0);
}
@media (max-width: 768px) {
#terms-page {
padding: 30px 24px 40px;
}
#terms-page h1 {
font-size: 24px;
}
#terms-page .terms-section {
padding: 18px 16px;
}
}
</style>
</head>
<body>
<!-- Header -->
<section id="header">
<!-- Logo -->
<a href="index.html">
<img id="siteLogo" src="images/logo.png" alt="Cara Logo" width="130" height="40" />
</a>
<div>
<ul id="navbar">
<!-- Main Navigation Links -->
<li><a href="index.html">Home</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="about.html">About</a></li>
<li><a href="try-on.html">Try-On</a></li>
<li><a href="community.html">Community</a></li>
<li><a href="promotions.html">Promotions</a></li>
<!-- Contact Icon -->
<li class="nav-icon">
<a href="contact.html" aria-label="Contact">
<i class="ri-customer-service-2-line"></i>
</a>
</li>
<!-- Login Icon -->
<li class="nav-icon">
<a href="login.html" aria-label="Login">
<i class="ri-user-3-line"></i>
</a>
</li>
<!-- Cart Icon -->
<li class="nav-icon">
<a href="cart.html" id="lg-bag" aria-label="Cart">
<i class="ri-shopping-bag-4-line"></i>
</a>
</li>
<!-- Theme Toggle -->
<li class="nav-icon">
<button
class="theme-toggle"
id="themeToggle"
aria-label="Toggle dark mode"
>
<i class="ri-moon-line" id="themeIcon"></i>
</button>
</li>
<!-- Close Button -->
<a
href="#"
id="close"
aria-label="Close menu"
aria-hidden="false"
>
<i class="fa-solid fa-xmark"></i>
</a>
</ul>
</div>
<!-- Mobile Navbar -->
<div class="mobile">
<!-- Login Icon -->
<a href="login.html" aria-label="Login">
<i class="ri-user-3-line"></i>
</a>
<!-- Cart Icon -->
<a href="cart.html" aria-label="Cart">
<i class="ri-shopping-bag-4-line"></i>
</a>
<!-- Hamburger Menu -->
<i
class="fas fa-outdent"
id="bar"
role="button"
aria-label="Open menu"
aria-expanded="false"
tabindex="0"
></i>
<!-- Theme Toggle -->
<button class="theme-toggle" id="themeToggleMobile" aria-label="Toggle dark mode">
<i class="ri-moon-line" id="themeIconMobile"></i>
</button>
</div>
</section>
<!-- Page Banner -->
<section id="about-head">
<h2>Terms & Conditions</h2>
</section>
<!-- Scroll Progress Bar -->
<div id="scrollProgress" style="position: fixed; top: 0; left: 0; height: 5px; background: #088178; width: 0%; z-index: 9999; transition: width 0.1s ease;"></div>
<!-- Terms Content Grid Layout -->
<main id="terms-page" style="max-width: 1100px; margin: 0 auto; padding: 40px 20px 60px; display: grid; grid-template-columns: 260px 1fr; gap: 40px;">
<!-- Sticky Sidebar Table of Contents -->
<aside class="terms-sidebar" aria-label="Table of Contents" style="position: sticky; top: 100px; height: fit-content; background: var(--bg-secondary, #f9f9f9); padding: 20px; border-radius: 8px; border: 1px solid var(--border-color, #eee);">
<h4 style="margin: 0 0 15px 0; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-primary);">Navigation</h4>
<ul style="list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 13.5px;">
<li><a href="#sec-01" class="toc-link active" style="color: #088178; font-weight: 600; text-decoration: none; transition: color 0.2s;">1. Acceptance</a></li>
<li><a href="#sec-02" class="toc-link" style="color: #666; text-decoration: none; transition: color 0.2s;">2. Platform Use</a></li>
<li><a href="#sec-03" class="toc-link" style="color: #666; text-decoration: none; transition: color 0.2s;">3. User Accounts</a></li>
<li><a href="#sec-04" class="toc-link" style="color: #666; text-decoration: none; transition: color 0.2s;">4. Intel. Property</a></li>
<li><a href="#sec-05" class="toc-link" style="color: #666; text-decoration: none; transition: color 0.2s;">5. Privacy Policy</a></li>
<li><a href="#sec-06" class="toc-link" style="color: #666; text-decoration: none; transition: color 0.2s;">6. Third-Party</a></li>
<li><a href="#sec-07" class="toc-link" style="color: #666; text-decoration: none; transition: color 0.2s;">7. Liability Limit</a></li>
<li><a href="#sec-08" class="toc-link" style="color: #666; text-decoration: none; transition: color 0.2s;">8. Updates</a></li>
<li><a href="#sec-09" class="toc-link" style="color: #666; text-decoration: none; transition: color 0.2s;">9. Termination</a></li>
<li><a href="#sec-10" class="toc-link" style="color: #666; text-decoration: none; transition: color 0.2s;">10. Contact Us</a></li>
</ul>
</aside>
<!-- Main Terms Texts -->
<div class="terms-content-wrap">
<button onclick="javascript:history.back()" class="back-btn" aria-label="Go back to previous page" style="border: none; font-family: inherit; font-size: inherit; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 25px; background: #088178; color: #fff; padding: 8px 18px; border-radius: 4px; font-weight: 600; cursor: pointer;">
<i class="ri-arrow-left-line"></i> Back
</button>
<h1 style="font-size: 32px; font-weight: 700; margin-bottom: 8px;">Terms & Conditions</h1>
<p class="subtitle" style="color: #666; font-size: 14px; margin-bottom: 25px;">Last Updated — May 2026</p>
<p class="intro-text" style="line-height: 1.8; font-size: 14.5px; margin-bottom: 30px; color: var(--text-primary);">
Welcome to Cara. By accessing or using our platform, you agree to comply
with these Terms & Conditions. Please read them carefully before using
our services.
</p>
<section id="sec-01" class="terms-section scroll-section" style="margin-bottom: 28px; padding: 24px 28px; border-radius: 6px; background-color: var(--bg-secondary, #f9f9f9); border-left: 4px solid #088178;">
<h2 style="font-size: 18px; font-weight: 600; margin-bottom: 10px;"><i class="fas fa-book"></i> 01. Acceptance of Terms</h2>
<p style="line-height: 1.8; font-size: 14px; color: var(--text-secondary, #666);">
By accessing this website, you acknowledge that you have read,
understood, and agreed to be bound by these terms and all applicable
laws and regulations.
</p>
</section>
<section id="sec-02" class="terms-section scroll-section" style="margin-bottom: 28px; padding: 24px 28px; border-radius: 6px; background-color: var(--bg-secondary, #f9f9f9); border-left: 4px solid #088178;">
<h2 style="font-size: 18px; font-weight: 600; margin-bottom: 10px;"><i class="fas fa-bolt"></i> 02. Use of the Platform</h2>
<p style="line-height: 1.8; font-size: 14px; color: var(--text-secondary, #666); margin-bottom: 12px;">
Users must use the platform responsibly and lawfully. Any misuse,
harmful activity, or unauthorized access attempt is strictly prohibited.
</p>
<ul style="padding-left: 20px; line-height: 1.8; font-size: 14px; color: var(--text-secondary, #666);">
<li style="margin-bottom: 6px;">Do not upload harmful or malicious content.</li>
<li style="margin-bottom: 6px;">Do not misuse platform resources or services.</li>
<li style="margin-bottom: 6px;">Respect all users and community standards.</li>
</ul>
</section>
<section id="sec-03" class="terms-section scroll-section" style="margin-bottom: 28px; padding: 24px 28px; border-radius: 6px; background-color: var(--bg-secondary, #f9f9f9); border-left: 4px solid #088178;">
<h2 style="font-size: 18px; font-weight: 600; margin-bottom: 10px;"><i class="fas fa-lock"></i> 03. User Accounts</h2>
<p style="line-height: 1.8; font-size: 14px; color: var(--text-secondary, #666);">
You are responsible for maintaining the confidentiality of your account
credentials and for all activities performed under your account.
</p>
</section>
<section id="sec-04" class="terms-section scroll-section" style="margin-bottom: 28px; padding: 24px 28px; border-radius: 6px; background-color: var(--bg-secondary, #f9f9f9); border-left: 4px solid #088178;">
<h2 style="font-size: 18px; font-weight: 600; margin-bottom: 10px;"><i class="fas fa-palette"></i> 04. Intellectual Property</h2>
<p style="line-height: 1.8; font-size: 14px; color: var(--text-secondary, #666);">
All content, branding, logos, graphics, and website materials are the
property of Cara and may not be copied, distributed, or reused without
permission.
</p>
</section>
<section id="sec-05" class="terms-section scroll-section" style="margin-bottom: 28px; padding: 24px 28px; border-radius: 6px; background-color: var(--bg-secondary, #f9f9f9); border-left: 4px solid #088178;">
<h2 style="font-size: 18px; font-weight: 600; margin-bottom: 10px;"><i class="fas fa-shield-alt"></i> 05. Privacy Policy</h2>
<p style="line-height: 1.8; font-size: 14px; color: var(--text-secondary, #666);">
Your use of the platform is also governed by our
<a href="privacy.html" style="color: #088178; font-weight: 600;" aria-label="View our Privacy Policy">Privacy Policy</a>.
</p>
</section>
<section id="sec-06" class="terms-section scroll-section" style="margin-bottom: 28px; padding: 24px 28px; border-radius: 6px; background-color: var(--bg-secondary, #f9f9f9); border-left: 4px solid #088178;">
<h2 style="font-size: 18px; font-weight: 600; margin-bottom: 10px;"><i class="fas fa-globe"></i> 06. Third-Party Services</h2>
<p style="line-height: 1.8; font-size: 14px; color: var(--text-secondary, #666);">
Some features may include third-party integrations or external links.
We are not responsible for the content or practices of those services.
</p>
</section>
<section id="sec-07" class="terms-section scroll-section" style="margin-bottom: 28px; padding: 24px 28px; border-radius: 6px; background-color: var(--bg-secondary, #f9f9f9); border-left: 4px solid #088178;">
<h2 style="font-size: 18px; font-weight: 600; margin-bottom: 10px;"><i class="fas fa-balance-scale"></i> 07. Limitation of Liability</h2>
<p style="line-height: 1.8; font-size: 14px; color: var(--text-secondary, #666);">
Cara shall not be held liable for any direct, indirect, or incidental
damages arising from the use of the platform.
</p>
</section>
<section id="sec-08" class="terms-section scroll-section" style="margin-bottom: 28px; padding: 24px 28px; border-radius: 6px; background-color: var(--bg-secondary, #f9f9f9); border-left: 4px solid #088178;">
<h2 style="font-size: 18px; font-weight: 600; margin-bottom: 10px;"><i class="fas fa-sync"></i> 08. Updates to Terms</h2>
<p style="line-height: 1.8; font-size: 14px; color: var(--text-secondary, #666);">
We reserve the right to modify or update these Terms & Conditions.
Continued use of the platform after changes constitutes acceptance of the updated terms.
</p>
</section>
<section id="sec-09" class="terms-section scroll-section" style="margin-bottom: 28px; padding: 24px 28px; border-radius: 6px; background-color: var(--bg-secondary, #f9f9f9); border-left: 4px solid #088178;">
<h2 style="font-size: 18px; font-weight: 600; margin-bottom: 10px;"><i class="fas fa-ban"></i> 09. Termination</h2>
<p style="line-height: 1.8; font-size: 14px; color: var(--text-secondary, #666);">
We may suspend or terminate access to the platform for users who
violate these terms.
</p>
</section>
<section id="sec-10" class="terms-section scroll-section" style="margin-bottom: 28px; padding: 24px 28px; border-radius: 6px; background-color: var(--bg-secondary, #f9f9f9); border-left: 4px solid #088178;">
<h2 style="font-size: 18px; font-weight: 600; margin-bottom: 10px;"><i class="fas fa-phone"></i> 10. Contact</h2>
<p style="line-height: 1.8; font-size: 14px; color: var(--text-secondary, #666);">
If you have any questions regarding these Terms & Conditions,
contact us through our <a href="contact.html" style="color: #088178; font-weight: 600;" aria-label="Go to Contact page">Contact page</a>.
</p>
</section>
<div class="footer-note" style="text-align: center; color: #888; font-size: 12.5px; margin-top: 40px; border-top: 1px solid #eee; padding-top: 20px;">© 2026 Cara — All Rights Reserved</div>
</div>
</main>
<!-- Scroll Progress and Scroll Spy Logic -->
<script>
window.addEventListener('scroll', () => {
// --- 1. Scroll Progress Bar ---
const winScroll = document.documentElement.scrollTop || document.body.scrollTop;
const height = document.documentElement.scrollHeight - document.documentElement.clientHeight;
const scrolled = (winScroll / height) * 100;
document.getElementById('scrollProgress').style.width = scrolled + '%';
// --- 2. Scroll Spy Navigation ---
const sections = document.querySelectorAll('.scroll-section');
const tocLinks = document.querySelectorAll('.toc-link');
let currentSectionId = '';
sections.forEach(sec => {
const sectionTop = sec.offsetTop;
if (pageYOffset >= sectionTop - 120) {
currentSectionId = sec.getAttribute('id');
}
});
tocLinks.forEach(link => {
link.classList.remove('active');
link.style.color = '#666';
link.style.fontWeight = '400';
if (link.getAttribute('href') === `#${currentSectionId}`) {
link.classList.add('active');
link.style.color = '#088178';
link.style.fontWeight = '600';
}
});
});
</script>
<!-- Back to Top -->
<button id="backToTop" title="Back to Top" aria-label="Back to top">⬆</button>
<button id="Toptoback" title="Top To Back" aria-label="Scroll to bottom">⬇</button>
<!-- Footer -->
<footer class="section-p1">
<div class="col">
<img class="logo" src="images/logo.png" alt="Cara Logo" width="130" height="40" loading="lazy" />
<h4>Contact</h4>
<p><strong>Address:</strong> 562 Wellington Road, Street 32, San Francisco</p>
<p><strong>Phone:</strong> +01 2222 365 / (+91) 01 2345 6789</p>
<p><strong>Hours:</strong> 10:00 - 18:00, Mon - Sat</p>
<div class="follow">
<h4>Follow us</h4>
<div class="icon">
<a href="https://x.com/JanaviPandole" target="_blank" rel="noopener noreferrer">
<i class="fa-brands fa-x-twitter"></i>
</a>
<a href="https://github.com/janavipandole" target="_blank" rel="noopener noreferrer">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/janavi-pandole-80a7b2290" target="_blank" rel="noopener noreferrer">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://www.youtube.com/@JanaviPandole" target="_blank" rel="noopener noreferrer">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
</div>
<!-- About Column -->
<div class="col">
<h4>About</h4>
<a href="about.html">About Us</a>
<a href="#">Delivery Information</a>
<a href="privacy.html">Privacy Policy</a>
<a href="terms.html">Terms and Conditions</a>
<a href="contact.html">Contact Us</a>
</div>
<!-- My Account Column -->
<div class="col">
<h4>My Account</h4>
<a href="login.html">Sign In</a>
<a href="cart.html">View Cart</a>
<a href="wishlist.html">My Wishlist</a>
<a href="cart.html">Track My Order</a>
<a href="contact.html">Help</a>
</div>
<!-- Newsletter Column -->
<div class="col newsletter-footer">
<h4>Newsletter</h4>
<p>Get email updates about our latest shop and <span>special offers.</span></p>
<form class="newsletter-form">
<input type="email" placeholder="Your email address" required />
<button type="submit" class="normal">Sign Up</button>
</form>
</div>
<!-- Install app column -->
<div class="col install">
<h4>Install App</h4>
<p>From App Store or Google Play</p>
<div class="row">
<img src="images/pay/app.jpg" alt="Download from App Store" width="180" height="54" loading="lazy" />
<img src="images/pay/play.jpg" alt="Get it on Google Play" width="180" height="54" loading="lazy" />
</div>
<p>Secured Payment Gateways</p>
<div class="payment-icons">
<a href="https://www.visa.com" target="_blank" rel="noopener noreferrer" aria-label="Visa">
<i class="fab fa-cc-visa"></i>
</a>
<a href="https://www.mastercard.com" target="_blank" rel="noopener noreferrer" aria-label="Mastercard">
<i class="fab fa-cc-mastercard"></i>
</a>
<a href="https://www.paypal.com" target="_blank" rel="noopener noreferrer" aria-label="PayPal">
<i class="fab fa-cc-paypal"></i>
</a>
<a href="https://www.americanexpress.com" target="_blank" rel="noopener noreferrer" aria-label="American Express">
<i class="fab fa-cc-amex"></i>
</a>
<a href="https://stripe.com" target="_blank" rel="noopener noreferrer" aria-label="Stripe">
<i class="fab fa-cc-stripe"></i>
</a>
</div>
</div>
<!-- Copyright Section -->
<div class="copyright">
<p>
© Cara 2026. All rights reserved. |
<a href="license.html" style="color: #088178"> MIT License </a>
</p>
</div>
</footer>
<div id="toast-container"></div>
<script src="app.js"></script>
<script id="Current-Year">
document.getElementById("Current-Year").textContent = new Date().getFullYear();
</script>
<script src="js/terms-print.js" defer></script>
</body>
</html>
<!-- Accessibility and structural improvements -->