/* ═══════════════════════════════════════════════════════════════
   विVIDHA — Premium Women's Fashion | style.css
   Theme: Soft Ivory + Golden + Navy Blue + Rose Pink
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&family=Noto+Sans+Devanagari:wght@400;600;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #A8872E;
  --gold-pale: #F7F0DC;
  --navy: #1B2A4A;
  --navy-mid: #2D4070;
  --navy-light: #4A5E8A;
  --pink: #E8789A;
  --pink-light: #F5A8BF;
  --pink-pale: #FDF0F5;
  --ivory: #FAF8F3;
  --ivory-deep: #F2EDE3;
  --white: #FFFFFF;
  --charcoal: #2C2C2C;
  --text-main: #1E1E1E;
  --text-muted: #6B6B6B;
  --text-light: #9A9A9A;
  --border: #E8E0D0;
  --border-soft: #F0EAE0;
  --shadow-sm: 0 2px 12px rgba(27,42,74,0.06);
  --shadow-md: 0 8px 32px rgba(27,42,74,0.10);
  --shadow-lg: 0 20px 60px rgba(27,42,74,0.14);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.20);
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --font-deva: 'Noto Sans Devanagari', sans-serif;
  --nav-h: 72px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ══════════════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════════ */
.announcement-bar {
  background: var(--navy);
  color: var(--gold-light);
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.announcement-bar::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0; bottom: 0;
  width: 60%;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.08), transparent);
  animation: shimmer-bar 3s infinite;
}
@keyframes shimmer-bar { to { left: 150%; } }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,248,243,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-deva {
  font-family: var(--font-deva);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.logo-deva span.vi { color: var(--navy); }
.logo-deva span.vidha { color: var(--gold); }
.logo-deva span.vi-hi { color: var(--gold-dark); }
.logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav Menu */
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-main);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
  position: relative;
  white-space: nowrap;
}
.nav-link:hover { color: var(--gold-dark); background: var(--gold-pale); }
.nav-link.active { color: var(--gold-dark); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 100;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-main);
  border-radius: var(--r-sm);
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover { background: var(--pink-pale); color: var(--pink); }
.nav-dropdown a span.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 6px; }
.nav-icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-main);
  transition: background 0.2s, color 0.2s;
  position: relative;
  font-size: 18px;
}
.nav-icon-btn:hover { background: var(--ivory-deep); color: var(--gold-dark); }
.nav-badge {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  font-size: 9px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--ivory);
}

.btn-login {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 8px 18px;
  border: 1.5px solid var(--navy);
  border-radius: var(--r-xl);
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-login:hover { background: var(--navy); color: var(--white); }

.btn-join {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--r-xl);
  transition: all 0.2s;
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
}
.btn-join:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(201,168,76,0.35); }

/* Mobile hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ivory);
}
.hero-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-circle-1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,120,154,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}
.hero-circle-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 70%);
  bottom: -50px; left: 10%;
  animation: float2 10s ease-in-out infinite;
}
.hero-grid-line {
  position: absolute;
  top: 0; right: 40%;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
  opacity: 0.6;
}
@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-20px,30px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-20px)} }

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content { animation: fadeUp 0.8s ease both; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
.hero-eyebrow span {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 8px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--pink);
}
.hero-title-bold {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 40px;
  font-weight: 300;
  animation: fadeUp 0.8s 0.25s ease both;
}
.hero-tagline-hi {
  font-family: var(--font-deva);
  font-size: 13px;
  color: var(--gold-dark);
  letter-spacing: 1px;
  margin-bottom: 8px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.35s ease both;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 560px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-img-frame {
  position: absolute;
  right: 0; top: 0;
  width: 85%;
  height: 100%;
  border-radius: var(--r-xl) 0 var(--r-xl) var(--r-xl);
  overflow: hidden;
  background: var(--ivory-deep);
}
.hero-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hero-img-frame:hover img { transform: scale(1.03); }
.hero-img-badge {
  position: absolute;
  bottom: 40px; left: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  min-width: 160px;
  animation: slideIn 0.8s 0.5s ease both;
}
.hero-img-badge .badge-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.hero-img-badge .badge-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
}
.hero-img-badge .badge-sub {
  font-size: 11px;
  color: var(--text-muted);
}
.hero-img-tag {
  position: absolute;
  top: 30px; left: -10px;
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--r-xl);
  box-shadow: 0 4px 16px rgba(232,120,154,0.3);
  animation: slideIn 0.8s 0.6s ease both;
}
.hero-scroll-hint {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 1s 0.8s ease both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.4;transform:scaleY(0.7)} }

/* Stats Bar */
.hero-stats {
  padding: 32px 40px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hero-stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item .stat-num sup { font-size: 18px; color: var(--gold); }
.stat-item .stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

/* ══════════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════════ */
.section { padding: 80px 40px; }
.section-inner { max-width: 1400px; margin: 0 auto; }
.section-header { margin-bottom: 48px; }
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.section-eyebrow span {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.section-line { width: 32px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--pink); }
.section-title strong { font-weight: 600; color: var(--navy); }
.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 10px;
  font-weight: 300;
}
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   CATEGORIES SECTION
══════════════════════════════════════════ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--ivory-deep);
  aspect-ratio: 3/4;
  transition: transform 0.3s, box-shadow 0.3s;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.category-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,42,74,0.7) 0%, transparent 50%);
  transition: background 0.3s;
}
.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(27,42,74,0.8) 0%, rgba(27,42,74,0.1) 60%);
}
.category-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  color: white;
}
.category-card-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
}
.category-card-content p {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.8;
}
.category-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.2);
}
.category-card.featured {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* ══════════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ivory-deep);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-sm);
  z-index: 2;
}
.product-tag.new { background: var(--navy); color: white; }
.product-tag.hot { background: var(--pink); color: white; }
.product-tag.sale { background: var(--gold); color: var(--charcoal); }
.product-actions {
  position: absolute;
  top: 12px; right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s, transform 0.25s;
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-action-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, color 0.2s;
}
.product-action-btn:hover { background: var(--pink); color: white; border-color: var(--pink); }
.product-action-btn.wishlisted { color: var(--pink); }
.product-info { padding: 16px 18px 18px; }
.product-brand {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 4px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.product-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.price-current {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
}
.price-old {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: line-through;
}
.price-off {
  font-size: 11px;
  font-weight: 600;
  color: var(--pink);
  background: var(--pink-pale);
  padding: 2px 7px;
  border-radius: var(--r-sm);
}
.btn-add-to-cart {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--navy);
  border-radius: var(--r-sm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-add-to-cart:hover {
  background: var(--navy);
  color: white;
}
.btn-add-to-cart.out-of-stock {
  border-color: var(--border);
  color: var(--text-light);
  cursor: not-allowed;
}
.btn-add-to-cart.out-of-stock:hover { background: transparent; color: var(--text-light); }

/* ══════════════════════════════════════════
   SHOP ALL PAGE
══════════════════════════════════════════ */
.shop-page { display: none; }
.shop-page.active { display: block; }
.page-hero {
  background: var(--navy);
  padding: 60px 40px;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 60%, var(--navy-mid));
  opacity: 0.9;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
}
.page-hero-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 8px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  min-height: 70vh;
}
.shop-sidebar {
  padding: 32px 24px 32px 0;
  border-right: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  align-self: start;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.sidebar-section { margin-bottom: 32px; }
.sidebar-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.sidebar-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ivory-deep);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 14px;
}
.sidebar-search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 13px;
  color: var(--text-main);
}
.sidebar-search input::placeholder { color: var(--text-light); }
.filter-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--ivory-deep);
  font-size: 13px;
  color: var(--text-main);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.price-inputs {
  display: grid;
  grid-template-columns: 1fr 12px 1fr;
  gap: 6px;
  align-items: center;
}
.price-inputs span { text-align: center; color: var(--text-muted); font-size: 12px; }
.price-inputs input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--ivory-deep);
  font-size: 13px;
  color: var(--text-main);
  outline: none;
  text-align: center;
}
.check-group { display: flex; flex-direction: column; gap: 8px; }
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-main);
  cursor: pointer;
}
.check-item input[type=checkbox] {
  width: 16px; height: 16px;
  accent-color: var(--navy);
  cursor: pointer;
}

.shop-main { padding: 32px 0 32px 32px; }
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.shop-count {
  font-size: 13px;
  color: var(--text-muted);
}
.shop-count strong { color: var(--navy); font-weight: 600; }
.shop-view-toggle { display: flex; gap: 6px; }
.view-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  transition: all 0.2s;
}
.view-btn.active { background: var(--navy); color: white; border-color: var(--navy); }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--r-xl);
  transition: all 0.25s;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white;
  box-shadow: 0 4px 20px rgba(27,42,74,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(27,42,74,0.32); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--charcoal);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.35); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: white; }
.btn-pink {
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  color: white;
  box-shadow: 0 4px 20px rgba(232,120,154,0.3);
}
.btn-pink:hover { transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: 11px; }
.btn-text {
  background: transparent;
  color: var(--gold-dark);
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  border-radius: 0;
  padding: 2px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-text:hover { color: var(--navy); border-color: var(--navy); }

/* ══════════════════════════════════════════
   FEATURED BANNER
══════════════════════════════════════════ */
.featured-banner {
  padding: 0 40px;
  margin: 20px 0;
}
.featured-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  position: relative;
}
.featured-banner-content {
  padding: 60px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.featured-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.featured-banner-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.featured-banner-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
}
.featured-banner-title em { font-style: italic; color: var(--gold-light); }
.featured-banner-sub { font-size: 14px; opacity: 0.75; margin-bottom: 32px; line-height: 1.6; }
.featured-banner-img {
  position: relative;
  overflow: hidden;
}
.featured-banner-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ══════════════════════════════════════════
   COLLECTIONS STRIP
══════════════════════════════════════════ */
.collections-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 0 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.collections-strip::-webkit-scrollbar { display: none; }
.collection-pill {
  flex-shrink: 0;
  padding: 10px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  background: var(--white);
}
.collection-pill:hover,
.collection-pill.active {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.collection-pill.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
  color: var(--charcoal);
  font-weight: 600;
}

/* ══════════════════════════════════════════
   NEWSLETTER SECTION
══════════════════════════════════════════ */
.newsletter-section {
  background: var(--ivory-deep);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 600;
  color: rgba(27,42,74,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.newsletter-inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
}
.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  margin-bottom: 12px;
}
.newsletter-title em { font-style: italic; color: var(--pink); }
.newsletter-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-weight: 300;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  outline: none;
  font-size: 13px;
  background: none;
}
.newsletter-form button {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.newsletter-form button:hover { opacity: 0.9; }
.newsletter-spam {
  font-size: 12px;
  color: var(--text-light);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
}
.footer-top {
  padding: 64px 40px 48px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-deva);
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.footer-logo span.gold { color: var(--gold); }
.footer-tagline {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.7;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 15px;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 40px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 12px; opacity: 0.5; }
.footer-payments { display: flex; align-items: center; gap: 8px; }
.payment-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════
   MODAL
══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--white);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--ivory-deep);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  z-index: 10;
}
.modal-close:hover { background: var(--border); }

/* Auth Modal */
.auth-modal-header {
  padding: 40px 40px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border-soft);
}
.auth-logo {
  font-family: var(--font-deva);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.auth-logo .vi { color: var(--navy); }
.auth-logo .vidha { color: var(--gold); }
.auth-modal-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.auth-modal-sub { font-size: 13px; color: var(--text-muted); }
.auth-modal-body { padding: 28px 40px; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--text-main);
  background: var(--ivory);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.auth-switch {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}
.auth-switch a { color: var(--gold-dark); font-weight: 600; }
.auth-switch a:hover { text-decoration: underline; }
.form-error {
  background: #FFF0F0;
  border: 1px solid #FFD0D0;
  color: #C0392B;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  margin-bottom: 16px;
  display: none;
}
.form-error.show { display: block; }

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0; right: -480px;
  width: 480px;
  height: 100vh;
  background: var(--white);
  z-index: 1500;
  box-shadow: -20px 0 60px rgba(0,0,0,0.15);
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
.cart-sidebar.open { right: 0; }
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1499;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
}
.cart-header h3 span {
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-muted);
  margin-left: 8px;
}
.cart-items { flex: 1; overflow-y: auto; padding: 20px 28px; }
.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}
.cart-item-img {
  width: 80px; height: 100px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--ivory-deep);
  flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2px;
}
.cart-item-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.qty-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }
.qty-num { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}
.cart-item-remove {
  color: var(--text-light);
  font-size: 18px;
  align-self: flex-start;
  padding: 4px;
}
.cart-item-remove:hover { color: var(--pink); }
.cart-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 15px;
}
.cart-subtotal .total-label { font-weight: 500; }
.cart-subtotal .total-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
}
.cart-checkout-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white;
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: opacity 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.cart-checkout-btn:hover { opacity: 0.92; transform: translateY(-1px); }
.cart-empty {
  text-align: center;
  padding: 60px 20px;
}
.cart-empty-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.3; }
.cart-empty p {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.cart-empty span { font-size: 13px; color: var(--text-light); }

/* Checkout Modal */
.checkout-modal { max-width: 700px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.checkout-section-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.razorpay-info {
  background: var(--ivory-deep);
  border-radius: var(--r-md);
  padding: 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.razorpay-info img { width: 80px; }

/* Product Detail Modal */
.product-detail-modal { max-width: 900px; padding: 0; }
.pdm-grid { display: grid; grid-template-columns: 1fr 1fr; }
.pdm-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--r-xl) 0 0 var(--r-xl);
  background: var(--ivory-deep);
}
.pdm-img img { width: 100%; height: 100%; object-fit: cover; }
.pdm-info { padding: 40px 36px; overflow-y: auto; max-height: 80vh; }
.pdm-brand {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.pdm-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.2;
}
.pdm-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.pdm-price .current {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
}
.pdm-price .old {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: line-through;
}
.pdm-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.pdm-fabric {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.pdm-fabric-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--navy);
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  padding: 4px 12px;
  border-radius: var(--r-xl);
}
.pdm-color-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.pdm-colors { display: flex; gap: 8px; margin-bottom: 24px; }
.color-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.color-dot.active, .color-dot:hover { border-color: var(--navy); transform: scale(1.1); }
.pdm-actions { display: flex; flex-direction: column; gap: 10px; }

/* Toast */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--navy);
  color: white;
  padding: 14px 20px;
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success .toast-icon { color: #4CAF50; }
.toast.error .toast-icon { color: var(--pink); }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: 0; left: -100%;
  width: 320px;
  height: 100vh;
  background: var(--white);
  z-index: 1500;
  box-shadow: 20px 0 60px rgba(0,0,0,0.15);
  transition: left 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  overflow-y: auto;
}
.mobile-menu.open { left: 0; }
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ivory-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--text-muted);
}
.mobile-menu-logo {
  font-family: var(--font-deva);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 32px;
}
.mobile-menu-logo span { color: var(--gold); }
.mobile-nav-link {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  letter-spacing: 0.5px;
}
.mobile-nav-link:hover { color: var(--gold-dark); }

/* ══════════════════════════════════════════
   TRUST BADGES
══════════════════════════════════════════ */
.trust-section {
  background: var(--white);
  padding: 48px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.trust-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--ivory-deep));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  border: 1px solid var(--border);
}
.trust-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.5px;
}
.trust-sub { font-size: 12px; color: var(--text-muted); }

/* ══════════════════════════════════════════
   PAGE SWITCHING
══════════════════════════════════════════ */
.page { display: none !important; }
.page.active { display: block !important; }
#page-home { display: block !important; }

/* Remove gap below shop page */
#page-shop {
  min-height: 60vh;
}
body {
  overflow-x: hidden;
}

/* Shop page — full viewport fresh page feel */
#page-shop {
  min-height: 100vh;
  background: var(--ivory);
}
#page-shop .shop-layout {
  min-height: calc(100vh - 200px);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .nav-menu, .nav-actions .btn-login, .nav-actions .btn-join { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 400px; }
  .hero-scroll-hint { display: none; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card.featured { grid-column: span 2; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
  .featured-banner-inner { grid-template-columns: 1fr; }
  .featured-banner-img { height: 280px; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .pdm-grid { grid-template-columns: 1fr; }
  .pdm-img { border-radius: var(--r-xl) var(--r-xl) 0 0; aspect-ratio: 4/3; }
}
@media (max-width: 600px) {
  .nav-inner { padding: 0 20px; }
  .section { padding: 60px 20px; }
  .hero-inner { padding: 60px 20px; }
  .hero-stats { padding: 24px 20px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .page-hero { padding: 40px 20px; }
  .shop-main { padding: 20px 0; }
  .featured-banner-content { padding: 36px; }
  .cart-sidebar { width: 100%; right: -100%; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; border-radius: var(--r-md); }
  .newsletter-form input { padding: 14px; }
  .newsletter-form button { border-radius: 0 0 var(--r-md) var(--r-md); }
}