/* ═══════════════════════════════════════════════════════════════
   ITRA PERFUMES — MASTER STYLESHEET
   Design System: Mughal Luxury Editorial
   Palette: Burgundy · Gold · Ivory · Charcoal
═══════════════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  /* Colors */
  --burgundy:       #4A0E1A;
  --burgundy-light: #6B1828;
  --burgundy-dark:  #2D0810;
  --gold:           #C9A84C;
  --gold-light:     #E2C97E;
  --gold-pale:      #F0E4C0;
  --ivory:          #F5EDD6;
  --ivory-dark:     #EDE0C4;
  --charcoal:       #1C1C1C;
  --charcoal-mid:   #3A3A3A;
  --rose-dust:      #D4A5A5;
  --white:          #FFFFFF;
  --text-primary:   #1C1C1C;
  --text-secondary: #5A4A3A;
  --text-muted:     #8A7A6A;
  --border:         rgba(201, 168, 76, 0.25);
  --border-strong:  rgba(201, 168, 76, 0.5);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --container-max: 1280px;
  --container-pad: clamp(1rem, 5vw, 3rem);
  --nav-height:    72px;
  --announce-height: 40px;

  /* Radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(74, 14, 26, 0.08);
  --shadow-md:  0 8px 32px rgba(74, 14, 26, 0.12);
  --shadow-lg:  0 20px 60px rgba(74, 14, 26, 0.18);
  --shadow-xl:  0 40px 100px rgba(74, 14, 26, 0.25);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.3);

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);
  --ease-inout: cubic-bezier(0.87, 0, 0.13, 1);
  --duration-fast:   150ms;
  --duration-base:   300ms;
  --duration-slow:   600ms;
  --duration-slower: 900ms;
}

/* ─── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--ivory);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── TYPOGRAPHY SCALE ───────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
h5 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

em { font-style: italic; color: var(--burgundy); }

p { color: var(--text-secondary); line-height: 1.75; }

/* ─── LAYOUT UTILITIES ───────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--space-5xl) 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-4xl);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  display: block;
}

.section-title {
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.section-cta {
  text-align: center;
  margin-top: var(--space-3xl);
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform var(--duration-base) var(--ease-out);
}

.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--burgundy);
  color: var(--gold-light);
  border: 1px solid var(--burgundy);
}
.btn-primary:hover {
  background: var(--burgundy-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(245, 237, 214, 0.5);
}
.btn-ghost:hover {
  background: rgba(245, 237, 214, 0.1);
  border-color: var(--ivory);
}

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border: 1px solid var(--burgundy);
}
.btn-outline:hover {
  background: var(--burgundy);
  color: var(--gold-light);
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-full { width: 100%; justify-content: center; }

/* ─── ANNOUNCEMENT BAR ───────────────────────────────────────── */
.announcement-bar {
  background: var(--burgundy);
  color: var(--gold-light);
  text-align: center;
  padding: 0.6rem var(--container-pad);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  height: var(--announce-height);
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-bar strong { color: var(--gold); }

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(245, 237, 214, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--duration-base) var(--ease-out);
}

.site-header.scrolled {
  background: rgba(245, 237, 214, 0.98);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-hindi {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.logo-english {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--burgundy);
  letter-spacing: 0.3em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  transition: color var(--duration-fast);
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--duration-base) var(--ease-out);
}

.nav-link:hover, .nav-link.active {
  color: var(--burgundy);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) 0;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-base) var(--ease-out);
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all var(--duration-fast);
}

.dropdown-menu li a:hover {
  background: var(--ivory);
  color: var(--burgundy);
  padding-left: 1.5rem;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--charcoal-mid);
  transition: all var(--duration-fast);
  position: relative;
}

.nav-icon-btn:hover {
  background: var(--ivory-dark);
  color: var(--burgundy);
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--burgundy);
  color: var(--gold-light);
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all var(--duration-base) var(--ease-out);
}

/* Search Bar */
.search-bar {
  border-top: 1px solid var(--border);
  background: var(--white);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-base) var(--ease-out);
}

.search-bar.open { max-height: 80px; }

.search-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.75rem var(--container-pad);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--charcoal);
  background: transparent;
}

.search-close {
  color: var(--text-muted);
  font-size: 1rem;
  transition: color var(--duration-fast);
}
.search-close:hover { color: var(--burgundy); }

/* Mobile Nav */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(28, 28, 28, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-base) var(--ease-out);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--ivory);
  padding: var(--space-2xl) var(--space-xl);
  transform: translateX(-100%);
  transition: transform var(--duration-slow) var(--ease-out);
  overflow-y: auto;
}

.mobile-nav-overlay.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-size: 1.2rem;
  color: var(--text-muted);
}

.mobile-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--burgundy);
  margin-bottom: var(--space-2xl);
  margin-top: var(--space-lg);
}

.mobile-nav-links li {
  border-bottom: 1px solid var(--border);
}

.mobile-nav-links li a {
  display: block;
  padding: var(--space-md) 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color var(--duration-fast);
}

.mobile-nav-links li a:hover { color: var(--burgundy); }

.mobile-nav-footer {
  margin-top: var(--space-2xl);
  text-align: center;
  font-size: 0.8rem;
  color: var(--gold);
}

/* ─── HERO SECTION ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 50%, #6B1828 100%);
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.6;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 40%),
    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");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-5xl) var(--container-pad) var(--space-5xl) max(var(--container-pad), calc((100vw - var(--container-max)) / 2 + var(--container-pad)));
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xl);
  display: block;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  margin-bottom: var(--space-xl);
}

.hero-title-hindi {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.15em;
  font-style: italic;
}

.hero-title-main {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
  letter-spacing: -0.01em;
}

.hero-title-accent {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(245, 237, 214, 0.75);
  max-width: 480px;
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-2xl);
  left: max(var(--container-pad), calc((100vw - var(--container-max)) / 2 + var(--container-pad)));
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: rgba(245, 237, 214, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(201, 168, 76, 0.5);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Hero Image Frame */
.hero-image-frame {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-5xl) var(--container-pad);
}

.hero-bottle-img {
  width: min(380px, 80%);
  height: auto;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.5));
  animation: floatBottle 6s ease-in-out infinite;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

@keyframes floatBottle {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

.hero-frame-ornament {
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: rgba(201, 168, 76, 0.4);
  border-style: solid;
}

.hero-frame-ornament.top-left    { top: 20%; left: 10%; border-width: 2px 0 0 2px; }
.hero-frame-ornament.top-right   { top: 20%; right: 10%; border-width: 2px 2px 0 0; }
.hero-frame-ornament.bottom-left { bottom: 20%; left: 10%; border-width: 0 0 2px 2px; }
.hero-frame-ornament.bottom-right{ bottom: 20%; right: 10%; border-width: 0 2px 2px 0; }

/* ─── MARQUEE STRIP ──────────────────────────────────────────── */
.marquee-strip {
  background: var(--gold);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: var(--space-3xl);
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── FEATURED COLLECTIONS ───────────────────────────────────── */
.featured-collections {
  background: var(--ivory);
}

.collections-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-lg);
}

.collection-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  background: var(--charcoal);
  transition: transform var(--duration-base) var(--ease-out);
}

.collection-card:hover { transform: translateY(-4px); }

.collection-card--large {
  grid-row: span 2;
}

.collection-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.collection-card--large .collection-card-img {
  aspect-ratio: 3/5;
}

.collection-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.collection-card:hover .collection-card-img img {
  transform: scale(1.06);
}

.collection-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,0.85) 0%, rgba(28,28,28,0.2) 50%, transparent 100%);
}

.collection-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  z-index: 1;
}

.collection-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--burgundy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.collection-card-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--ivory);
  margin-bottom: var(--space-xs);
}

.collection-card-body p {
  font-size: 0.85rem;
  color: rgba(245, 237, 214, 0.7);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.collection-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--duration-fast);
}

/* ─── PRODUCT CARDS ──────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-xl);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.product-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ivory);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--burgundy);
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  z-index: 1;
}

.product-badge.new { background: var(--gold); color: var(--burgundy); }
.product-badge.sale { background: #C0392B; color: var(--white); }

.product-wishlist {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-4px);
  transition: all var(--duration-base) var(--ease-out);
  z-index: 1;
  color: var(--text-muted);
}

.product-card:hover .product-wishlist {
  opacity: 1;
  transform: translateY(0);
}

.product-wishlist:hover { color: var(--burgundy); }

.product-card-body {
  padding: var(--space-lg);
}

.product-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.product-notes {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.product-price {
  display: flex;
  flex-direction: column;
}

.price-current {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--burgundy);
}

.price-original {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-add-btn {
  width: 40px;
  height: 40px;
  background: var(--burgundy);
  color: var(--gold-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-base) var(--ease-out);
  flex-shrink: 0;
}

.product-add-btn:hover {
  background: var(--burgundy-light);
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}

/* ─── BRAND STORY STRIP ──────────────────────────────────────── */
.brand-story-strip {
  background: var(--charcoal);
  padding: var(--space-5xl) 0;
}

.brand-story-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5xl);
  align-items: center;
}

.brand-story-text .section-eyebrow { color: var(--gold); }

.brand-story-text h2 {
  color: var(--ivory);
  margin-bottom: var(--space-xl);
}

.brand-story-text h2 em { color: var(--gold); }

.brand-story-text p {
  color: rgba(245, 237, 214, 0.7);
  margin-bottom: var(--space-lg);
}

.story-image-stack {
  position: relative;
  height: 500px;
}

.story-img {
  position: absolute;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

.story-img-back {
  width: 75%;
  height: 80%;
  top: 0;
  right: 0;
}

.story-img-front {
  width: 60%;
  height: 65%;
  bottom: 0;
  left: 0;
  border: 4px solid var(--charcoal);
}

.story-badge {
  position: absolute;
  bottom: 15%;
  right: -5%;
  background: var(--gold);
  border-radius: var(--radius-full);
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.badge-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
}

.badge-text {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--burgundy);
  line-height: 1.3;
}

/* ─── INGREDIENTS SECTION ────────────────────────────────────── */
.ingredients-section {
  background: var(--ivory-dark);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.ingredient-item {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--duration-base) var(--ease-out);
}

.ingredient-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.ingredient-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

.ingredient-item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--burgundy);
  margin-bottom: var(--space-sm);
}

.ingredient-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section {
  background: var(--ivory);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: var(--space-xl);
  transition: transform var(--duration-slow) var(--ease-out);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - var(--space-lg));
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-lg);
  right: var(--space-xl);
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold-pale);
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--burgundy);
  color: var(--gold-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  font-size: 1rem;
  transition: all var(--duration-fast);
}

.testimonial-btn:hover {
  background: var(--burgundy);
  color: var(--gold-light);
  border-color: var(--burgundy);
}

.testimonial-dots {
  display: flex;
  gap: var(--space-sm);
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--border-strong);
  transition: all var(--duration-base);
  cursor: pointer;
}

.testimonial-dot.active {
  background: var(--burgundy);
  width: 24px;
}

/* ─── GIFT BANNER ────────────────────────────────────────────── */
.gift-banner {
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
  padding: var(--space-5xl) 0;
  overflow: hidden;
}

.gift-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.gift-banner-content h2 {
  color: var(--ivory);
  margin-bottom: var(--space-lg);
}

.gift-banner-content h2 em { color: var(--gold); }

.gift-banner-content p {
  color: rgba(245, 237, 214, 0.75);
  margin-bottom: var(--space-2xl);
  max-width: 440px;
}

.gift-banner-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ─── TRUST SECTION ──────────────────────────────────────────── */
.trust-section {
  background: var(--white);
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-xl);
}

.trust-item {
  text-align: center;
  padding: var(--space-lg);
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.trust-item h4 {
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}

.trust-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── NEWSLETTER ─────────────────────────────────────────────── */
.newsletter-section {
  background: var(--ivory-dark);
  padding: var(--space-5xl) 0;
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--container-pad);
}

.newsletter-ornament {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: var(--space-lg);
  display: block;
}

.newsletter-inner h2 {
  margin-bottom: var(--space-md);
}

.newsletter-inner p {
  margin-bottom: var(--space-2xl);
  color: var(--text-muted);
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  max-width: 480px;
  margin: 0 auto var(--space-lg);
}

.newsletter-input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.9rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--duration-fast);
}

.newsletter-input:focus { border-color: var(--gold); }

.newsletter-note {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
}

.footer-top {
  padding: var(--space-5xl) 0 var(--space-3xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.footer-logo .logo-hindi { color: var(--gold); font-size: 0.8rem; }
.footer-logo .logo-english { color: var(--ivory); font-size: 1.4rem; }

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(245, 237, 214, 0.55);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 237, 214, 0.5);
  transition: all var(--duration-fast);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.footer-col h5 {
  color: var(--ivory);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-lg);
}

.footer-col ul li {
  margin-bottom: var(--space-sm);
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(245, 237, 214, 0.5);
  transition: color var(--duration-fast);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-contact li {
  font-size: 0.85rem;
  color: rgba(245, 237, 214, 0.5);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.footer-contact a {
  color: rgba(245, 237, 214, 0.5);
  transition: color var(--duration-fast);
}

.footer-contact a:hover { color: var(--gold); }

.footer-payments {
  margin-top: var(--space-xl);
}

.footer-payments span {
  display: block;
  font-size: 0.7rem;
  color: rgba(245, 237, 214, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.payment-icons {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.payment-badge {
  background: rgba(245, 237, 214, 0.08);
  border: 1px solid rgba(245, 237, 214, 0.15);
  color: rgba(245, 237, 214, 0.5);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: var(--space-xl) 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(245, 237, 214, 0.35);
}

.footer-bottom a {
  color: rgba(245, 237, 214, 0.35);
  transition: color var(--duration-fast);
}

.footer-bottom a:hover { color: var(--gold); }

/* ─── CART DRAWER ────────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 28, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-base) var(--ease-out);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100%;
  background: var(--white);
  z-index: 1600;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-out);
  box-shadow: var(--shadow-xl);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: var(--space-xl);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--charcoal);
}

.cart-drawer-header h3 span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.cart-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--duration-fast);
}

.cart-drawer-close:hover {
  background: var(--ivory);
  color: var(--burgundy);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-xl);
}

.cart-empty {
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
  display: block;
}

.cart-empty p {
  margin-bottom: var(--space-xl);
  color: var(--text-muted);
}

.cart-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  object-fit: cover;
  background: var(--ivory);
  flex-shrink: 0;
}

.cart-item-info { flex: 1; }

.cart-item-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}

.cart-item-variant {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.cart-item-price {
  font-weight: 600;
  color: var(--burgundy);
  font-size: 0.95rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--charcoal);
  transition: all var(--duration-fast);
}

.qty-btn:hover {
  background: var(--burgundy);
  color: var(--gold-light);
  border-color: var(--burgundy);
}

.qty-value {
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-decoration: underline;
  cursor: pointer;
  transition: color var(--duration-fast);
}

.cart-item-remove:hover { color: #C0392B; }

.cart-drawer-footer {
  padding: var(--space-xl);
  border-top: 1px solid var(--border);
  background: var(--ivory);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.cart-subtotal span:first-child {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cart-subtotal span:last-child {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--burgundy);
}

.cart-shipping-note {
  font-size: 0.78rem;
  color: #2E7D32;
  margin-bottom: var(--space-lg);
}

/* ─── TOAST NOTIFICATION ─────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--charcoal);
  color: var(--ivory);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 3000;
  transition: transform var(--duration-base) var(--ease-out);
  white-space: nowrap;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ─── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.reveal-up:nth-child(1) { transition-delay: 0ms; }
.reveal-up:nth-child(2) { transition-delay: 100ms; }
.reveal-up:nth-child(3) { transition-delay: 200ms; }
.reveal-up:nth-child(4) { transition-delay: 300ms; }
.reveal-up:nth-child(5) { transition-delay: 400ms; }
.reveal-up:nth-child(6) { transition-delay: 500ms; }

/* ─── PAGE-SPECIFIC: PRODUCTS PAGE ──────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
  padding: var(--space-5xl) 0 var(--space-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::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.05'%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");
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  color: var(--ivory);
  margin-bottom: var(--space-md);
}

.page-hero p {
  color: rgba(245, 237, 214, 0.7);
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.breadcrumb a, .breadcrumb span {
  font-size: 0.78rem;
  color: rgba(245, 237, 214, 0.5);
  letter-spacing: 0.05em;
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(201, 168, 76, 0.4); }
.breadcrumb .current { color: var(--gold); }

/* Filter Bar */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--space-md) 0;
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
}

.filter-bar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.filter-tabs {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.filter-tab {
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--duration-fast);
  cursor: pointer;
  background: transparent;
}

.filter-tab:hover, .filter-tab.active {
  background: var(--burgundy);
  color: var(--gold-light);
  border-color: var(--burgundy);
}

.sort-select {
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-secondary);
  background: var(--white);
  outline: none;
  cursor: pointer;
}

/* ─── PRODUCT DETAIL PAGE ────────────────────────────────────── */
.product-detail-section {
  padding: var(--space-4xl) 0;
  background: var(--ivory);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-xl));
}

.gallery-main {
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--ivory-dark);
  margin-bottom: var(--space-md);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: var(--space-sm);
}

.gallery-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--duration-fast);
}

.gallery-thumb.active { border-color: var(--gold); }

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info { padding-top: var(--space-lg); }

.product-detail-category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.product-detail-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
  line-height: 1.1;
}

.product-detail-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.product-detail-rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.rating-stars { color: var(--gold); font-size: 0.9rem; }

.rating-count {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.product-detail-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--border);
}

.detail-price-current {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--burgundy);
}

.detail-price-original {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.detail-price-save {
  font-size: 0.8rem;
  font-weight: 600;
  color: #2E7D32;
  background: #E8F5E9;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
}

.product-size-selector {
  margin-bottom: var(--space-xl);
}

.size-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
  display: block;
}

.size-options {
  display: flex;
  gap: var(--space-sm);
}

.size-option {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--duration-fast);
  background: transparent;
}

.size-option:hover, .size-option.active {
  background: var(--burgundy);
  color: var(--gold-light);
  border-color: var(--burgundy);
}

.product-detail-actions {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.product-detail-actions .btn { flex: 1; }

.product-notes-section {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  border: 1px solid var(--border);
}

.notes-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.notes-pyramid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.note-group h5 {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.note-group p {
  font-size: 0.85rem;
  color: var(--charcoal);
  font-weight: 500;
}

/* ─── CART PAGE ──────────────────────────────────────────────── */
.cart-page-section {
  padding: var(--space-4xl) 0;
  background: var(--ivory);
  min-height: 60vh;
}

.cart-page-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-3xl);
  align-items: start;
}

.cart-page-items {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}

.cart-page-header {
  padding: var(--space-xl);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-page-header h2 {
  font-size: 1.4rem;
}

.cart-page-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: var(--space-lg);
  padding: var(--space-xl);
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.cart-page-item:last-child { border-bottom: none; }

.cart-page-item-img {
  width: 100px;
  height: 120px;
  border-radius: var(--radius-md);
  object-fit: cover;
  background: var(--ivory);
}

.cart-order-summary {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: var(--space-xl);
  position: sticky;
  top: calc(var(--nav-height) + var(--space-xl));
}

.summary-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.summary-row span:first-child { color: var(--text-secondary); }
.summary-row span:last-child { font-weight: 500; color: var(--charcoal); }
.summary-row.free span:last-child { color: #2E7D32; }

.summary-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-lg) 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
}

.summary-total span:first-child {
  font-weight: 600;
  color: var(--charcoal);
}

.summary-total span:last-child {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--burgundy);
}

.coupon-form {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.coupon-input {
  flex: 1;
  padding: 0.6rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  outline: none;
}

/* ─── CHECKOUT PAGE ──────────────────────────────────────────── */
.checkout-section {
  padding: var(--space-4xl) 0;
  background: var(--ivory);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-3xl);
  align-items: start;
}

.checkout-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: var(--space-2xl);
  margin-bottom: var(--space-xl);
}

.checkout-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group.full { grid-column: span 2; }

.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.05em;
}

.form-input, .form-select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color var(--duration-fast);
  font-family: var(--font-body);
}

.form-input:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

/* Payment Methods */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.payment-method {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--duration-fast);
}

.payment-method:hover { border-color: var(--gold); }

.payment-method.selected {
  border-color: var(--burgundy);
  background: rgba(74, 14, 26, 0.03);
}

.payment-method input[type="radio"] { accent-color: var(--burgundy); }

.payment-method-icon {
  font-size: 1.5rem;
  width: 36px;
  text-align: center;
}

.payment-method-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
}

.payment-method-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── ABOUT PAGE ─────────────────────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
  padding: var(--space-5xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero h1 { color: var(--ivory); }
.about-hero p { color: rgba(245, 237, 214, 0.7); max-width: 600px; margin: var(--space-lg) auto 0; }

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.value-card {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--burgundy);
  margin-bottom: var(--space-sm);
}

/* ─── CONTACT PAGE ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.contact-info-card {
  background: var(--burgundy);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  color: var(--ivory);
}

.contact-info-card h2 { color: var(--ivory); margin-bottom: var(--space-lg); }
.contact-info-card h2 em { color: var(--gold); }
.contact-info-card p { color: rgba(245, 237, 214, 0.7); margin-bottom: var(--space-2xl); }

.contact-detail {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.contact-detail-text p {
  color: rgba(245, 237, 214, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  border: 1px solid var(--border);
}

.contact-form-card h2 { margin-bottom: var(--space-xl); }

/* ─── RESPONSIVE BREAKPOINTS ─────────────────────────────────── */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-2xl);
  }

  .footer-brand { grid-column: span 3; }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }

  .trust-grid .trust-item:nth-child(4),
  .trust-grid .trust-item:nth-child(5) {
    grid-column: span 1;
  }

  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    flex: 0 0 calc(50% - var(--space-sm));
  }

  .checkout-grid {
    grid-template-columns: 1fr 360px;
  }

  .cart-page-grid {
    grid-template-columns: 1fr 340px;
  }
}

/* Mobile: 768px */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
    --announce-height: 36px;
  }

  .nav-links, .nav-actions .nav-icon-btn:not(.cart-btn) {
    display: none;
  }

  .nav-hamburger { display: flex; }

  .nav-actions {
    gap: var(--space-xs);
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: var(--space-4xl);
  }

  .hero-content {
    padding: var(--space-4xl) var(--container-pad) var(--space-2xl);
    text-align: center;
  }

  .hero-subtitle { margin: 0 auto var(--space-2xl); }
  .hero-cta { justify-content: center; }
  .hero-scroll-indicator { display: none; }

  .hero-image-frame {
    padding: 0 var(--container-pad) var(--space-3xl);
  }

  .hero-bottle-img { width: min(280px, 70%); }

  /* Collections */
  .collections-grid {
    grid-template-columns: 1fr;
  }

  .collection-card--large { grid-row: span 1; }

  .collection-card-img { aspect-ratio: 4/3; }
  .collection-card--large .collection-card-img { aspect-ratio: 4/3; }

  /* Brand Story */
  .brand-story-inner {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .story-image-stack { height: 350px; }

  /* Ingredients */
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Testimonials */
  .testimonial-card {
    flex: 0 0 calc(100% - var(--space-sm));
  }

  /* Gift Banner */
  .gift-banner-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  /* Trust */
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .footer-brand { grid-column: span 2; }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  /* Product Detail */
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery { position: static; }

  .product-detail-actions {
    flex-direction: column;
  }

  /* Cart Page */
  .cart-page-grid {
    grid-template-columns: 1fr;
  }

  .cart-order-summary { position: static; }

  /* Checkout */
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full { grid-column: span 1; }

  /* About */
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Small Mobile: 480px */
@media (max-width: 480px) {
  .hero-title-main { font-size: 2.5rem; }
  .hero-title-accent { font-size: 3rem; }

  .collections-grid { gap: var(--space-md); }

  .ingredients-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand { grid-column: span 1; }

  .cart-page-item {
    grid-template-columns: 80px 1fr;
  }

  .notes-pyramid {
    grid-template-columns: 1fr;
  }

  .size-options { flex-wrap: wrap; }
}

/* ─── UTILITY CLASSES ────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-burgundy { color: var(--burgundy); }
.text-ivory { color: var(--ivory); }
.mt-auto { margin-top: auto; }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

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

/* ─── SELECTION ──────────────────────────────────────────────── */
::selection {
  background: var(--gold-pale);
  color: var(--burgundy);
}