/* ============================================================
   LENSCRAFT — Camera & Lens Store
   Premium Tech / Photography Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ── CSS Variables — Light Theme ── */
:root {
  /* Page & section backgrounds (light) */
  --black:        #0a0a0a;       /* kept for header only */
  --charcoal:     #f7f4ef;       /* light warm sections */
  --dark:         #f0ece4;       /* slightly deeper warm sections */
  --dark-mid:     #e8e2d8;       /* input backgrounds */
  --card-bg:      #ffffff;       /* cards — pure white */
  --border:       rgba(0,0,0,0.09);
  --border-gold:  rgba(156,110,30,0.35);

  /* Text colours (flipped for light bg) */
  --white:        #ffffff;
  --ivory:        #1e1a14;       /* dark text on light bg */
  --cream:        #3d3020;       /* secondary dark text */

  /* Gold palette */
  --gold:         #9c6e1e;       /* richer gold on white */
  --gold-light:   #b8862a;
  --gold-dark:    #7a5010;
  --gold-muted:   rgba(156,110,30,0.10);

  /* Accent */
  --maroon:       #7c2020;
  --maroon-light: #9b3030;
  --muted-red:    #b03030;
  --rose:         #c8807a;

  --font-serif:   'Poppins', sans-serif;
  --font-sans:    'Poppins', sans-serif;

  --transition:   0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --shadow-card:  0 4px 24px rgba(0,0,0,0.08);
  --shadow-gold:  0 4px 24px rgba(156,110,30,0.18);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.14);

  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-pill:  999px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: #faf8f5;
  color: #1e1a14;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f0ece4; }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: #1e1a14;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }

p { color: #5a4e3a; font-weight: 300; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }

img { max-width: 100%; display: block; }

/* ── Gold Text ── */
.text-gold { color: var(--gold) !important; }
.text-ivory { color: var(--ivory) !important; }
.text-cream { color: var(--cream) !important; }
.text-maroon { color: var(--maroon-light) !important; }

/* ── Section Labels ── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1e1a14;
  margin-bottom: 0.5rem;
}

.section-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
}

.section-subtitle {
  font-size: 0.9rem;
  color: #7a6a50;
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* ── Buttons ── */
.btn-luxury {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.95rem 2.4rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--gold);
  background: var(--gold);
  color: #ffffff;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}

.btn-luxury::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: -1;
}

.btn-luxury:hover { color: var(--gold); border-color: var(--gold); background: #ffffff; }
.btn-luxury:hover::before { transform: scaleX(1); }

.btn-luxury-solid {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.95rem 2.4rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-luxury-solid:hover {
  background: #ffffff;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.95rem 2.4rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-white:hover { background: #ffffff; border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-ghost {
  background: var(--gold);
  color: #ffffff;
  border: 1.5px solid var(--gold);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-ghost:hover { border-color: var(--gold); background: #ffffff; color: var(--gold); }

/* btn-ghost INSIDE the black header stays gold */
.site-header .btn-ghost,
.mobile-nav .btn-ghost {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
}
.site-header .btn-ghost:hover,
.mobile-nav .btn-ghost:hover { border-color: var(--gold); background: #ffffff; color: var(--gold); }

.btn-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.04);
  color: #3d3020;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.9rem;
}
.btn-icon:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-muted); }

/* btn-icon inside black header — keep light */
.site-header .btn-icon { border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.04); color: rgba(245,240,232,0.8); }
.site-header .btn-icon:hover { border-color: var(--gold-light); color: var(--gold-light); background: rgba(196,160,80,0.12); }

/* ── Dividers ── */
.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin: 1rem 0;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark));
}

.ornament::after {
  background: linear-gradient(90deg, var(--gold-dark), transparent);
}

.ornament-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--maroon);
  color: var(--cream);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  position: relative;
  z-index: 200;
}

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

/* ── Header — stays BLACK regardless of light body ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0a0a0a;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196,160,80,0.25);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: #0a0a0a;
  box-shadow: 0 4px 30px rgba(0,0,0,0.7);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 2rem;
  max-width: 1600px;
  margin: 0 auto;
}

.header-nav-row {
  border-top: 1px solid rgba(196,160,80,0.18);
  background: #0a0a0a;
}

/* Logo — white text on black header */
.site-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: #f5f0e8;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-logo .logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.45em;
  color: #c4a050;
  font-family: var(--font-sans);
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav — full-width row of its own, centered, white links on black */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.1rem;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.8);
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color var(--transition);
  cursor: pointer;
  border: none;
  background: none;
}

.nav-link:hover { color: #c4a050; }
.nav-link .chevron { font-size: 0.6rem; transition: transform var(--transition); }
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Mega Menu — dark dropdown from black header */
.mega-menu {
  position: absolute;
/*  top: calc(100% + 1rem);*/
  top: calc(100% + 0rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #111111;
  border: 1px solid rgba(196,160,80,0.3);
  border-radius: var(--radius);
  padding: 2rem;
  min-width: 700px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.mega-col-title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c4a050;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(196,160,80,0.25);
}

.mega-links { list-style: none; }
.mega-links li { margin-bottom: 0.4rem; }
.mega-links a {
  font-size: 1rem;
  color: rgba(245,240,232,0.65);
  transition: color var(--transition);
  font-weight: 300;
}
.mega-links a:hover { color: #c4a050; padding-left: 4px; }

/* Header Actions — white icons on black header */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.action-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,240,232,0.8);
  border-radius: 50%;
  transition: all var(--transition);
  cursor: pointer;
  font-size: 1rem;
  border: none;
  background: none;
}

.action-btn:hover { color: #c4a050; background: rgba(196,160,80,0.12); }

.action-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: #8b2a2a;
  color: white;
  font-size: 0.6rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
}

/* Search Popup — stays dark overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.search-overlay.active { opacity: 1; visibility: visible; }

.search-box {
  width: 100%;
  max-width: 700px;
  padding: 1rem 2rem;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #c4a050;
  padding-bottom: 0.8rem;
}

.search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: #f5f0e8;
  caret-color: #c4a050;
}

.search-input::placeholder { color: rgba(245,240,232,0.2); }

.search-suggestions { margin-top: 1.5rem; }
.search-suggestion-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(196,160,80,0.35);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  color: #e8dcc8;
  margin: 0.3rem;
  cursor: pointer;
  transition: all var(--transition);
}
.search-suggestion-tag:hover { background: rgba(196,160,80,0.15); border-color: #c4a050; color: #c4a050; }

/* Mobile Menu Toggle — white bars on black header */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.mobile-toggle span {
  width: 24px;
  height: 1.5px;
  background: #f5f0e8;
  transition: all var(--transition);
  display: block;
}

/* Mobile Nav — stays dark */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 400;
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
  padding: 6rem 2rem 2rem;
}

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

.mobile-nav-link {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #f5f0e8;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}

.mobile-nav-link:hover { color: #c4a050; }

/* ── Hero Slider ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.active .hero-bg { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(0 0 0 / 27%) 0%, rgba(0, 0, 0, 0.4) 50%, rgb(0 0 0 / 0%) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5%;
  max-width: 800px;
}

.hero-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s 0.3s ease;
}

.hero-slide.active .hero-label { opacity: 1; transform: translateY(0); }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s 0.5s ease;
}

.hero-slide.active .hero-title { opacity: 1; transform: translateY(0); }

.hero-title em {
  font-style: normal;
  font-weight: 800;
  color: var(--gold-light);
  display: block;
}

.hero-desc {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.7);
  max-width: 420px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s 0.7s ease;
}

.hero-slide.active .hero-desc { opacity: 1; transform: translateY(0); }

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s 0.9s ease;
}

.hero-slide.active .hero-ctas { opacity: 1; transform: translateY(0); }

/* Hero Controls */
.hero-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 5%;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
}

.hero-dot {
  width: 30px;
  height: 2px;
  background: rgba(245,240,232,0.3);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.hero-dot.active {
  background: var(--gold);
  width: 50px;
}

.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  animation: heroProgress 5s linear infinite;
  z-index: 3;
}

@keyframes heroProgress {
  from { width: 0; }
  to { width: 100%; }
}

/* Hero Scroll Hint */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  z-index: 3;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.5); }
}

/* ── Section Spacing ── */
section { padding: 5rem 0; }

.container-luxury {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Collection Cards ── */
.collection-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}

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

.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
}

.collection-card-img {
  width: 100%;
  padding-top: 130%;
  position: relative;
  overflow: hidden;
}

.collection-card-img-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

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

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem;
  transition: background var(--transition);
}

.collection-card:hover .collection-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%);
}

.collection-card-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.collection-card-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--ivory);
  margin-bottom: 1rem;
}

.collection-card-link {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}

.collection-card:hover .collection-card-link { opacity: 1; transform: translateY(0); }

/* Large collection card */
.collection-card-lg .collection-card-img { padding-top: 70%; }
.collection-card-tall .collection-card-img { padding-top: 150%; }

/* ── Product Cards ── */
.product-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--border);
  position: relative;
}

.product-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  padding-top: 130%;
}

.product-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: all var(--transition-slow);
}

.product-img-alt {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.product-card:hover .product-img { transform: scale(1.04); }
.product-card:hover .product-img-alt { opacity: 1; }

/* Product Badges */
.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.badge-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  font-family: var(--font-sans);
}

.badge-new { background: var(--gold); color: var(--black); }
.badge-sale { background: var(--muted-red); color: white; }
.badge-limited { background: var(--maroon); color: var(--cream); }
.badge-bestseller { background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); color: white; border: 1px solid rgba(255,255,255,0.3); }

/* Product Quick Actions */
.product-actions {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
  z-index: 2;
}

.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }

/* Product Info */
.product-info {
  padding: 1.2rem;
  background: #ffffff;
}

.product-category {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.product-name {
/*  font-family: var(--font-serif);*/
  font-size: 1.1rem;
  color: #1e1a14;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.price-current {
  font-size: 1rem;
  font-weight: 500;
  color: #1e1a14;
}

.price-original {
  font-size: 0.85rem;
  color: #9e9080;
  text-decoration: line-through;
}

.price-discount {
  font-size: 0.7rem;
  color: var(--muted-red);
  font-weight: 500;
}

/* Color Swatches */
.color-swatches {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform var(--transition);
  border: 1.5px solid transparent;
}

.swatch:hover, .swatch.active {
  transform: scale(1.3);
  border-color: var(--gold);
}

.product-add-btn {
  width: 100%;
  padding: 0.85rem;
  background: var(--gold);
  border: 1.5px solid var(--gold);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.product-add-btn:hover {
  background: #ffffff;
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Products Carousel ── */
.carousel-track-wrap { overflow: hidden; }

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform var(--transition-slow);
}

.carousel-track .product-card { flex: 0 0 calc(25% - 1.5rem); }

.carousel-controls {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  justify-content: center;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 0.9rem;
}

.carousel-btn:hover { background: var(--gold); color: var(--black); }

/* ── Video Banner ── */
.video-banner {
  position: relative;
  height: 75vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.video-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.video-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 2rem;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(196,160,80,0.1);
  color: var(--gold);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 auto 2rem;
  transition: all var(--transition);
  animation: playPulse 2s ease-in-out infinite;
}

.video-play-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1);
}

@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,160,80,0.4); }
  50% { box-shadow: 0 0 0 20px rgba(196,160,80,0); }
}

/* ── Testimonials ── */
.testimonial-section {
  background: #f0ece4;
  border-top: 1px solid rgba(156,110,30,0.2);
  border-bottom: 1px solid rgba(156,110,30,0.2);
}

.testimonial-card {
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  background: #ffffff;
  transition: all var(--transition);
  height: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.testimonial-card:hover {
  border-color: rgba(156,110,30,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.15em;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #3d3020;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-muted);
  border: 1.5px solid rgba(156,110,30,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
}

.author-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: #1e1a14;
}

.author-location {
  font-size: 0.72rem;
  color: #9e9080;
}

/* ── Instagram Grid ── */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.insta-item {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
  cursor: pointer;
}

.insta-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  transition: opacity var(--transition);
}

.insta-item:hover .insta-img { transform: scale(1.1); }
.insta-item:hover .insta-overlay { opacity: 1; }

/* ── Newsletter ── */
.newsletter-section {
  background: linear-gradient(135deg, #f0ece4 0%, #e8e2d8 100%);
  border-top: 1px solid rgba(156,110,30,0.2);
  text-align: center;
  padding: 5rem 0;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 2rem auto 0;
  gap: 0;
  border: 1.5px solid rgba(156,110,30,0.4);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.newsletter-input {
  flex: 1;
  padding: 0.9rem 1.5rem;
  background: none;
  border: none;
  outline: none;
  color: #1e1a14;
  font-family: var(--font-sans);
  font-size: 0.85rem;
}

.newsletter-input::placeholder { color: #9e9080; }

.newsletter-btn {
  padding: 0.95rem 2rem;
  background: var(--gold);
  color: #ffffff;
  border: 1.5px solid var(--gold);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.newsletter-btn:hover { background: #ffffff; border-color: var(--gold); color: var(--gold); }

/* ── Footer ── */
.site-footer {
  background: #f0ece4;
  border-top: 1px solid rgba(156,110,30,0.2);
  padding: 5rem 0 0;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #1e1a14;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: #7a6a50;
  max-width: 280px;
  line-height: 1.8;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0rem; }
.footer-links a {
  font-size: 1rem;
  color: #7a6a50;
  transition: color var(--transition);
  font-weight: 300;
}
.footer-links a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a6a50;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-muted);
}

.footer-bottom {
  margin-top: 4rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-text {
  font-size: 0.75rem;
  color: #9e9080;
}

.payment-icons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.payment-icon {
  padding: 0.3rem 0.6rem;
  background: #ffffff;
  border-radius: 4px;
  font-size: 0.65rem;
  color: #5a4e3a;
  border: 1px solid rgba(0,0,0,0.1);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ── Cart Drawer — keep dark (overlay panel) ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 420px;
  max-width: 100vw;
  background: var(--card-white);
  border-left: 1px solid rgba(196,160,80,0.3);
  z-index: 350;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
}


/* ── Cart Variant Tags ── */
.cart-item-variant-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.4rem;
}

.cart-variant-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.67rem;
  background: var(--gold-muted);
  border: 1px solid var(--border-gold-lt);
  border-radius: 3px;
  padding: 0.15rem 0.5rem;
  font-family: var(--font-sans);
}

.cart-variant-label {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-variant-value {
  color: var(--text-secondary);
}

.cart-item-sku {
  font-size: 0.63rem;
  color: var(--text-faint);
  margin-bottom: 0.3rem;
  letter-spacing: 0.04em;
}

.cart-item-unit-price {
  font-size: 0.7rem;
  color: var(--text-faint);
  margin-left: 0.4rem;
}

.cart-item-remove {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-faint);
  cursor: pointer;
  font-size: 0.9rem;
  transition: color 0.3s;
  padding: 0.2rem 0.4rem;
}

.cart-item-remove:hover {
  color: var(--muted-red);
}

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

.cart-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: #f5f0e8;
}

.cart-count-label {
  font-size: 0.7rem;
  color: #c4a050;
  letter-spacing: 0.15em;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cart-item-img {
  width: 80px;
  height: 100px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

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

.cart-item-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: #f5f0e8;
  margin-bottom: 0.3rem;
}

.cart-item-variant {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.45);
  margin-bottom: 0.6rem;
}

.cart-item-price { font-size: 0.95rem; color: #f5f0e8; }

.qty-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,0.15);
  background: none;
  color: #f5f0e8;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition);
}

.qty-btn:hover { border-color: #c4a050; color: #c4a050; }
.qty-input { width: 36px; text-align: center; background: none; border: none; color: #f5f0e8; font-size: 0.9rem; }

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: var(--section-alt);
}

.coupon-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.coupon-input {
  flex: 1;
  padding: 0.6rem 1rem;
  background: var(--card-white);
  border: 1px solid rgba(255,255,255,0.1);
  color: #f5f0e8;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  outline: none;
  transition: border-color var(--transition);
}

.coupon-input:focus { border-color: #c4a050; }

.coupon-btn {
  padding: 0.7rem 1.2rem;
  background: var(--gold);
  border: 1.5px solid var(--gold);
  color: #ffffff;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-sans);
  text-transform: uppercase;
}

.coupon-btn:hover { background: #ffffff; border-color: var(--gold); color: var(--gold); }

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cart-total-label { font-size: 0.8rem; color: rgba(245,240,232,0.6); }
.cart-total-price { font-family: var(--font-serif); font-size: 1.5rem; color: #f5f0e8; }

/* ── Filter Sidebar — light card ── */
.filter-sidebar {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 1.5rem;
  position: sticky;
  top: 90px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.filter-group { margin-bottom: 2rem; }

.filter-group-title {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-weight: 600;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: #5a4e3a;
  transition: color var(--transition);
}

.filter-option:hover { color: #1e1a14; }

.filter-option input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all var(--transition);
}

.filter-option input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.filter-option input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
}

.color-filter-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform var(--transition);
}

.color-filter-swatch:hover { transform: scale(1.2); border-color: var(--gold); }

/* Price Range */
.price-range-slider {
  width: 100%;
  accent-color: var(--gold);
  margin: 0.5rem 0;
}

/* ── Product Detail Page ── */
.product-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  position: sticky;
  top: 90px;
}

.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gallery-thumb {
  width: 80px;
  height: 100px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  opacity: 0.6;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--gold);
  opacity: 1;
}

.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.gallery-main-img {
  width: 100%;
  padding-top: 130%;
  background-size: cover;
  background-position: center;
  cursor: zoom-in;
  transition: transform var(--transition-slow);
}

.gallery-main:hover .gallery-main-img { transform: scale(1.05); }

/* Product Details — light bg text */
.product-detail-info { padding-left: 2rem; }

.product-detail-category {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.product-detail-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #1e1a14;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

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

.rating-count {
  font-size: 0.8rem;
  color: #9e9080;
}

.product-detail-price {
  display: flex;
  align-items: center;
  gap: 1rem;
/*  margin-bottom: 1.5rem;*/
}

.detail-price-current {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #1e1a14;
}

.detail-price-original {
  font-size: 1.1rem;
  color: #9e9080;
  text-decoration: line-through;
}

.detail-savings {
  font-size: 0.8rem;
  background: rgba(160, 48, 48, 0.08);
  color: var(--muted-red);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(160, 48, 48, 0.2);
}

/* Variant Selection */
.variant-group { margin-bottom: 1.5rem; }

.variant-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7a6a50;
  margin-bottom: 0.75rem;
}

.variant-label strong { color: #1e1a14; }

.color-variants { display: flex; gap: 0.6rem; flex-wrap: wrap; }

.color-variant {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
}

.color-variant:hover, .color-variant.active {
  border-color: var(--gold);
  transform: scale(1.1);
}

.fabric-variants { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.fabric-variant {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: #5a4e3a;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-sans);
  background: #ffffff;
}

.fabric-variant:hover, .fabric-variant.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-muted);
}

.fabric-variant.sold-out {
  opacity: 0.35;
  cursor: not-allowed;
  position: relative;
}

.fabric-variant.sold-out::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 1px;
  background: rgba(0,0,0,0.2);
  transform: rotate(-10deg);
}

/* Delivery Check */
.delivery-check {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  background: #f7f4ef;
  margin-bottom: 1.5rem;
}

.delivery-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #1e1a14;
  font-family: var(--font-sans);
  font-size: 0.88rem;
}

.delivery-input::placeholder { color: #9e9080; }

/* Product Tabs */
.product-tabs { margin-top: 3rem; }

.tab-nav {
  display: flex;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  gap: 0;
}

.tab-btn {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9e9080;
  padding: 0.8rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.tab-btn:hover { color: #1e1a14; }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

.tab-content { display: none; padding: 2rem 0; }
.tab-content.active { display: block; }

/* Highlights */
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.88rem;
  color: #5a4e3a;
}

.highlight-icon { color: var(--gold); margin-top: 2px; font-size: 0.8rem; }

/* ── Dashboard ── */
.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  min-height: 70vh;
}

.dashboard-sidebar {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 2rem 1rem;
  position: sticky;
  top: 90px;
  height: fit-content;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.dashboard-user {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
}

.dashboard-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--gold-muted);
  margin: 0 auto 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
}

.dashboard-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #1e1a14;
}

.dashboard-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: #7a6a50;
  transition: all var(--transition);
  margin-bottom: 0.25rem;
}

.dashboard-nav a:hover, .dashboard-nav a.active {
  background: var(--gold-muted);
  color: var(--gold);
}

.dashboard-nav a i { width: 18px; text-align: center; }

.dashboard-content {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.stat-card {
  background: #faf8f5;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
}

.stat-card:hover { border-color: rgba(156,110,30,0.3); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #1e1a14;
  margin-bottom: 0.3rem;
}

.stat-label { font-size: 0.75rem; color: #9e9080; text-transform: uppercase; letter-spacing: 0.15em; }

/* ── Auth Pages — keep dark (special page) ── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 70%);
  padding: 2rem;
}

.auth-card {
  background: #111111;
  border: 1px solid rgba(196,160,80,0.3);
  border-radius: var(--radius-lg);
  padding: 3rem;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.auth-logo {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Form inputs — light version for page forms */
.form-floating-luxury {
  position: relative;
  margin-bottom: 1.25rem;
}

.form-input-luxury {
  width: 100%;
  padding: 1rem 1.2rem 0.5rem;
  background: #faf8f5;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  color: #1e1a14;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}

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

.form-label-luxury {
  position: absolute;
  left: 1.2rem;
  top: 0.8rem;
  font-size: 0.75rem;
  color: #9e9080;
  transition: all var(--transition);
  pointer-events: none;
}

.form-input-luxury:focus ~ .form-label-luxury,
.form-input-luxury:not(:placeholder-shown) ~ .form-label-luxury {
  top: 0.3rem;
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* Auth card — override form inputs to be dark inside auth card */
.auth-card .form-input-luxury {
  background: #222222;
  border-color: rgba(255,255,255,0.1);
  color: #f5f0e8;
}
.auth-card .form-input-luxury:focus { border-color: #c4a050; }
.auth-card .form-label-luxury { color: rgba(245,240,232,0.4); }
.auth-card .form-input-luxury:focus ~ .form-label-luxury,
.auth-card .form-input-luxury:not(:placeholder-shown) ~ .form-label-luxury { color: #c4a050; }

/* ── Checkout steps — light ── */
.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  max-width: 200px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #9e9080;
  flex-shrink: 0;
  transition: all var(--transition);
}

.checkout-step.active .step-num {
  border-color: var(--gold);
  background: var(--gold);
  color: #ffffff;
}

.checkout-step.done .step-num {
  border-color: var(--gold);
  color: var(--gold);
}

.step-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9e9080;
  transition: color var(--transition);
}

.checkout-step.active .step-label { color: var(--gold); }
.checkout-step.done .step-label { color: #1e1a14; }

.step-line {
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.1);
}

.order-summary-card {
  background: #ffffff;
  border: 1px solid rgba(156,110,30,0.25);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: sticky;
  top: 90px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* ── Toast Notifications — keep dark (floating UI) ── */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: #1a1a1a;
  border: 1px solid rgba(196,160,80,0.3);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 280px;
  transform: translateX(120%);
  transition: transform var(--transition-slow);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.toast.show { transform: translateX(0); }
.toast-icon { color: #c4a050; font-size: 1.1rem; }
.toast-text { font-size: 0.85rem; color: #f5f0e8; }
.toast-close { margin-left: auto; color: rgba(245,240,232,0.4); cursor: pointer; background: none; border: none; font-size: 0.9rem; }

/* ── Quick View Modal — keep dark (overlay panel) ── */
.modal-luxury {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  padding: 2rem;
}

.modal-luxury.open { opacity: 1; visibility: visible; }

.modal-content-luxury {
  background: #1a1a1a;
  border: 1px solid rgba(196,160,80,0.3);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  transform: scale(0.95);
  transition: transform var(--transition);
}

.modal-luxury.open .modal-content-luxury { transform: scale(1); }

/* ── Skeleton Loaders — light ── */
.skeleton {
  background: linear-gradient(90deg, #ede8e0 25%, #e5dfd5 50%, #ede8e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-card {
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
}

.skeleton-img { height: 300px; }
.skeleton-text { height: 14px; margin-bottom: 8px; }
.skeleton-text.w-60 { width: 60%; }
.skeleton-text.w-80 { width: 80%; }

/* ── Floating WhatsApp ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 200;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); color: white; }

/* ── Mobile Bottom Nav — light ── */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.08);
  z-index: 150;
  padding: 0.5rem 0 calc(0.5rem + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.mobile-bottom-nav-inner {
  display: flex;
  justify-content: space-around;
}

.mobile-nav-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: #9e9080;
  cursor: pointer;
  transition: color var(--transition);
  font-size: 1.1rem;
  padding: 0.3rem;
  background: none;
  border: none;
  text-decoration: none;
}

.mobile-nav-icon span {
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-nav-icon.active { color: var(--gold); }

/* ── Breadcrumb — light ── */
.breadcrumb-luxury {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #9e9080;
  margin-bottom: 2rem;
}

.breadcrumb-luxury a { color: #7a6a50; transition: color var(--transition); }
.breadcrumb-luxury a:hover { color: var(--gold); }
.breadcrumb-luxury .separator { color: var(--gold-dark); }
.breadcrumb-luxury .current { color: #1e1a14; }

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in.visible { opacity: 1; }

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.stagger-children.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }

/* ── 404 Page ── */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-404-num {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 20vw, 15rem);
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-dark);
  line-height: 1;
  opacity: 0.3;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .mega-menu { min-width: 550px; grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .main-nav { display: none; }
  .header-nav-row { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-bottom-nav { display: block; }
  body { padding-bottom: 70px; }

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

  .carousel-track .product-card { flex: 0 0 calc(50% - 1rem); }

  .instagram-grid { grid-template-columns: repeat(3, 1fr); }

  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { position: relative; top: 0; }

  .product-gallery { grid-template-columns: 60px 1fr; }

  .cart-drawer { width: 100%; }
}

@media (max-width: 768px) {
  .header-top { padding: 0.9rem 1.2rem; }

  section { padding: 3.5rem 0; }

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

  .carousel-track .product-card { flex: 0 0 calc(75% - 1rem); }

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

  .checkout-steps { gap: 0; }
  .step-label { display: none; }

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

  .product-detail-info { padding-left: 0; margin-top: 2rem; }

  .product-gallery { grid-template-columns: 1fr; }
  .gallery-thumbs { flex-direction: row; }
  .gallery-thumb { width: 60px; height: 75px; }

  .auth-card { padding: 2rem 1.5rem; }

  .newsletter-form { flex-direction: column; border-radius: var(--radius); }
  .newsletter-input { padding: 0.9rem 1.5rem; }
  .newsletter-btn { border-radius: 0; }
}

@media (max-width: 480px) {
  .collection-grid-4 { grid-template-columns: 1fr; }
  .carousel-track .product-card { flex: 0 0 85%; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; }
  .mega-menu { display: none; }
}

/* ═══════════════════════════════════════════════════
   LIGHT-THEME PATCH — Complete variable-based overrides
   ═══════════════════════════════════════════════════ */

/* ── Extended CSS Variables ── */
:root {
  /* Page surfaces */
  --page-bg:          #faf8f5;
  --section-alt:      #f0ece4;
  --section-deep:     #e8e2d8;
  --card-white:       #ffffff;

  /* Text scale */
  --text-primary:     #1e1a14;
  --text-secondary:   #5a4e3a;
  --text-muted:       #7a6a50;
  --text-faint:       #9e9080;
  --text-placeholder: #b0a090;

  /* Header (always black) */
  --header-bg:        #0a0a0a;
  --header-text:      #f5f0e8;
  --header-text-dim:  rgba(245,240,232,0.75);
  --header-border:    rgba(196,160,80,0.22);

  /* Dark overlay panels (cart, modal, mobile-nav) */
  --panel-bg:         #151515;
  --panel-surface:    #1f1f1f;
  --panel-border:     rgba(255,255,255,0.07);
  --panel-text:       #f5f0e8;
  --panel-text-muted: rgba(245,240,232,0.5);

  /* Announcement bar */
  --bar-bg:           #7c2020;
  --bar-text:         #f5dfc8;
  --bar-accent:       #d4b870;

  /* Trust strip */
  --strip-bg:         #f0ece4;
  --strip-title-size: 0.9rem;
  --strip-sub-size:   0.78rem;

  /* Borders (light) */
  --border-light:     rgba(0,0,0,0.09);
  --border-medium:    rgba(0,0,0,0.14);
  --border-gold-lt:   rgba(156,110,30,0.3);

  /* Shadows (light) */
  --shadow-sm:        0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:        0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg:        0 12px 40px rgba(0,0,0,0.13);

  /* Font sizes — typography scale */
  --fs-xs:    0.72rem;
  --fs-sm:    0.85rem;
  --fs-base:  1rem;
  --fs-md:    1.1rem;
  --fs-lg:    1.25rem;
  --fs-xl:    1.5rem;
  --fs-2xl:   2rem;
  --fs-3xl:   2.5rem;
  --fs-hero:  clamp(3rem, 7vw, 6.5rem);
}

/* ── BODY ── */
body {
  background: var(--page-bg);
  color: var(--text-primary);
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--bar-bg);
  color: var(--bar-text);
  font-size: var(--fs-sm);
  letter-spacing: 0.12em;
  padding: 0.6rem 1rem;
}
.announcement-bar strong { color: var(--bar-accent); }

/* ── HEADER (always black) ── */
.site-header {
  background: var(--header-bg) !important;
  border-bottom: 1px solid var(--header-border);
}
.site-header.scrolled {
  background: var(--header-bg) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.7);
}
.site-logo { color: var(--header-text); }
.site-logo .logo-sub { color: var(--gold-light); }
.nav-link { color: var(--header-text-dim); }
.nav-link:hover { color: var(--gold-light); }
.action-btn { color: var(--header-text-dim); }
.action-btn:hover { color: var(--gold-light); background: rgba(196,160,80,0.1); }
.mobile-toggle span { background: var(--header-text); }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--strip-bg);
  border-top: 1px solid var(--border-gold-lt);
  border-bottom: 1px solid var(--border-gold-lt);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 1.4rem 0;
  gap: 1rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  justify-content: center;
  padding: 0 1rem;
}
.trust-item + .trust-item {
  border-left: 1px solid var(--border-light);
}
.trust-icon {
  color: var(--gold);
  font-size: var(--fs-lg);
  flex-shrink: 0;
}
.trust-title {
  font-size: var(--strip-title-size);
  color: var(--text-primary);
  font-weight: 500;
  font-family: var(--font-sans);
  line-height: 1.3;
}
.trust-sub {
  font-size: var(--strip-sub-size);
  color: var(--text-faint);
  font-family: var(--font-sans);
}

/* ── SECTION HEADINGS ── */
.section-title { color: var(--text-primary); }
.section-title em { color: var(--gold); }
.section-subtitle { color: var(--text-muted); }

/* ── PRODUCT CARD ── */
.product-card { background: var(--card-white); border-color: var(--border-light); }
.product-card:hover { border-color: var(--border-gold-lt); box-shadow: var(--shadow-lg); }
.product-info { background: var(--card-white); }
.product-name { color: var(--text-primary); }
.price-current { color: var(--text-primary); }
.price-original { color: var(--text-faint); }

/* ── TESTIMONIAL ── */
.testimonial-section { background: var(--section-alt); }
.testimonial-card { background: var(--card-white); border-color: var(--border-light); }
.testimonial-card:hover { border-color: var(--border-gold-lt); }
.testimonial-text { color: var(--text-secondary); }
.author-name { color: var(--text-primary); }
.author-location { color: var(--text-faint); }

/* ── FOOTER ── */
.site-footer { background: var(--section-alt); border-top-color: var(--border-gold-lt); }
.footer-logo { color: var(--text-primary); }
.footer-desc { color: var(--text-muted); }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--gold); }
.social-icon { color: var(--text-muted); border-color: var(--border-light); }
.footer-bottom { border-top-color: var(--border-light); }
.footer-bottom-text { color: var(--text-faint); }
.payment-icon { background: var(--card-white); color: var(--text-secondary); border-color: var(--border-light); }

/* ── NEWSLETTER ── */
.newsletter-section { background: linear-gradient(135deg, var(--section-alt), var(--section-deep)); border-top-color: var(--border-gold-lt); }
.newsletter-input { color: var(--text-primary); }
.newsletter-input::placeholder { color: var(--text-faint); }
.newsletter-form { background: var(--card-white); border-color: var(--border-gold-lt); }
.newsletter-btn { background: var(--gold); color: #ffffff; border: 1.5px solid var(--gold); }
.newsletter-btn:hover { background: #ffffff; border-color: var(--gold); color: var(--gold); }

/* ── BREADCRUMB ── */
.breadcrumb-luxury { color: var(--text-faint); }
.breadcrumb-luxury a { color: var(--text-muted); }
.breadcrumb-luxury a:hover { color: var(--gold); }
.breadcrumb-luxury .current { color: var(--text-primary); }

/* ── FILTER SIDEBAR ── */
.filter-sidebar { background: var(--card-white); border-color: var(--border-light); box-shadow: var(--shadow-sm); }
.filter-group-title { color: var(--gold); border-bottom-color: var(--border-light); }
.filter-option { color: var(--text-secondary); }
.filter-option:hover { color: var(--text-primary); }

/* ── PRODUCT DETAIL ── */
.product-detail-title { color: var(--text-primary); }
.rating-count { color: var(--text-faint); }
.detail-price-current { color: var(--text-primary); }
.detail-price-original { color: var(--text-faint); }
.variant-label { color: var(--text-muted); }
.variant-label strong { color: var(--text-primary); }
.fabric-variant { background: var(--card-white); border-color: var(--border-light); color: var(--text-secondary); }
.highlight-item { color: var(--text-secondary); }
.tab-btn { color: var(--text-faint); }
.tab-btn:hover { color: var(--text-primary); }
.delivery-input { color: var(--text-primary); }
.delivery-input::placeholder { color: var(--text-faint); }
.delivery-check { background: var(--section-alt); border-color: var(--border-light); }

/* ── DASHBOARD ── */
.dashboard-sidebar { background: var(--card-white); border-color: var(--border-light); }
.dashboard-name { color: var(--text-primary); }
.dashboard-nav a { color: var(--text-muted); }
.dashboard-content { background: var(--card-white); border-color: var(--border-light); }
.stat-card { background: var(--page-bg); border-color: var(--border-light); }
.stat-number { color: var(--text-primary); }
.stat-label { color: var(--text-faint); }

/* ── FORM INPUTS (light pages) ── */
.form-input-luxury { background: var(--page-bg); border-color: var(--border-medium); color: var(--text-primary); }
.form-input-luxury:focus { border-color: var(--gold); }
.form-label-luxury { color: var(--text-faint); }

/* ── CHECKOUT ── */
.checkout-card { background: var(--card-white); border-color: var(--border-light); }
.step-num { border-color: var(--border-medium); color: var(--text-faint); }
.step-label { color: var(--text-faint); }
.checkout-step.done .step-label { color: var(--text-primary); }
.step-line { background: var(--border-light); }
.order-summary-card { background: var(--card-white); border-color: var(--border-gold-lt); }

/* ── ADDRESS CARD (checkout) ── */
.address-select-card {
  padding: 1.1rem 1.25rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--card-white);
  position: relative;
  user-select: none;
}
.address-select-card:hover {
  border-color: var(--border-gold-lt);
  background: var(--gold-muted);
}
.address-select-card.selected {
  border-color: var(--gold);
  background: var(--gold-muted);
}
.address-select-card .addr-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border-medium);
  flex-shrink: 0;
  margin-right: 0.75rem;
  position: relative;
  transition: border-color var(--transition);
}
.address-select-card.selected .addr-radio { border-color: var(--gold); }
.address-select-card.selected .addr-radio::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.addr-tag {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  margin-bottom: 0.3rem;
}
.addr-name {
  font-size: var(--fs-sm);
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.addr-text {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  line-height: 1.65;
}
.addr-default-badge {
  position: absolute;
  top: 0.7rem;
  right: 0.75rem;
  font-size: 0.6rem;
  background: var(--gold);
  color: #fff;
  padding: 0.15rem 0.55rem;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── CART DRAWER (dark panel) ── */
./* ── CART DRAWER (light — matches site theme) ── */
.cart-drawer {
  background: var(--card-white);
  border-left: 1px solid var(--border-gold-lt);
}
.cart-header {
  border-bottom: 1px solid var(--border-light);
  background: var(--card-white);
}
.cart-title { color: var(--text-primary); font-size: var(--fs-xl); }
.cart-count-label { color: var(--gold); font-size: var(--fs-xs); }
.cart-body { background: var(--card-white); }
.cart-item { border-bottom: 1px solid var(--border-light); }
.cart-item-name { color: var(--text-primary); font-size: var(--fs-base); }
.cart-item-variant { color: var(--text-faint); font-size: var(--fs-xs); }
.cart-item-price { color: var(--text-primary); font-size: var(--fs-sm); }
.qty-btn { border-color: var(--border-medium); color: var(--text-secondary); background: var(--page-bg); }
.qty-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-muted); }
.qty-input { color: var(--text-primary); background: transparent; border: none; }
.cart-footer { background: var(--section-alt); border-top: 1px solid var(--border-light); }
.cart-total-label { color: var(--text-muted); }
.cart-total-price { color: var(--text-primary); }
.coupon-input { background: var(--card-white); border-color: var(--border-medium); color: var(--text-primary); }
.coupon-input:focus { border-color: var(--gold); }
.coupon-input::placeholder { color: var(--text-placeholder); }
.coupon-btn { color: #ffffff; border-color: var(--gold); background: var(--gold); }
.coupon-btn:hover { background: var(--card-white); border-color: var(--gold); color: var(--gold); }

/* ── MOBILE BOTTOM NAV ── */
.mobile-bottom-nav { background: var(--card-white); border-top-color: var(--border-light); }
.mobile-nav-icon { color: var(--text-faint); background: none; border: none; }
.mobile-nav-icon.active { color: var(--gold); }

/* ── TOAST ── */
.toast { background: var(--panel-bg); border-color: rgba(196,160,80,0.28); }
.toast-text { color: var(--panel-text); }
.toast-icon { color: var(--gold-light); }

/* ── MODAL ── */
.modal-content-luxury { background: var(--panel-bg); border-color: rgba(196,160,80,0.25); }

/* ── HERO TEXT ── */
.hero-title { font-size: var(--fs-hero); }
.hero-desc { font-size: var(--fs-base); }
.hero-label { font-size: var(--fs-xs); letter-spacing: 0.35em; }

/* ── BTN-GHOST on light bg ── */
.btn-ghost { background: var(--gold); color: #ffffff; border-color: var(--gold); }
.btn-ghost:hover { border-color: var(--gold); background: #ffffff; color: var(--gold); }
/* Override inside dark header / mobile-nav */
.site-header .btn-ghost,
.mobile-nav .btn-ghost,
.cart-drawer .btn-ghost {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
}
.site-header .btn-ghost:hover,
.mobile-nav .btn-ghost:hover { background: #ffffff; color: var(--gold); border-color: var(--gold); }

/* ── BTN-ICON on light bg ── */
.btn-icon { background: rgba(0,0,0,0.04); border-color: var(--border-light); color: var(--text-secondary); }
.btn-icon:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-muted); }
.cart-drawer .btn-icon { background: var(--page-bg); border-color: var(--border-light); color: var(--text-secondary); }
.cart-drawer .btn-icon:hover { color: var(--gold); border-color: var(--gold); background: var(--gold-muted); }
/* ── PAGE HERO SECTIONS ── */
.page-hero {
  background: var(--section-alt);
  border-bottom: 1px solid var(--border-gold-lt);
  padding: 3.5rem 0;
  text-align: center;
}
.page-hero h1 { color: var(--text-primary); }
.page-hero p { color: var(--text-muted); }

/* ── RESPONSIVE mobile trust strip ── */
@media (max-width: 768px) {
  .trust-strip-inner { grid-template-columns: 1fr 1fr; }
  .trust-item + .trust-item { border-left: none; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--border-light); }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid var(--border-light); }
}
@media (max-width: 480px) {
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: none; border-top: 1px solid var(--border-light); }
  .trust-item:nth-child(odd) { border-right: none; }
}

/* ── Spacing scale (used by checkout.css & cart.css) ── */
:root {
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  3rem;
  --space-2xl: 4rem;
  --space-3xl: 5rem;

  /* Alias for pure white (used in CSS vars) */
  --white: #ffffff;

  /* Announcement bar readable text */
  --bar-text:   #f5dfc8;
  --bar-accent: #d4b870;
}

/* ── Announcement bar readable fix ── */
.announcement-bar {
  color: var(--bar-text) !important;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.announcement-bar strong {
  color: var(--bar-accent) !important;
  font-weight: 600;
}

/* ── Hero order / font-size fix ──
   announcement-bar → header → hero (correct order guaranteed by HTML structure)
   Hero label: 1rem per spec */
.hero-label {
  font-size: 1rem !important;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ── Trust strip title size fix: 1.25rem ── */
.trust-title {
  font-size: 1.25rem !important;
  font-weight: 500;
  color: var(--text-primary);
  font-family: var(--font-sans);
}

.trust-sub {
  font-size: 0.88rem;
  color: var(--text-faint);
}

/* ── section-label colour fix ── */
.section-label {
  color: var(--gold) !important;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.dropdown-menu {
  position: absolute;
/*  top: calc(100% + 1rem);*/
  top: calc(100% + 0rem);
  min-width:200px;
  background: #111111;
  border-radius: var(--radius);
  padding: 1rem 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: 0.5s all;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: o.5s all;
}

.dropdown-menu .mega-links li a{
    display: flex;
    white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════
   SHOP BY — Material / Price tab section
══════════════════════════════════════════════════════════ */
.shopby-section {
  padding: 5rem 0 4rem;
  background: #faf8f5;
}

.shopby-tabs-wrapper {
  text-align: center;
  margin-bottom: 2.75rem;
}

.shopby-tab-nav {
  display: inline-flex;
  gap: 0;
  border-bottom: none;
  position: relative;
  margin-top: 1.25rem;
}

.shopby-tab-nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0,0,0,0.1);
}

.shopby-tab-btn {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #9e9080;
  padding: 0.45rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  position: relative;
  z-index: 1;
}

.shopby-tab-btn.active {
  color: #1e1a14;
  border-bottom-color: #1e1a14;
  font-weight: 500;
}

.shopby-tab-btn:not(.active):hover { color: #1e1a14; }

/* Grid of material / price tiles */
.shopby-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.shopby-tile {
  position: relative;
  width: 220px;
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}

.shopby-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}

.shopby-tile-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.shopby-tile:hover .shopby-tile-img { transform: scale(1.07); }

.shopby-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.32);
  transition: background 0.25s;
}

.shopby-tile:hover .shopby-tile-overlay { background: rgba(0,0,0,0.42); }

.shopby-tile-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* Price tiles: taller aspect */
.shopby-tile-price {
  height: 160px;
  width: 200px;
}

/* Tab content visibility */
.shopby-tab-content { display: none; }
.shopby-tab-content.active { display: block; }

/* Responsive */
@media (max-width: 768px) {
  .shopby-tile { width: calc(50% - 0.5rem); height: 110px; }
  .shopby-tile-price { width: calc(50% - 0.5rem); height: 120px; }
}

@media (max-width: 480px) {
  .shopby-tile { width: 100%; }
  .shopby-tile-price { width: 100%; }
}


/* ══════════════════════════════════════════════════════════
   MEGA MENU — Shop By Brand grid (logo + name tiles)
══════════════════════════════════════════════════════════ */
.mega-brand-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mega-brand-link:hover { background: rgba(196,160,80,0.08); }

.mega-brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.mega-brand-logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

.mega-brand-name {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.85);
  font-weight: 400;
}


/* ══════════════════════════════════════════════════════════
   PRODUCT CARD — Brand badge (logo chip on the image)
══════════════════════════════════════════════════════════ */
.product-brand-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5px;
}
.product-brand-badge img { max-width: 100%; max-height: 100%; object-fit: contain; }
.product-brand-badge span {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold-dark);
  text-align: center;
  line-height: 1.05;
}


/* ══════════════════════════════════════════════════════════
   SHOP BY BRAND — homepage logo carousel
══════════════════════════════════════════════════════════ */
.brand-section { padding: 4.5rem 0; background: #faf8f5; }

.brand-carousel-track { display: flex; gap: 1.5rem; }

.brand-card {
  flex: 0 0 200px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
  transition: all var(--transition);
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-gold);
}

.brand-card-logo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #faf8f5;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color var(--transition);
}
.brand-card:hover .brand-card-logo { border-color: var(--gold); }
.brand-card-logo img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.brand-card-logo span {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gold);
}

.brand-card-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.02rem;
  color: #1e1a14;
}

.brand-card-count {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9e9080;
}

@media (max-width: 576px) {
  .brand-card { flex: 0 0 150px; padding: 1.25rem 0.85rem; }
  .brand-card-logo { width: 64px; height: 64px; }
}


/* ══════════════════════════════════════════════════════════
   FEATURED CATEGORIES — camera gear highlight grid
══════════════════════════════════════════════════════════ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  background: #1c1c1c;
}

.category-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}
.category-card:hover .category-card-img { transform: scale(1.08); }

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.75) 100%);
}

.category-card-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.category-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}

.category-card-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: #ffffff;
}

.category-card-count {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

@media (max-width: 992px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .category-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .category-card-name { font-size: 0.95rem; }
}


/* ══════════════════════════════════════════════════════════
   FOOTER — redesign polish
══════════════════════════════════════════════════════════ */
.site-footer {
  position: relative;
}

.footer-top-accent {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-logo-img { max-height: 48px; margin-bottom: 0.9rem; }

.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: #7a6a50;
  line-height: 1.7;
  margin-bottom: 0.65rem;
}
.footer-contact-line i { color: var(--gold); margin-top: 0.18rem; flex-shrink: 0; width: 14px; }
.footer-contact-line a { color: #7a6a50; transition: color var(--transition); }
.footer-contact-line a:hover { color: var(--gold); }

.footer-newsletter-mini {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.footer-newsletter-mini input {
  flex: 1;
  min-width: 0;
  background: var(--dark-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.8rem;
  font-size: 0.78rem;
  font-family: var(--font-sans);
  color: #1e1a14;
}
.footer-newsletter-mini button {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}
.footer-newsletter-mini button:hover { background: var(--gold-dark); }

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
}
@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; }
}



