@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --sky: #1FA9E1;
  --sky-dark: #0E86B8;
  --sky-pale: #EAF7FD;
  --saffron: #F2942E;
  --saffron-dark: #D97A18;
  --slate: #1A2332;
  --slate-soft: #5A6A7A;
  --cream: #F8F6F2;
  --white: #FFFFFF;
  --line: #E8ECF0;
  --good: #2D9E6B;
  --bad: #D64545;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 20px 60px rgba(31,169,225,0.12);
  --shadow-card: 0 4px 24px rgba(26,35,50,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--slate); background: var(--cream); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ---- Animations ---- */
@keyframes fadeUp { from { opacity:0; transform:translateY(32px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes float { 0%,100% { transform:translateY(0px); } 50% { transform:translateY(-12px); } }
@keyframes shimmer { 0% { background-position:-200% 0; } 100% { background-position:200% 0; } }
@keyframes pulse-ring { 0% { transform:scale(1); opacity:0.6; } 100% { transform:scale(1.5); opacity:0; } }
@keyframes slideIn { from { transform:translateX(100%); } to { transform:translateX(0); } }
@keyframes blob { 0%,100%{border-radius:60% 40% 30% 70%/60% 30% 70% 40%;} 50%{border-radius:30% 60% 70% 40%/50% 60% 30% 60%;} }

.animate-fade-up { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity:1; transform:none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248,246,242,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(232,236,240,0.8);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 32px rgba(26,35,50,0.08); }
.header-inner { display:flex; align-items:center; justify-content:space-between; padding:14px 28px; max-width:1200px; margin:0 auto; }
.logo-link { display:flex; align-items:center; gap:10px; }
.logo-link img { height:44px; transition:transform 0.3s; }
.logo-link:hover img { transform:scale(1.04); }
.nav-links { display:flex; gap:36px; align-items:center; }
.nav-links a {
  font-size:14px; font-weight:600; color:var(--slate-soft);
  position:relative; transition:color 0.2s; letter-spacing:0.2px;
}
.nav-links a::after { content:''; position:absolute; bottom:-3px; left:0; width:0; height:2px; background:var(--sky); border-radius:999px; transition:width 0.3s cubic-bezier(0.22,1,0.36,1); }
.nav-links a:hover, .nav-links a.active { color:var(--slate); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.header-actions { display:flex; align-items:center; gap:16px; }
.cart-btn { position:relative; background:none; border:none; padding:10px; border-radius:50%; transition:background 0.2s; }
.cart-btn:hover { background:var(--sky-pale); }
.cart-count { position:absolute; top:2px; right:2px; background:var(--saffron); color:white; font-size:10px; font-weight:800; border-radius:50%; width:18px; height:18px; display:flex; align-items:center; justify-content:center; }
.track-link { font-size:13px; font-weight:700; color:var(--sky-dark); border:2px solid var(--sky); border-radius:999px; padding:8px 18px; transition:all 0.2s; }
.track-link:hover { background:var(--sky); color:white; }

/* ---- Buttons ---- */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:14px 30px; border-radius:999px; font-weight:700; font-size:15px; border:none; transition:all 0.25s cubic-bezier(0.22,1,0.36,1); position:relative; overflow:hidden; }
.btn::before { content:''; position:absolute; inset:0; background:rgba(255,255,255,0.15); opacity:0; transition:opacity 0.2s; }
.btn:hover::before { opacity:1; }
.btn-primary { background:linear-gradient(135deg,var(--saffron),var(--saffron-dark)); color:white; box-shadow:0 8px 24px rgba(242,148,46,0.35); }
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 16px 36px rgba(242,148,46,0.45); }
.btn-primary:active { transform:translateY(-1px); }
.btn-outline { background:transparent; border:2px solid var(--sky); color:var(--sky-dark); }
.btn-outline:hover { background:var(--sky); color:white; transform:translateY(-2px); }
.btn-block { width:100%; }
.btn:disabled { opacity:0.5; cursor:not-allowed; transform:none!important; }

/* ---- Hero ---- */
.hero { position:relative; min-height:92vh; display:flex; align-items:center; overflow:hidden; background:linear-gradient(135deg,#F0FAFE 0%,var(--cream) 50%,#FEF3E6 100%); }
.hero-blob { position:absolute; width:600px; height:600px; background:radial-gradient(circle,rgba(31,169,225,0.12) 0%,transparent 70%); border-radius:50%; top:-100px; right:-100px; animation:float 8s ease-in-out infinite; }
.hero-blob2 { position:absolute; width:400px; height:400px; background:radial-gradient(circle,rgba(242,148,46,0.1) 0%,transparent 70%); border-radius:50%; bottom:-50px; left:-50px; animation:float 10s ease-in-out infinite reverse; }
.hero-inner { display:grid; grid-template-columns:1.1fr 0.9fr; gap:60px; align-items:center; padding:80px 0; position:relative; z-index:2; }
.hero-eyebrow { display:inline-flex; align-items:center; gap:8px; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--sky-dark); background:white; border-radius:999px; padding:8px 18px; box-shadow:0 4px 16px rgba(31,169,225,0.15); margin-bottom:24px; }
.hero-eyebrow span { width:6px; height:6px; background:var(--sky); border-radius:50%; animation:pulse-ring 1.5s ease-out infinite; display:inline-block; }
.hero h1 { font-family:var(--font-display); font-size:62px; line-height:1.05; color:var(--slate); font-weight:700; margin-bottom:20px; }
.hero h1 em { color:var(--sky-dark); font-style:normal; position:relative; }
.hero h1 em::after { content:''; position:absolute; bottom:4px; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--sky),var(--saffron)); border-radius:999px; }
.hero p.lead { font-size:18px; color:var(--slate-soft); max-width:500px; margin-bottom:36px; font-weight:400; line-height:1.7; }
.hero-cta { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:48px; }
.hero-stats { display:flex; gap:40px; }
.hero-stats div b { display:block; font-family:var(--font-display); font-size:28px; color:var(--slate); }
.hero-stats div span { font-size:12px; color:var(--slate-soft); font-weight:600; text-transform:uppercase; letter-spacing:0.5px; }
.hero-visual { position:relative; }
.hero-card { background:white; border-radius:28px; padding:36px; box-shadow:0 32px 80px rgba(26,35,50,0.14); position:relative; overflow:hidden; }
.hero-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg,var(--sky),var(--saffron)); }
.hero-logo-big { width:85%; margin:0 auto; filter:drop-shadow(0 12px 24px rgba(31,169,225,0.2)); animation:float 6s ease-in-out infinite; }
.hero-badge { position:absolute; background:white; border-radius:14px; padding:12px 16px; box-shadow:0 8px 24px rgba(26,35,50,0.1); display:flex; align-items:center; gap:10px; font-size:13px; font-weight:700; }
.hero-badge.b1 { top:20px; right:-20px; }
.hero-badge.b2 { bottom:30px; left:-20px; }
.badge-icon { width:36px; height:36px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:18px; }
.badge-icon.sky { background:var(--sky-pale); }
.badge-icon.saffron { background:#FEF3E6; }

/* ---- Hero slider ---- */
.hero { min-height:auto; padding:0; }
.hero-slider { position:relative; padding:64px 0 40px; }
.hero-slide { opacity:0; visibility:hidden; position:absolute; inset:0; pointer-events:none; }
.hero-slide.active { position:relative; opacity:1; visibility:visible; pointer-events:auto; animation:heroSlideIn 0.7s cubic-bezier(0.22,1,0.36,1) both; }
@keyframes heroSlideIn { from{ opacity:0; transform:translateY(18px); } to{ opacity:1; transform:translateY(0); } }
.hero-icon-display { font-size:104px; text-align:center; line-height:1; filter:drop-shadow(0 16px 28px rgba(31,169,225,0.25)); animation:float 6s ease-in-out infinite; }
.hero-icon-caption { text-align:center; font-weight:800; font-size:17px; margin-top:16px; color:var(--slate); }
.hero-icon-sub { text-align:center; font-size:13px; color:var(--slate-soft); margin-top:6px; }
.hero-rating-big { text-align:center; font-family:var(--font-display); font-size:64px; font-weight:700; color:var(--slate); line-height:1; }
.hero-rating-stars { text-align:center; color:#F5A623; font-size:20px; margin:10px 0 8px; letter-spacing:2px; }
.hero-card--product { text-align:center; cursor:pointer; transition:transform 0.3s; padding:0; overflow:hidden; }
.hero-card--product:hover { transform:translateY(-4px); }
.hero-product-img { width:100%; height:380px; object-fit:cover; display:block; margin:0; }
.hero-card .discount-badge { position:absolute; top:16px; right:16px; background:linear-gradient(135deg,var(--good),#25875a); color:white; font-size:11px; font-weight:800; padding:4px 10px; border-radius:999px; z-index:2; }
.hero-badge { position:absolute; background:white; border-radius:14px; padding:12px 16px; box-shadow:0 8px 24px rgba(26,35,50,0.12); display:flex; align-items:center; gap:10px; font-size:13px; font-weight:700; z-index:3; animation:float 7s ease-in-out infinite; }
.hero-badge.b1 { top:14px; right:-16px; }
.hero-badge.b2 { bottom:22px; left:-16px; animation-delay:0.6s; }
.hero-nav-btn { position:absolute; top:50%; transform:translateY(-50%); width:46px; height:46px; border-radius:50%; background:rgba(255,255,255,0.9); box-shadow:0 8px 24px rgba(26,35,50,0.14); display:flex; align-items:center; justify-content:center; font-size:20px; color:var(--slate); z-index:5; transition:all 0.2s; backdrop-filter:blur(6px); }
.hero-nav-btn:hover { background:var(--sky); color:white; transform:translateY(-50%) scale(1.06); }
.hero-nav-btn.prev { left:-6px; }
.hero-nav-btn.next { right:-6px; }
.hero-dots { display:flex; gap:8px; justify-content:center; margin-top:8px; }
.hero-dot { width:9px; height:9px; border-radius:999px; background:var(--line); transition:all 0.3s cubic-bezier(0.22,1,0.36,1); }
.hero-dot.active { width:28px; background:linear-gradient(90deg,var(--sky),var(--saffron)); }
@media (max-width:860px) { .hero-nav-btn{ display:none; } .hero-badge{ display:none; } }
@media (max-width:560px) { .hero-slider{ padding:36px 0 28px; } }

/* ---- Promo popup ---- */
.promo-popup-bg { position:fixed; inset:0; background:rgba(15,25,35,0.6); backdrop-filter:blur(4px); z-index:300; display:none; align-items:center; justify-content:center; padding:20px; opacity:0; transition:opacity 0.3s; }
.promo-popup-bg.open { display:flex; }
.promo-popup-bg.show { opacity:1; }
.promo-popup { position:relative; width:440px; max-width:100%; background:white; border-radius:24px; overflow:hidden; box-shadow:0 40px 100px rgba(15,25,35,0.35); transform:translateY(24px) scale(0.97); opacity:0; transition:all 0.4s cubic-bezier(0.22,1,0.36,1); max-height:92vh; overflow-y:auto; }
.promo-popup-bg.show .promo-popup { transform:translateY(0) scale(1); opacity:1; }
.promo-popup-close { position:absolute; top:14px; right:14px; width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,0.9); color:var(--slate); font-size:18px; display:flex; align-items:center; justify-content:center; z-index:4; transition:all 0.2s; }
.promo-popup-close:hover { background:white; transform:rotate(90deg); }
.promo-popup-banner { position:relative; background:linear-gradient(135deg,var(--sky) 0%,var(--sky-dark) 60%,var(--slate) 130%); padding:34px 32px 40px; overflow:hidden; text-align:center; }
.promo-popup-banner::before { content:''; position:absolute; width:220px; height:220px; background:radial-gradient(circle,rgba(242,148,46,0.35) 0%,transparent 70%); top:-80px; left:-60px; border-radius:50%; }
.promo-popup-banner::after { content:''; position:absolute; width:180px; height:180px; background:radial-gradient(circle,rgba(255,255,255,0.18) 0%,transparent 70%); bottom:-70px; right:-40px; border-radius:50%; }
.promo-popup-icon { position:relative; z-index:2; font-size:56px; animation:float 4s ease-in-out infinite; filter:drop-shadow(0 10px 20px rgba(0,0,0,0.2)); }
.promo-popup-eyebrow { position:relative; z-index:2; color:rgba(255,255,255,0.85); font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:1.5px; margin-top:12px; }
.promo-popup-body { padding:28px 32px 32px; }
.promo-popup-title { font-family:var(--font-display); font-size:26px; font-weight:700; text-align:center; color:var(--slate); line-height:1.25; margin-bottom:8px; }
.promo-popup-title b { color:var(--saffron-dark); }
.promo-popup-sub { text-align:center; font-size:14px; color:var(--slate-soft); margin-bottom:22px; }
.promo-popup-form .field { margin-bottom:12px; }
.promo-popup-form .field input { padding:12px 15px; font-size:14px; }
.promo-popup-form .btn { margin-top:6px; }
.promo-popup-fine { text-align:center; font-size:11.5px; color:var(--slate-soft); margin-top:14px; }
.promo-popup-error { display:none; background:#FDECEC; color:var(--bad); font-size:12.5px; font-weight:600; padding:9px 12px; border-radius:10px; margin-bottom:10px; }
.promo-popup-error.show { display:block; }
.promo-code-reveal { display:none; text-align:center; }
.promo-code-reveal.show { display:block; }
.promo-code-box { border:2px dashed var(--sky); background:var(--sky-pale); border-radius:14px; padding:16px; margin:6px 0 18px; display:flex; align-items:center; justify-content:space-between; gap:10px; }
.promo-code-box span.code { font-family:var(--font-display); font-size:22px; font-weight:700; color:var(--sky-dark); letter-spacing:1px; }
.promo-code-box button { background:var(--saffron); color:white; font-size:12px; font-weight:800; padding:9px 14px; border-radius:999px; white-space:nowrap; transition:all 0.2s; }
.promo-code-box button:hover { background:var(--saffron-dark); }
.promo-fab { position:fixed; left:22px; bottom:22px; z-index:120; background:linear-gradient(135deg,var(--saffron),var(--saffron-dark)); color:white; font-size:13px; font-weight:800; padding:13px 20px 13px 16px; border-radius:999px; display:none; align-items:center; gap:8px; box-shadow:0 12px 32px rgba(242,148,46,0.4); animation:float 5s ease-in-out infinite; }
.promo-fab.show { display:inline-flex; }
.promo-fab:hover { transform:translateY(-3px); box-shadow:0 18px 40px rgba(242,148,46,0.5); }
@media (max-width:560px) {
  .promo-popup-banner{ padding:26px 24px 32px; }
  .promo-popup-body{ padding:22px 22px 26px; }
  .promo-popup-title{ font-size:22px; }
  .promo-fab{ left:14px; bottom:14px; font-size:12px; padding:11px 16px 11px 14px; }
}

/* ---- Trust strip ---- */
.trust-strip { background:var(--slate); padding:20px 0; }
.trust-inner { display:flex; justify-content:center; gap:60px; align-items:center; flex-wrap:wrap; }
.trust-item { display:flex; align-items:center; gap:10px; color:rgba(255,255,255,0.85); font-size:13px; font-weight:600; }
.trust-item .icon { font-size:20px; }

/* ---- Sections ---- */
.section { padding:80px 0; }
.section-label { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; color:var(--sky-dark); margin-bottom:12px; }
.section-title { font-family:var(--font-display); font-size:38px; font-weight:700; line-height:1.15; margin-bottom:12px; }
.section-sub { color:var(--slate-soft); font-size:16px; max-width:520px; }
.section-head { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:40px; gap:20px; flex-wrap:wrap; }

/* ---- Category pills ---- */
.cat-pills { display:flex; gap:10px; }
.cat-pill { padding:9px 22px; border-radius:999px; font-size:13px; font-weight:700; background:white; border:2px solid var(--line); color:var(--slate-soft); transition:all 0.2s; }
.cat-pill.active { background:var(--sky); border-color:var(--sky); color:white; }
.cat-pill:hover:not(.active) { border-color:var(--sky); color:var(--sky-dark); }

/* ---- Product grid ---- */
.product-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.product-card { background:white; border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); transition:all 0.35s cubic-bezier(0.22,1,0.36,1); display:flex; flex-direction:column; position:relative; }
.product-card:hover { box-shadow:var(--shadow); transform:translateY(-6px); border-color:transparent; }
.product-card .thumb { aspect-ratio:4/3; overflow:hidden; background:linear-gradient(135deg,var(--sky-pale),#FEF3E6); position:relative; }
.product-card .thumb img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s cubic-bezier(0.22,1,0.36,1); }
.product-card:hover .thumb img { transform:scale(1.07); }
.product-card .discount-badge { position:absolute; top:12px; right:12px; background:linear-gradient(135deg,var(--good),#25875a); color:white; font-size:11px; font-weight:800; padding:4px 10px; border-radius:999px; }
.bestseller-badge { position:absolute; top:12px; left:12px; background:linear-gradient(135deg,#F5A623,#E8871E); color:white; font-size:10.5px; font-weight:800; padding:5px 11px; border-radius:999px; letter-spacing:0.2px; box-shadow:0 4px 12px rgba(232,135,30,0.35); z-index:2; }
.product-card .body { padding:18px 20px 20px; display:flex; flex-direction:column; gap:8px; flex:1; }
.cat-tag { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:0.8px; color:var(--saffron-dark); }
.product-card h3 { font-size:16px; font-weight:700; line-height:1.3; color:var(--slate); }
.stars { display:flex; align-items:center; gap:4px; font-size:12px; color:var(--slate-soft); }
.stars .star { color:#F5A623; }
.price-row { display:flex; align-items:baseline; gap:8px; margin-top:auto; padding-top:8px; }
.price-row .price { font-size:20px; font-weight:800; color:var(--slate); }
.price-row .mrp { font-size:13px; color:var(--slate-soft); text-decoration:line-through; }
.product-card .btn { margin-top:12px; padding:11px; font-size:14px; }

/* ---- Why us ---- */
.why-section { background:var(--slate); color:white; }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.why-card { border-radius:var(--radius); padding:32px; border:1px solid rgba(255,255,255,0.08); background:rgba(255,255,255,0.04); transition:all 0.3s; position:relative; overflow:hidden; }
.why-card::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(31,169,225,0.08),transparent); opacity:0; transition:opacity 0.3s; }
.why-card:hover { border-color:rgba(31,169,225,0.3); transform:translateY(-4px); }
.why-card:hover::before { opacity:1; }
.why-icon { width:56px; height:56px; border-radius:16px; background:rgba(31,169,225,0.15); display:flex; align-items:center; justify-content:center; font-size:26px; margin-bottom:20px; }
.why-card h3 { font-size:18px; font-weight:700; margin-bottom:10px; color:white; }
.why-card p { color:rgba(255,255,255,0.6); font-size:14px; line-height:1.7; }

.why-stats-row { display:flex; flex-wrap:wrap; gap:28px; justify-content:space-between; margin-top:48px; padding-top:36px; border-top:1px solid rgba(255,255,255,0.1); }
.why-stat { flex:1; min-width:130px; text-align:center; }
.why-stat b { display:block; font-family:var(--font-display); font-size:30px; color:white; }
.why-stat span { font-size:12px; color:rgba(255,255,255,0.55); font-weight:600; text-transform:uppercase; letter-spacing:0.6px; }

/* ---- Testimonials ---- */
.testimonials { background:white; }
.testimonial-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.testimonial-card { background:var(--cream); border-radius:var(--radius); padding:28px; border:1px solid var(--line); transition:all 0.3s; }
.testimonial-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-card); }
.testimonial-stars { color:#F5A623; font-size:14px; margin-bottom:14px; }
.testimonial-text { font-size:15px; color:var(--slate); line-height:1.7; margin-bottom:18px; font-style:italic; }
.testimonial-author { display:flex; align-items:center; gap:12px; }
.author-avatar { width:40px; height:40px; border-radius:50%; background:linear-gradient(135deg,var(--sky),var(--saffron)); display:flex; align-items:center; justify-content:center; color:white; font-weight:800; font-size:16px; }
.author-name { font-weight:700; font-size:14px; }
.author-city { font-size:12px; color:var(--slate-soft); }

/* ---- Footer ---- */
.site-footer { background:#0F1923; color:rgba(255,255,255,0.65); padding:64px 0 32px; }
.footer-grid { display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.footer-brand img { height:44px; filter:brightness(0) invert(1); opacity:0.9; margin-bottom:16px; }
.footer-brand p { font-size:14px; line-height:1.7; }
.footer-col h4 { color:white; font-size:14px; font-weight:700; margin-bottom:16px; text-transform:uppercase; letter-spacing:0.8px; }
.footer-col a { display:block; font-size:14px; margin-bottom:10px; transition:color 0.2s; }
.footer-col a:hover { color:white; }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); padding-top:24px; display:flex; justify-content:space-between; align-items:center; font-size:13px; flex-wrap:wrap; gap:12px; }

/* ---- Cart drawer ---- */
.overlay { position:fixed; inset:0; background:rgba(15,25,35,0.6); z-index:90; opacity:0; pointer-events:none; transition:opacity 0.3s; backdrop-filter:blur(4px); }
.overlay.open { opacity:1; pointer-events:auto; }
.cart-drawer { position:fixed; top:0; right:0; height:100%; width:420px; max-width:95vw; background:white; z-index:100; transform:translateX(100%); transition:transform 0.35s cubic-bezier(0.22,1,0.36,1); display:flex; flex-direction:column; }
.cart-drawer.open { transform:translateX(0); }
.cart-head { padding:24px; border-bottom:1px solid var(--line); display:flex; justify-content:space-between; align-items:center; }
.cart-head h3 { font-family:var(--font-display); font-size:22px; margin:0; }
.cart-close { background:var(--cream); border:none; width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:18px; transition:background 0.2s; }
.cart-close:hover { background:var(--line); }
.cart-items { flex:1; overflow-y:auto; padding:16px 24px; }
.cart-item { display:flex; gap:14px; padding:16px 0; border-bottom:1px solid var(--line); animation:fadeIn 0.3s; }
.cart-item img { width:68px; height:68px; border-radius:12px; object-fit:contain; background:var(--sky-pale); }
.cart-item .info { flex:1; }
.cart-item .info h4 { margin:0 0 4px; font-size:14px; font-weight:700; }
.cart-item .meta { font-size:12px; color:var(--slate-soft); margin-bottom:8px; }
.qty-control { display:flex; align-items:center; gap:12px; }
.qty-control button { width:28px; height:28px; border-radius:8px; border:1.5px solid var(--line); background:white; font-weight:800; font-size:16px; transition:all 0.2s; }
.qty-control button:hover { background:var(--sky); border-color:var(--sky); color:white; }
.cart-item .remove { font-size:12px; color:var(--bad); background:none; border:none; padding:0; margin-top:6px; cursor:pointer; }
.cart-foot { padding:20px 24px; border-top:1px solid var(--line); }
.cart-foot .row { display:flex; justify-content:space-between; font-size:14px; color:var(--slate-soft); margin-bottom:8px; }
.cart-foot .row.total { font-size:18px; font-weight:800; color:var(--slate); margin:14px 0 18px; }
.empty-cart { text-align:center; padding:60px 20px; color:var(--slate-soft); }
.empty-cart .icon { font-size:48px; margin-bottom:16px; }

/* ---- Page header ---- */
.page-head { background:linear-gradient(135deg,var(--sky-pale),white); padding:56px 0; text-align:center; border-bottom:1px solid var(--line); }
.page-head h1 { font-family:var(--font-display); font-size:40px; margin:0; }
.page-head p { color:var(--slate-soft); margin-top:10px; }

/* ---- Forms / Checkout ---- */
.checkout-stack { display:flex; flex-direction:column; gap:24px; max-width:640px; margin:0 auto; }
.form-card, .summary-card { background:white; border-radius:var(--radius); border:1px solid var(--line); padding:32px; }
.form-card h3, .summary-card h3 { font-family:var(--font-display); font-size:22px; margin:0 0 24px; }
.field { margin-bottom:18px; }
.field label { display:block; font-size:13px; font-weight:700; margin-bottom:7px; color:var(--slate-soft); text-transform:uppercase; letter-spacing:0.4px; }
.field input,.field select,.field textarea { width:100%; padding:13px 16px; border-radius:12px; border:2px solid var(--line); font-size:15px; font-family:inherit; background:var(--cream); transition:all 0.2s; }
.field input:focus,.field select:focus,.field textarea:focus { outline:none; border-color:var(--sky); background:white; box-shadow:0 0 0 4px rgba(31,169,225,0.1); }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.summary-line { display:flex; justify-content:space-between; font-size:14px; padding:10px 0; border-bottom:1px dashed var(--line); }
.summary-line:last-of-type { border:none; }
.badge-secure { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--good); margin-top:16px; font-weight:600; }
.pay-options { display:flex; flex-direction:column; gap:10px; }
.pay-option { display:flex; align-items:center; gap:10px; border:2px solid var(--line); border-radius:12px; padding:13px 16px; cursor:pointer; transition:all 0.2s; }
.pay-option:has(input:checked) { border-color:var(--sky); background:var(--sky-pale); }
.pay-option input { width:16px; height:16px; accent-color:var(--sky); flex-shrink:0; }
.pay-option span { display:flex; flex-direction:column; font-size:14px; font-weight:600; }
.pay-option em { font-style:normal; font-weight:400; font-size:12px; color:var(--slate-soft); margin-top:2px; }

/* ---- Track order ---- */
.track-card { max-width:500px; margin:0 auto; background:white; padding:36px; border-radius:var(--radius); border:1px solid var(--line); }
.status-timeline { list-style:none; padding:0; margin:28px 0 0; }
.status-timeline li { position:relative; padding:0 0 28px 36px; font-size:14px; color:var(--slate-soft); }
.status-timeline li::before { content:''; position:absolute; left:0; top:2px; width:18px; height:18px; border-radius:50%; border:3px solid var(--line); background:white; transition:all 0.3s; }
.status-timeline li::after { content:''; position:absolute; left:8px; top:20px; width:2px; height:calc(100% - 14px); background:var(--line); }
.status-timeline li:last-child::after { display:none; }
.status-timeline li.done { color:var(--slate); font-weight:700; }
.status-timeline li.done::before { border-color:var(--good); background:var(--good); box-shadow:0 0 0 4px rgba(45,158,107,0.15); }

/* Order cards (account.html + track.html) */
.order-row { border:1px solid var(--line); border-radius:14px; padding:18px 20px; margin-bottom:14px; background:white; }
.order-row .top { display:flex; justify-content:space-between; align-items:center; margin-bottom:6px; flex-wrap:wrap; gap:6px; }
.order-row .top strong { font-size:15px; }
.order-status-pill { font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:0.3px; padding:4px 10px; border-radius:999px; background:var(--sky-pale); color:var(--sky-dark); white-space:nowrap; }
.order-row .items { font-size:13px; color:var(--slate-soft); margin-top:6px; }
.order-address { margin-top:12px; padding-top:12px; border-top:1px solid var(--line); font-size:13px; color:var(--slate-soft); line-height:1.6; }
.order-address strong { color:var(--slate); }
.order-actions { display:flex; gap:10px; margin-top:14px; flex-wrap:wrap; }
.btn-sm-order { padding:9px 16px !important; font-size:13px !important; }
.return-status-box { margin-top:12px; padding:10px 14px; background:var(--sky-pale); border-radius:10px; font-size:13px; }

/* Return / replace modal */
.return-modal-bg { position:fixed; inset:0; background:rgba(15,25,35,0.55); z-index:200; display:none; align-items:center; justify-content:center; padding:20px; }
.return-modal-bg.open { display:flex; }
.return-modal { background:white; border-radius:18px; padding:28px; width:440px; max-width:100%; }
.return-modal h3 { font-family:var(--font-display); font-size:20px; margin:0 0 18px; }

/* ---- Toast ---- */
.toast { position:fixed; bottom:28px; left:50%; transform:translateX(-50%) translateY(20px); background:var(--slate); color:white; padding:14px 28px; border-radius:999px; font-size:14px; font-weight:600; z-index:200; opacity:0; transition:all 0.3s cubic-bezier(0.22,1,0.36,1); pointer-events:none; white-space:nowrap; box-shadow:0 8px 32px rgba(26,35,50,0.25); }
.toast.show { opacity:1; transform:translateX(-50%) translateY(0); }

/* ---- Mobile nav toggle (hamburger, injected by cart.js) ---- */
.nav-toggle { display:none; width:40px; height:40px; align-items:center; justify-content:center; background:none; border:none; padding:0; cursor:pointer; flex-shrink:0; }
.nav-toggle span { position:relative; display:block; width:22px; height:2px; background:var(--slate); border-radius:2px; transition:all 0.25s ease; }
.nav-toggle span::before, .nav-toggle span::after { content:''; position:absolute; left:0; width:22px; height:2px; background:var(--slate); border-radius:2px; transition:all 0.25s ease; }
.nav-toggle span::before { top:-7px; }
.nav-toggle span::after { top:7px; }
.nav-toggle.active span { background:transparent; }
.nav-toggle.active span::before { transform:rotate(45deg); top:0; }
.nav-toggle.active span::after { transform:rotate(-45deg); top:0; }

/* Mobile nav panel — appended directly to <body> by cart.js (not nested
   inside the sticky header) so position:fixed behaves correctly on every
   browser, including iOS Safari. */
.mobile-nav-panel {
  position:fixed; top:0; right:0; height:100%; width:78%; max-width:320px;
  background:var(--white); z-index:999; padding:100px 28px 32px;
  display:flex; flex-direction:column; gap:4px; overflow-y:auto;
  transform:translateX(100%); transition:transform 0.35s cubic-bezier(0.22,1,0.36,1);
  box-shadow:-16px 0 48px rgba(15,25,35,0.18);
}
.mobile-nav-panel.open{ transform:translateX(0); }
.mobile-nav-panel a{ font-size:17px; font-weight:600; color:var(--slate); padding:12px 4px; border-bottom:1px solid var(--line); }
.mobile-nav-panel a.active{ color:var(--sky-dark); }

/* Header icons — wishlist + account, injected by cart.js */
.search-toggle { display:flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:50%; font-size:18px; color:var(--slate); background:none; border:none; cursor:pointer; transition:background 0.2s; }
.search-toggle:hover { background:var(--sky-pale); }
.search-box { position:fixed; top:0; left:0; right:0; z-index:150; background:white; box-shadow:0 8px 30px rgba(15,25,35,0.12); transform:translateY(-100%); transition:transform 0.3s cubic-bezier(0.22,1,0.36,1); padding:18px 24px; }
.search-box.open { transform:translateY(0); }
.search-box form { max-width:720px; margin:0 auto; display:flex; align-items:center; gap:10px; }
.search-box input { flex:1; padding:13px 16px; border-radius:12px; border:2px solid var(--line); font-size:15px; font-family:inherit; background:var(--cream); }
.search-box input:focus { outline:none; border-color:var(--sky); background:white; }
.search-box button[type=submit] { background:var(--sky); color:white; border:none; width:44px; height:44px; border-radius:12px; font-size:16px; cursor:pointer; flex-shrink:0; }
.search-close { background:none; border:none; font-size:26px; color:var(--slate-soft); cursor:pointer; width:36px; height:36px; flex-shrink:0; }
.wishlist-link, .account-link { position:relative; display:flex; align-items:center; justify-content:center; min-width:40px; height:40px; border-radius:50%; font-size:20px; color:var(--slate); transition:background 0.2s; }
.wishlist-link:hover, .account-link:hover { background:var(--sky-pale); }
.wishlist-count { position:absolute; top:2px; right:2px; background:var(--saffron); color:white; font-size:10px; font-weight:800; border-radius:50%; width:18px; height:18px; display:flex; align-items:center; justify-content:center; }
.account-link { font-size:13px; font-weight:700; width:auto; border-radius:999px; padding:0 14px; white-space:nowrap; }

/* Wishlist heart button on product cards */
.wishlist-btn { position:absolute; top:12px; left:12px; width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,0.92); color:var(--slate-soft); font-size:16px; display:flex; align-items:center; justify-content:center; transition:all 0.2s; z-index:2; box-shadow:0 2px 8px rgba(15,25,35,0.1); }
.wishlist-btn:hover { background:white; transform:scale(1.08); }
.wishlist-btn.active { color:var(--bad); }

/* ---- Responsive ---- */
@media (max-width:1024px) { .product-grid{grid-template-columns:repeat(3,1fr);} }
@media (max-width:860px) {
  .header-inner{padding:12px 20px;}
  .nav-toggle{display:flex; order:-1; margin-right:4px;}
  .nav-links{display:none;}
  .track-link{display:none;}
  .hero-inner{grid-template-columns:1fr; padding:48px 0;}
  .hero h1{font-size:38px;}
  .hero-visual{ order:-1; margin-bottom:8px; }
  .hero-card{ padding:20px; }
  .hero-card--product{ padding:0; }
  .hero-product-img{ height:220px; }
  .hero-logo-big{ width:55%; }
  .hero-icon-display{ font-size:72px; }
  .product-grid{grid-template-columns:repeat(2,1fr);}
  .why-grid,.testimonial-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .checkout-stack{gap:16px;}
  .field-row{grid-template-columns:1fr;}
  .trust-inner{gap:20px; justify-content:flex-start;}
  .trust-item{font-size:12px;}
}
@media (max-width:560px) {
  .container{padding:0 18px;}
  .hero h1{font-size:30px;}
  .hero p.lead{font-size:16px;}
  .section-title{font-size:26px;}
  .section{padding:56px 0;}
  .cart-drawer{width:100%;}
  .hero-stats{gap:20px; flex-wrap:wrap;}
  .hero-cta{flex-direction:column; align-items:stretch;}
  .hero-cta .btn{width:100%;}
  .hero-product-img{ height:180px; }
  .footer-grid{grid-template-columns:1fr;}
  .footer-bottom{flex-direction:column; align-items:flex-start;}
  .logo-link img{height:36px;}
  .footer-brand img{height:36px;}
}
@media (max-width:420px) {
  .product-grid{grid-template-columns:1fr;}
  .hero h1{font-size:26px;}
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration:0.01ms!important; transition-duration:0.01ms!important; } }
