/* ══════════════════════════════════════════════
   ROOP Hair & Care – Premium Luxury CSS
   Created by Propszy Infotech
   ══════════════════════════════════════════════ */

/* ── Google Fonts (already loaded via <link>) ── */

/* ── CSS Variables ── */
:root {
  --gold:        #C9A84C;
  --gold-l:      #E8C76B;
  --gold-d:      #A88732;
  --walnut:      #3D1A08;
  --walnut-d:    #2A1205;
  --dark:        #0A0A0A;
  --rich-black:  #111111;
  --cream:       #F5F0E8;
  --bronze:      #8B4513;
  --green-wa:    #25D366;
  --shadow-gold: 0 0 40px rgba(201,168,76,.15);
  --shadow-dark: 0 20px 60px rgba(0,0,0,.5);
  --transition:  all .3s cubic-bezier(.4,0,.2,1);
}

/* Tailwind Utility Fallbacks
   Keeps shared layout usable if the Play CDN does not initialize on production. */
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.ml-1 { margin-left: .25rem; }
.mr-1 { margin-right: .25rem; }
.mr-2 { margin-right: .5rem; }
.p-0 { padding: 0; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.gap-1 { gap: .25rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.w-6 { width: 1.5rem; }
.w-10 { width: 2.5rem; }
.w-24 { width: 6rem; }
.w-full { width: 100%; }
.h-10 { height: 2.5rem; }
.h-20 { height: 5rem; }
.h-32 { height: 8rem; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.border { border: 1px solid rgba(255,255,255,.14); }
.border-t { border-top: 1px solid rgba(255,255,255,.14); }
.border-gold\/20 { border-color: rgba(201,168,76,.2); }
.border-gold\/30 { border-color: rgba(201,168,76,.3); }
.border-white\/10 { border-color: rgba(255,255,255,.1); }
.bg-black { background-color: #000; }
.bg-white { background-color: #fff; }
.bg-dark { background-color: var(--dark); }
.text-black { color: #000; }
.text-white { color: #fff; }
.text-gold { color: var(--gold); }
.text-gold-l { color: var(--gold-l); }
.text-cream { color: var(--cream); }
.text-cream\/60 { color: rgba(245,240,232,.6); }
.text-cream\/70 { color: rgba(245,240,232,.7); }
.font-playfair { font-family: 'Playfair Display', serif; }
.font-lato { font-family: 'Lato', sans-serif; }
.font-poppins { font-family: 'Poppins', sans-serif; }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-sm { font-size: .875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.leading-relaxed { line-height: 1.625; }
.tracking-wide { letter-spacing: .025em; }
.shadow-xl { box-shadow: 0 20px 40px rgba(0,0,0,.24); }
.object-cover { object-fit: cover; }
.transition-all { transition: all .3s cubic-bezier(.4, 0, .2, 1); }

@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:text-left { text-align: left; }
  .sm\:w-auto { width: auto; }
}

@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:mb-0 { margin-bottom: 0; }
  .md\:mt-0 { margin-top: 0; }
  .md\:text-left { text-align: left; }
}

@media (min-width: 1024px) {
  .lg\:hidden { display: none; }
  .lg\:flex { display: flex; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--dark);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(61,26,8,.03) 2px,
      rgba(61,26,8,.03) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 30px,
      rgba(201,168,76,.015) 30px,
      rgba(201,168,76,.015) 31px
    );
  color: var(--cream);
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}
img, svg, video, canvas, iframe { max-width: 100%; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: rgba(201,168,76,.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── Custom Cursor ── */
.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: opacity .3s;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  transition: width .2s, height .2s, background .2s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201,168,76,.5);
  transition: all .12s ease-out;
  mix-blend-mode: difference;
}
body:hover .cursor-dot { opacity: 1; }
a:hover ~ .cursor-ring, button:hover ~ .cursor-ring { width: 50px; height: 50px; border-color: var(--gold); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none !important; } }

/* ── Loading Screen ── */
.loading-screen {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.loading-screen.hide { opacity: 0; visibility: hidden; }
.loading-inner { text-align: center; }
.loading-logo {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .2em;
  display: flex; align-items: center; gap: 2px;
  animation: loadingPulse 1.5s ease infinite;
}
.loading-r {
  display: inline-block;
  animation: loadingBounce 1.5s ease infinite;
}
.loading-sub {
  color: rgba(245,240,232,.4);
  letter-spacing: .4em;
  font-size: .75rem;
  text-transform: uppercase;
  margin-top: 4px;
}
.loading-bar {
  width: 200px; height: 2px;
  background: rgba(201,168,76,.15);
  border-radius: 2px;
  margin: 20px auto 0;
  overflow: hidden;
}
.loading-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
  animation: loadingBar 1.6s ease infinite;
}
@keyframes loadingPulse { 0%,100% { opacity: 1; } 50% { opacity: .7; } }
@keyframes loadingBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes loadingBar { 0% { width: 0; margin-left: 0; } 50% { width: 100%; margin-left: 0; } 100% { width: 0; margin-left: 100%; } }

/* ── Scroll Progress ── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--walnut), var(--gold), var(--gold-l));
  z-index: 9998;
  transition: width .1s linear;
  box-shadow: 0 0 10px rgba(201,168,76,.6);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
  max-width: 100vw;
  overflow-x: clip;
}
.navbar.scrolled {
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,168,76,.15);
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--gold);
  letter-spacing: .05em;
  line-height: 1.1;
}
.logo-sub {
  font-size: .6rem;
  color: rgba(245,240,232,.4);
  letter-spacing: .15em;
  text-transform: uppercase;
}
.nav-link {
  position: relative;
  color: rgba(245,240,232,.75);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 220px;
  background: rgba(15,10,6,.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .25s cubic-bezier(.4,0,.2,1);
  z-index: 200;
}
.nav-dropdown-wrap:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop-item {
  display: block;
  padding: 9px 14px;
  color: rgba(245,240,232,.7);
  text-decoration: none;
  font-size: .85rem;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-drop-item:hover { background: rgba(201,168,76,.1); color: var(--gold); }
.nav-drop-divider { height: 1px; background: rgba(201,168,76,.1); margin: 6px 8px; }

/* Search Bar */
.nav-search-bar {
  background: rgba(10,10,10,.95);
  border-top: 1px solid rgba(201,168,76,.15);
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.nav-search-bar.open { max-height: 80px; }
.search-input {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 50px;
  padding: 10px 20px;
  color: var(--cream);
  font-size: .875rem;
  outline: none;
  transition: border-color .2s;
}
.search-input:focus { border-color: rgba(201,168,76,.5); }

/* Theme button */
.theme-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.2);
  background: transparent;
  color: rgba(245,240,232,.6);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  font-size: .875rem;
}
.theme-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.1); }

/* Gold Buttons */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold), #d4af37);
  color: #000;
  font-weight: 700;
  font-size: .9rem;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(201,168,76,.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,.4); }
.btn-gold:active { transform: translateY(0); }

.btn-gold-sm {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold), #d4af37);
  color: #000;
  font-weight: 600;
  font-size: .8rem;
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-gold-sm:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(201,168,76,.3); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: .9rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(201,168,76,.5);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-outline:hover { background: rgba(201,168,76,.1); border-color: var(--gold); transform: translateY(-1px); }

.btn-whatsapp {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.3); }

.btn-whatsapp-sm {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 600;
  font-size: .78rem;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-whatsapp-sm:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,211,102,.3); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(320px, calc(100vw - 18px));
  max-width: calc(100vw - 18px);
  background: rgba(11,8,5,.98);
  backdrop-filter: blur(30px);
  border-left: 1px solid rgba(201,168,76,.15);
  z-index: 1001;
  padding: 28px 20px;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translate3d(calc(100% + 24px), 0, 0);
  visibility: hidden;
  pointer-events: none;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu-inner {
  width: 100%;
  min-width: 0;
}
.mobile-top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wishlist-nav-btn {
  position: relative;
}
.wishlist-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef476f, #b51743);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.wishlist-count.has-items {
  display: inline-flex;
}
.mobile-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.6);
  display: none;
}
.mobile-overlay.show { display: block; }
.mobile-nav-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  color: rgba(245,240,232,.7);
  text-decoration: none;
  font-size: .9rem;
  border-radius: 10px;
  transition: var(--transition);
}
.mobile-nav-link:hover, .mobile-nav-link.active { background: rgba(201,168,76,.1); color: var(--gold); }
.mobile-nav-link i { width: 18px; text-align: center; color: var(--gold); opacity: .6; }

/* ── HERO SECTION ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(61,26,8,.7) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(201,168,76,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(139,69,19,.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.6) 100%);
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg,transparent,transparent 20px,rgba(201,168,76,.015) 20px,rgba(201,168,76,.015) 21px),
    repeating-linear-gradient(-45deg,transparent,transparent 20px,rgba(61,26,8,.03) 20px,rgba(61,26,8,.03) 21px);
  animation: bgDrift 20s linear infinite;
}
@keyframes bgDrift { 0% { background-position: 0 0; } 100% { background-position: 100px 100px; } }

.hero-content {
  position: relative; z-index: 2;
  padding: 60px 16px;
}
.hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: .05em;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(245,240,232,.65);
  max-width: 600px;
  line-height: 1.6;
  margin: 0 auto;
}
.hero-trust {
  display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 16px;
  margin-top: 40px;
  padding: 16px 24px;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,.1);
  border-radius: 50px;
  max-width: 700px;
}
.trust-item { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: rgba(245,240,232,.6); white-space: nowrap; }
.trust-divider { width: 1px; height: 14px; background: rgba(201,168,76,.2); }

.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  animation: scrollBounce 2s ease infinite;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(201,168,76,.4);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::before {
  content: '';
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 2s ease infinite;
}
@keyframes scrollBounce { 0%,100% { opacity: 1; transform: translateX(-50%) translateY(0); } 50% { opacity: .5; transform: translateX(-50%) translateY(6px); } }
@keyframes scrollWheel { 0% { top: 6px; opacity: 1; } 100% { top: 18px; opacity: 0; } }

.hero-deco { position: absolute; top: 15%; z-index: 1; }
.hero-deco-1 { left: 5%; }
.hero-deco-2 { right: 5%; top: 30%; }

/* ── GOLD GRADIENT TEXT ── */
.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold-d) 0%, var(--gold) 40%, var(--gold-l) 70%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s linear infinite;
}
@keyframes shimmerText { to { background-position: 200% center; } }

/* ── GLASS CARD ── */
.glass-card {
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 16px;
  transition: var(--transition);
}
.glass-card:hover {
  border-color: rgba(201,168,76,.35);
  box-shadow: 0 12px 40px rgba(0,0,0,.3), 0 0 20px rgba(201,168,76,.06);
  transform: translateY(-3px);
}

/* ── SECTIONS ── */
.section { position: relative; }
.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-label::before { content: '—— '; opacity: .4; }
.section-label::after  { content: ' ——'; opacity: .4; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 14px;
}
.section-desc {
  color: rgba(245,240,232,.55);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── STATS ── */
.stat-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,168,76,.15);
  transition: var(--transition);
}
.stat-card:hover { border-color: rgba(201,168,76,.35); transform: translateY(-4px); }
.stat-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 10px; opacity: .7; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-label { color: rgba(245,240,232,.5); font-size: .8rem; margin-top: 6px; text-transform: uppercase; letter-spacing: .1em; }

/* ── ABOUT ── */
.about-img-collage { position: relative; min-height: 380px; }
.about-img-main { width: 100%; height: 380px; overflow: hidden; border-radius: 20px; }
.about-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: rgba(61,26,8,.3); }
.about-img-badge  { position: absolute; bottom: -16px; right: -16px; border-radius: 16px; text-align: center; min-width: 100px; }
.about-img-badge2 { position: absolute; top: 20px; left: -16px; border-radius: 16px; text-align: center; min-width: 80px; }
.about-story-visual {
  overflow: hidden;
}
.about-copy {
  font-size: 1rem;
}
.about-story-cta {
  max-width: 100%;
}
.about-value-card,
.about-wood-card,
.about-company-card {
  height: 100%;
}
.about-wood-item i {
  margin-top: 3px;
}
.about-info-row {
  gap: 16px;
}
.about-info-label,
.about-info-value {
  word-break: break-word;
}

/* ── PRODUCT CARDS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.product-card {
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}
.product-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(61,26,8,.5), rgba(0,0,0,.4));
}
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-img { transform: scale(1.08); }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(61,26,8,.4), rgba(0,0,0,.3));
}
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.7);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; transition: opacity .3s ease;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-img-wrap .wishlist-toggle {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
}
.product-view-btn {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: .8rem;
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex; align-items: center;
}
.product-view-btn:hover { background: var(--gold-l); }
.product-wa-btn {
  background: linear-gradient(135deg,#25D366,#128C7E);
  color: #fff;
  font-weight: 600;
  font-size: .8rem;
  padding: 7px 16px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex; align-items: center;
}
.product-badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: .05em;
  backdrop-filter: blur(10px);
}
.wishlist-toggle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(15,10,6,.62);
  color: rgba(245,240,232,.88);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.wishlist-toggle:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(239,71,111,.45);
  color: #fff;
}
.wishlist-toggle.is-active {
  background: linear-gradient(135deg, rgba(239,71,111,.94), rgba(181,23,67,.9));
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.wishlist-toggle i {
  pointer-events: none;
}
.service-card {
  position: relative;
}
.service-card .wishlist-toggle {
  position: absolute;
  top: 18px;
  right: 18px;
}
.product-specs { border-top: 1px solid rgba(201,168,76,.1); padding-top: 10px; display: grid; gap: 4px; }
.spec-row { display: flex; justify-content: space-between; font-size: .78rem; }
.spec-label { color: rgba(245,240,232,.4); }
.spec-val { color: rgba(245,240,232,.85); font-weight: 500; }

/* ── PROCESS TIMELINE ── */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  position: relative;
}
.process-step {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.process-step:hover { border-color: rgba(201,168,76,.4); transform: translateY(-4px); }
.step-num { font-size: .7rem; color: var(--gold); font-weight: 700; font-family: monospace; letter-spacing: .15em; margin-bottom: 10px; }
.step-icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 10px; }
.step-title { font-size: .9rem; font-weight: 600; color: var(--cream); margin-bottom: 6px; }
.step-desc { font-size: .75rem; color: rgba(245,240,232,.5); line-height: 1.5; }

/* ── POLICY CARDS ── */
.policy-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.policy-card:hover { border-color: rgba(201,168,76,.3); transform: translateY(-3px); }

/* ── WHY CARDS ── */
.why-card { border-radius: 16px; }
.why-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.why-card:hover .why-icon-wrap { background: rgba(201,168,76,.15); border-color: rgba(201,168,76,.4); transform: rotate(5deg); }

/* ── CAT CARDS ── */
.cat-card { border-radius: 20px; position: relative; }
.cat-icon { transition: transform .3s ease; }
.cat-card:hover .cat-icon { transform: scale(1.1) rotate(-5deg); }

/* ── TESTIMONIALS ── */
.testimonial-card { border-radius: 20px; position: relative; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-placeholder {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--walnut), rgba(201,168,76,.5));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: var(--cream);
}

/* ── TESTIMONIALS SWIPER ── */
.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
}
.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after { font-size: .8rem; }
.testimonials-swiper .swiper-pagination-bullet { background: var(--gold); opacity: .3; }
.testimonials-swiper .swiper-pagination-bullet-active { opacity: 1; }

/* ── FAQ ── */
.faq-item { border-radius: 12px; overflow: hidden; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; text-align: left;
  padding: 18px 20px;
  background: none; border: none;
  color: var(--cream); font-size: .9rem; font-weight: 500;
  cursor: pointer;
  transition: color .2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question.open { color: var(--gold); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-icon { transition: transform .3s ease; color: var(--gold); flex-shrink: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer.open { max-height: 500px; }
.faq-num { font-family: monospace; font-size: .7rem; }

/* ── CTA ── */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 50% 50%, rgba(61,26,8,.8) 0%, rgba(0,0,0,.9) 100%);
  background-image: repeating-linear-gradient(45deg,transparent,transparent 30px,rgba(201,168,76,.02) 30px,rgba(201,168,76,.02) 31px);
}

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  padding: 140px 16px 80px;
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(61,26,8,.4) 0%, rgba(10,10,10,.8) 100%);
  background-image: repeating-linear-gradient(45deg,transparent,transparent 40px,rgba(201,168,76,.015) 40px,rgba(201,168,76,.015) 41px);
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--cream);
  position: relative; z-index: 1;
  margin-bottom: 12px;
  line-height: 1.2;
}
.page-hero-desc {
  color: rgba(245,240,232,.55);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.breadcrumb {
  position: relative; z-index: 1;
  font-size: .8rem;
  color: rgba(245,240,232,.4);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-l); }

/* ── FILTERS ── */
.filter-card { border-radius: 14px; }
.filter-heading { font-size: .8rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.filter-input {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--cream);
  font-size: .85rem;
  outline: none;
  transition: border-color .2s;
}
.filter-input:focus { border-color: rgba(201,168,76,.5); }
.filter-link {
  display: block;
  padding: 7px 12px;
  border-radius: 8px;
  color: rgba(245,240,232,.55);
  text-decoration: none;
  font-size: .85rem;
  transition: var(--transition);
}
.filter-link:hover { color: var(--gold); background: rgba(201,168,76,.08); }
.filter-link-active { color: var(--gold) !important; background: rgba(201,168,76,.12) !important; }
.filter-chip {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,.2);
  color: rgba(245,240,232,.55);
  font-size: .8rem;
  text-decoration: none;
  cursor: pointer;
  background: none;
  transition: var(--transition);
  margin: 2px;
}
.filter-chip:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.08); }
.filter-chip-active { border-color: var(--gold) !important; color: var(--gold) !important; background: rgba(201,168,76,.12) !important; }

/* ── VIEW TOGGLE ── */
.view-toggle {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,.15);
  background: none;
  color: rgba(245,240,232,.5);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: var(--transition);
}
.view-toggle.active, .view-toggle:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.1); }

/* ── PAGINATION ── */
.pagination-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,.15);
  color: rgba(245,240,232,.6);
  text-decoration: none;
  font-size: .85rem;
  transition: var(--transition);
}
.pagination-btn:hover { border-color: var(--gold); color: var(--gold); }
.pagination-active { border-color: var(--gold) !important; color: var(--gold) !important; background: rgba(201,168,76,.12) !important; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-item { border-radius: 14px; overflow: hidden; }
.gallery-img { transition: transform .4s ease; }
.gallery-item:hover .gallery-img { transform: scale(1.05); }
.gallery-placeholder {
  background: linear-gradient(135deg, rgba(61,26,8,.3), rgba(0,0,0,.3));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-content { text-align: center; }

/* ── CONTACT FORM ── */
.form-group { display: flex; flex-direction: column; }
.form-label { font-size: .8rem; color: rgba(245,240,232,.6); margin-bottom: 5px; font-weight: 500; }
.form-input {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--cream);
  font-size: .875rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
}
.form-input:focus { border-color: rgba(201,168,76,.5); background: rgba(255,255,255,.06); }
.form-input option { background: #1a1a1a; color: var(--cream); }
.form-error { font-size: .75rem; color: #f87171; margin-top: 3px; }

/* ── INFO ROW (About) ── */
.info-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(201,168,76,.07); font-size: .875rem; }
.info-label { color: rgba(245,240,232,.4); }
.info-row:last-child { border-bottom: none; }

/* ── LEGAL CONTENT (Terms/Privacy) ── */
.legal-content h2 { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.15rem; margin: 28px 0 10px; padding-bottom: 6px; border-bottom: 1px solid rgba(201,168,76,.1); }
.legal-content p, .legal-content li { color: rgba(245,240,232,.6); font-size: .9rem; line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; }
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--gold); }
.legal-content strong { color: rgba(245,240,232,.85); }

.wishlist-shell {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.wishlist-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 22px;
}
.wishlist-card__media {
  position: relative;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(61,26,8,.46), rgba(0,0,0,.28));
  border: 1px solid rgba(201,168,76,.1);
}
.wishlist-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wishlist-card__placeholder,
.wishlist-card__service-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wishlist-card__placeholder {
  background: linear-gradient(135deg, rgba(61,26,8,.5), rgba(20,20,20,.56));
}
.wishlist-card__service-icon {
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,.12), rgba(255,255,255,.03));
}
.wishlist-card__service-icon i {
  font-size: 2rem;
}
.wishlist-card__service-icon span {
  color: rgba(245,240,232,.74);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.wishlist-card__meta {
  color: rgba(245,240,232,.48);
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.wishlist-card__title {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 10px;
}
.wishlist-card__desc {
  color: rgba(245,240,232,.66);
  line-height: 1.75;
  font-size: .94rem;
  margin-bottom: 16px;
}
.wishlist-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.wishlist-card .wishlist-toggle {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
}
.wishlist-empty {
  padding: 36px 24px;
  text-align: center;
}
.wishlist-empty i {
  font-size: 2rem;
  color: rgba(201,168,76,.58);
  margin-bottom: 14px;
}

/* ── FOOTER ── */
.footer { position: relative; background: #0f0a06; }
.footer-wave { position: relative; z-index: 0; }
.footer-wave svg { display: block; width: 100%; }
.footer-body { background: #0f0a06; }
.footer-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: .05em;
}
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.footer-links a { color: rgba(245,240,232,.4); text-decoration: none; font-size: .875rem; transition: color .2s; display: inline-flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '→'; font-size: .6rem; opacity: 0; transition: opacity .2s, transform .2s; transform: translateX(-4px); }
.footer-links a:hover { color: var(--gold); }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }
.footer-bottom { border-top: 1px solid rgba(201,168,76,.08); padding-top: 24px; margin-top: 24px; }

/* Social icons */
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.2);
  color: rgba(245,240,232,.5);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: .9rem;
  transition: var(--transition);
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.1); transform: translateY(-2px); }

/* Newsletter */
.newsletter-form { display: flex; gap: 6px; }
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--cream);
  font-size: .8rem;
  outline: none;
}
.newsletter-input:focus { border-color: rgba(201,168,76,.4); }
.newsletter-btn {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), #d4af37);
  border: none;
  border-radius: 8px;
  color: #000;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.newsletter-btn:hover { transform: scale(1.05); }

/* ── FLOATING BUTTONS ── */
.float-whatsapp {
  position: fixed; bottom: 24px; left: 24px; z-index: 500;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
}
.float-whatsapp:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,.5); }
@keyframes pulseGold { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 50% { box-shadow: 0 0 0 14px rgba(37,211,102,0); } }
.animate-pulse-gold { animation: pulseGold 2.5s cubic-bezier(.4,0,.6,1) infinite; }

.float-scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 500;
  width: 44px; height: 44px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 50%;
  color: var(--gold);
  cursor: pointer;
  display: none; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: var(--transition);
}
.float-scroll-top.visible { display: flex; }
.float-scroll-top:hover { background: var(--gold); color: #000; transform: translateY(-2px); }

/* ── Dark mode (light mode toggle target) ── */
body.light-mode {
  --dark: #f0ebe3;
  --cream: #1a1a1a;
  --rich-black: #fff;
  background-color: #f0ebe3;
}
body.light-mode .glass-card { background: rgba(0,0,0,.03); border-color: rgba(139,69,19,.15); }
body.light-mode .navbar.scrolled { background: rgba(240,235,227,.92); }
body.light-mode .footer, body.light-mode .footer-body { background: #e0d8cc; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .process-timeline { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-trust { display: none; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .about-img-badge, .about-img-badge2 { display: none; }
  .about-story-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .about-story-grid {
    gap: 28px;
  }
  .about-story-logo {
    line-height: .95;
  }
  .about-copy {
    font-size: .96rem;
    line-height: 1.75;
  }
  .about-wood-head {
    align-items: flex-start;
  }
  .about-info-row {
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .hero-deco { display: none; }
  .process-timeline { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .about-story-visual {
    padding: 20px;
  }
  .about-story-stats {
    grid-template-columns: 1fr;
  }
  .about-story-stat {
    text-align: left;
  }
  .about-story-cta {
    width: 100%;
  }
  .about-value-card,
  .about-wood-card {
    padding: 20px;
  }
  .about-wood-head {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
  }
  .about-info-row {
    flex-direction: column;
    gap: 6px;
    padding: 12px 0;
  }
  .about-info-label,
  .about-info-value {
    width: 100%;
    text-align: left;
  }
}

/* Premium collection and product detail enhancements */
.theme-rosewood {
  background:
    radial-gradient(circle at top right, rgba(201,168,76,.28), transparent 38%),
    linear-gradient(160deg, rgba(61,26,8,.96), rgba(20,10,7,.98));
}
.theme-neemwood {
  background:
    radial-gradient(circle at top right, rgba(93,175,126,.24), transparent 38%),
    linear-gradient(160deg, rgba(21,46,33,.98), rgba(15,24,18,.98));
}
.theme-celluloid {
  background:
    radial-gradient(circle at top right, rgba(182,123,61,.22), transparent 38%),
    linear-gradient(160deg, rgba(18,18,18,.98), rgba(30,22,16,.98));
}
.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 100%;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.collection-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,.28);
  box-shadow: 0 32px 90px rgba(0,0,0,.4);
}
.collection-card__banner {
  position: relative;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
}
.collection-card__overlay,
.collection-card__texture {
  position: absolute;
  inset: 0;
}
.collection-card__overlay {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.18));
}
.collection-card__texture {
  opacity: .22;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 18px, rgba(255,255,255,.06) 18px, rgba(255,255,255,.06) 19px),
    repeating-linear-gradient(0deg, transparent, transparent 10px, rgba(0,0,0,.16) 10px, rgba(0,0,0,.16) 11px);
}
.collection-card__eyebrow,
.collection-card__count,
.collection-card__comb {
  position: relative;
  z-index: 1;
}
.collection-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(245,240,232,.88);
}
.collection-card__eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: rgba(245,240,232,.45);
}
.collection-card__count {
  margin-top: 18px;
  display: inline-flex;
  flex-direction: column;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(8,8,8,.22);
  backdrop-filter: blur(12px);
}
.collection-card__count span {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: var(--gold-l);
  line-height: 1;
}
.collection-card__count small {
  color: rgba(245,240,232,.66);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .62rem;
  margin-top: 6px;
}
.collection-card__comb {
  position: absolute;
  bottom: -6px;
  width: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.45), rgba(201,168,76,.2));
  opacity: .7;
}
.collection-card__comb::after {
  content: '';
  position: absolute;
  inset: 16px 0 auto;
  height: 110px;
  background:
    repeating-linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.08) 9px, transparent 9px, transparent 17px);
  border-radius: 999px;
}
.collection-card__comb--one { right: 42px; height: 170px; transform: rotate(18deg); }
.collection-card__comb--two { right: 90px; height: 145px; transform: rotate(18deg); opacity: .45; }
.collection-card__body {
  position: relative;
  padding: 28px;
}
.collection-card__label {
  color: rgba(245,240,232,.58);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .68rem;
  margin-bottom: 12px;
}
.collection-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 14px;
}
.collection-card__desc {
  color: rgba(245,240,232,.78);
  font-size: .98rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.collection-card__models {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.model-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,240,232,.9);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.collection-card__traits {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.collection-card__traits li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(245,240,232,.74);
  font-size: .9rem;
}
.collection-card__traits i {
  color: var(--gold);
  margin-top: 3px;
}
.collection-strip {
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 24px;
  padding: 24px 28px;
  display: grid;
  gap: 22px;
  align-items: center;
}
.collection-strip__eyebrow {
  color: rgba(245,240,232,.7);
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.collection-strip__title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--cream);
}
.collection-strip__models {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.collection-sidebar-note {
  background: linear-gradient(180deg, rgba(201,168,76,.1), rgba(201,168,76,.03));
}
.product-hero {
  padding-bottom: 40px;
}
.product-gallery-panel {
  padding: 24px;
  border-radius: 28px;
}
.product-gallery-main {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(8,8,8,.28);
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-main-link {
  display: block;
  width: 100%;
}
.product-main-image {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  transition: transform .45s ease;
}
.product-main-link:hover .product-main-image { transform: scale(1.04); }
.product-main-placeholder {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}
.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.product-thumb {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease;
}
.product-thumb img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  display: block;
}
.product-thumb:hover,
.product-thumb.is-active {
  transform: translateY(-2px);
  border-color: rgba(201,168,76,.48);
}
.product-detail-panel {
  display: grid;
  gap: 20px;
}
.product-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.product-detail-badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(201,168,76,.14);
  border: 1px solid rgba(201,168,76,.25);
  color: var(--gold-l);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-detail-badge.muted {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.08);
  color: rgba(245,240,232,.78);
}
.product-detail-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 16px;
}
.product-detail-copy,
.product-long-copy {
  color: rgba(245,240,232,.76);
  line-height: 1.8;
  font-size: 1rem;
}
.product-price-panel {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.product-price-stat span,
.product-spec-card span,
.product-rail-meta span {
  display: block;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,240,232,.52);
  margin-bottom: 8px;
}
.product-price-stat strong,
.product-spec-card strong,
.product-rail-meta strong {
  color: var(--cream);
  font-size: 1rem;
}
.product-cta-stack {
  display: grid;
  gap: 12px;
}
.product-primary-cta,
.product-secondary-cta {
  width: 100%;
  justify-content: center;
}
.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.product-spec-card {
  padding: 18px 20px;
}
.product-content-card {
  padding: 28px;
}
.feature-tile,
.rule-tile {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.feature-tile {
  display: flex;
  gap: 12px;
  color: rgba(245,240,232,.78);
}
.feature-tile i {
  color: var(--gold);
  margin-top: 3px;
}
.rule-tile h3 {
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 10px;
}
.rule-tile p,
.product-rail-copy {
  color: rgba(245,240,232,.72);
  line-height: 1.7;
}
.product-sticky-rail {
  position: sticky;
  top: 110px;
}
.product-rail-card {
  padding: 24px;
  border-radius: 24px;
}
.product-rail-title {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: 2rem;
  margin-bottom: 12px;
}
.product-rail-meta {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}
::placeholder {
  color: rgba(245,240,232,.42);
  opacity: 1;
}
body.light-mode {
  --dark: #f7efe5;
  --cream: #2f241d;
  --rich-black: #ffffff;
  background-color: #f7efe5;
  background-image:
    radial-gradient(circle at top left, rgba(201,168,76,.18), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(237,225,212,.88));
  color: #2f241d;
}
body.light-mode ::placeholder { color: rgba(67,53,42,.52); }
body.light-mode .glass-card,
body.light-mode .filter-card,
body.light-mode .product-content-card,
body.light-mode .product-spec-card,
body.light-mode .feature-tile,
body.light-mode .rule-tile,
body.light-mode .product-gallery-main,
body.light-mode .collection-card,
body.light-mode .collection-strip {
  background: rgba(255,255,255,.7);
  border-color: rgba(156,106,29,.14);
  box-shadow: 0 20px 50px rgba(87,58,27,.08);
}
body.light-mode .navbar.scrolled,
body.light-mode .nav-search-bar {
  background: rgba(247,239,229,.92);
  border-color: rgba(156,106,29,.12);
}
body.light-mode .nav-link,
body.light-mode .logo-sub,
body.light-mode .footer-links a,
body.light-mode .product-detail-copy,
body.light-mode .product-long-copy,
body.light-mode .rule-tile p,
body.light-mode .product-rail-copy,
body.light-mode [class*="text-cream"] {
  color: #4b3b2e !important;
}
body.light-mode .section-label,
body.light-mode .collection-card__label,
body.light-mode .product-price-stat span,
body.light-mode .product-spec-card span,
body.light-mode .product-rail-meta span,
body.light-mode .breadcrumb span,
body.light-mode .breadcrumb a {
  color: rgba(75,59,46,.76) !important;
}
body.light-mode .logo-name,
body.light-mode .nav-link:hover,
body.light-mode .nav-link.active,
body.light-mode .footer-heading,
body.light-mode .filter-heading,
body.light-mode [class*="text-gold"] {
  color: #9c6a1d !important;
}
body.light-mode .gold-gradient-text {
  background: linear-gradient(135deg, #8c5b1d, #c6993d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.light-mode .btn-outline {
  color: #7a4a1d;
  border-color: rgba(122,74,29,.25);
}
body.light-mode .btn-outline:hover {
  background: rgba(122,74,29,.08);
}
body.light-mode .search-input,
body.light-mode .newsletter-input,
body.light-mode .filter-input,
body.light-mode .form-input {
  background: rgba(255,255,255,.85);
  color: #2f241d;
  border-color: rgba(156,106,29,.2);
}
body.light-mode .theme-btn {
  color: #7a4a1d;
  border-color: rgba(122,74,29,.2);
}
body.light-mode .mobile-menu,
body.light-mode .nav-dropdown {
  background: rgba(247,239,229,.98);
  border-color: rgba(156,106,29,.14);
}
body.light-mode .footer,
body.light-mode .footer-body {
  background: linear-gradient(180deg, #eadfd0, #e4d7c7);
}
body.light-mode .social-icon,
body.light-mode .product-thumb,
body.light-mode .product-detail-badge.muted {
  background: rgba(255,255,255,.72);
  border-color: rgba(122,74,29,.14);
}
body.light-mode .product-detail-title,
body.light-mode .collection-card__title,
body.light-mode .collection-strip__title,
body.light-mode .product-rail-title,
body.light-mode .rule-tile h3,
body.light-mode .page-hero-title,
body.light-mode .section-title {
  color: #241812 !important;
}
body.light-mode .model-pill,
body.light-mode .product-detail-badge {
  color: #7a4a1d;
  background: rgba(156,106,29,.08);
  border-color: rgba(156,106,29,.14);
}
body.light-mode .collection-card__desc,
body.light-mode .collection-card__traits li,
body.light-mode .page-hero-desc {
  color: rgba(54,40,31,.86) !important;
}
body.light-mode .product-gallery-panel.theme-rosewood,
body.light-mode .product-gallery-panel.theme-neemwood,
body.light-mode .product-gallery-panel.theme-celluloid,
body.light-mode .collection-card.theme-rosewood,
body.light-mode .collection-card.theme-neemwood,
body.light-mode .collection-card.theme-celluloid,
body.light-mode .collection-strip.theme-rosewood,
body.light-mode .collection-strip.theme-neemwood,
body.light-mode .collection-strip.theme-celluloid {
  background:
    radial-gradient(circle at top right, rgba(201,168,76,.16), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(244,236,227,.98));
}
body.light-mode .collection-card__count {
  background: rgba(255,255,255,.68);
  border-color: rgba(156,106,29,.12);
}
@media (max-width: 1024px) {
  .collection-strip,
  .product-price-panel { grid-template-columns: 1fr; }
  .product-sticky-rail { position: static; }
}
@media (max-width: 768px) {
  .collection-card__body,
  .product-content-card,
  .product-gallery-panel { padding: 20px; }
  .product-gallery-main,
  .product-main-image { min-height: 340px; }
  .product-spec-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .collection-card__title { font-size: 1.5rem; }
  .product-detail-title { font-size: 1.8rem; }
}

/* Theme-aware loading, hero sliders, and responsive polish */
body:not(.light-mode) .loading-screen {
  background:
    radial-gradient(circle at top, rgba(201,168,76,.12), transparent 35%),
    linear-gradient(180deg, #0a0a0a, #120b07 55%, #080808);
}
body.light-mode .loading-screen {
  background:
    radial-gradient(circle at top, rgba(201,168,76,.18), transparent 36%),
    linear-gradient(180deg, #fffaf2, #f4eadc 58%, #ead9c2);
}
body.light-mode .loading-logo {
  color: #8f5c18;
  text-shadow: 0 10px 30px rgba(143,92,24,.16);
}
body.light-mode .loading-sub {
  color: rgba(74,54,37,.78);
}
body.light-mode .loading-bar {
  background: rgba(143,92,24,.12);
  box-shadow: inset 0 0 0 1px rgba(143,92,24,.08);
}
body.light-mode .loading-bar-fill {
  background: linear-gradient(90deg, transparent, #c79a42, transparent);
}

.hero-bg,
.page-hero-bg {
  overflow: hidden;
}
.hero-bg > .hero-banner-swiper,
.page-hero-bg > .hero-banner-swiper,
.page-hero-bg > .page-hero-fallback,
.hero-bg > .page-hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-banner-slide,
.hero-banner-image,
.page-hero-fallback {
  width: 100%;
  height: 100%;
}
.hero-banner-image,
.page-hero-fallback {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-hero-fallback {
  background:
    linear-gradient(180deg, rgba(61,26,8,.48), rgba(10,10,10,.86)),
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(201,168,76,.018) 40px, rgba(201,168,76,.018) 41px);
}
.hero-banner-slide {
  position: relative;
}
.hero-banner-image {
  transform: scale(1.02);
  animation: heroKenBurns 12s ease-in-out infinite alternate;
}
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,8,.16) 0%, rgba(8,8,8,.56) 50%, rgba(8,8,8,.74) 100%);
}
.hero-bg-gradient,
.hero-bg-pattern,
.hero-particles,
.hero-content,
.hero-scroll-indicator {
  position: relative;
}
.hero-bg-gradient {
  z-index: 1;
}
.hero-bg-pattern,
.hero-particles {
  z-index: 2;
}
.hero-content,
.hero-scroll-indicator {
  z-index: 3;
}
.page-hero .max-w-7xl,
.page-hero .max-w-4xl {
  z-index: 2;
}
.hero-banner-pagination {
  bottom: 20px !important;
}
.hero-banner-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,.7);
  opacity: .35;
  border: 1px solid rgba(255,255,255,.28);
}
.hero-banner-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,.4);
}
.product-hero .hero-banner-pagination {
  text-align: right;
  padding-right: 18px;
}
@keyframes heroKenBurns {
  0% { transform: scale(1.02) translate3d(0, 0, 0); }
  100% { transform: scale(1.1) translate3d(1.2%, -1.2%, 0); }
}

body.light-mode .hero-title,
body.light-mode .hero-subtitle,
body.light-mode .hero-badge,
body.light-mode .hero-scroll-indicator p,
body.light-mode .page-hero .page-hero-title,
body.light-mode .page-hero .page-hero-desc,
body.light-mode .page-hero .breadcrumb,
body.light-mode .page-hero .breadcrumb a,
body.light-mode .page-hero .breadcrumb span {
  color: #fff4e6 !important;
  text-shadow: 0 12px 40px rgba(0,0,0,.32);
}
body.light-mode .hero-badge {
  border-color: rgba(255,244,230,.28);
  background: rgba(255,255,255,.14);
}
body.light-mode .section-title,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4,
body.light-mode h5,
body.light-mode h6,
body.light-mode .faq-question,
body.light-mode .step-title,
body.light-mode .footer-heading,
body.light-mode .info-row strong,
body.light-mode .policy-card strong,
body.light-mode .why-card strong,
body.light-mode .testimonial-card h4,
body.light-mode .product-view-btn,
body.light-mode .product-detail-title,
body.light-mode .collection-card__title,
body.light-mode .collection-strip__title,
body.light-mode .product-rail-title,
body.light-mode .rule-tile h3 {
  color: #231712 !important;
}
body.light-mode p,
body.light-mode li,
body.light-mode td,
body.light-mode th,
body.light-mode label,
body.light-mode .faq-answer p,
body.light-mode .step-desc,
body.light-mode .policy-card,
body.light-mode .info-label,
body.light-mode .legal-content p,
body.light-mode .legal-content li,
body.light-mode .spec-label,
body.light-mode .spec-val,
body.light-mode .stat-label,
body.light-mode .form-label,
body.light-mode .collection-card__desc,
body.light-mode .collection-card__traits li,
body.light-mode .product-detail-copy,
body.light-mode .product-long-copy,
body.light-mode .rule-tile p,
body.light-mode .product-rail-copy,
body.light-mode [class*="text-cream/"] {
  color: #4b3b2e !important;
}
body.light-mode .legal-content strong,
body.light-mode strong,
body.light-mode .product-price-stat strong,
body.light-mode .product-spec-card strong,
body.light-mode .product-rail-meta strong {
  color: #2d1d16 !important;
}
body.light-mode .nav-link,
body.light-mode .logo-sub,
body.light-mode .footer-links a,
body.light-mode .filter-chip,
body.light-mode .filter-link,
body.light-mode .pagination-btn,
body.light-mode .mobile-nav-link,
body.light-mode .newsletter-input,
body.light-mode .search-input,
body.light-mode .form-input,
body.light-mode .filter-input {
  color: #4b3b2e !important;
}
body.light-mode .search-input,
body.light-mode .newsletter-input,
body.light-mode .filter-input,
body.light-mode .form-input,
body.light-mode textarea.form-input,
body.light-mode select.form-input {
  background: rgba(255,255,255,.92);
  border-color: rgba(156,106,29,.22);
  box-shadow: 0 10px 30px rgba(111,78,38,.06);
}
body.light-mode .form-input:focus,
body.light-mode .search-input:focus,
body.light-mode .newsletter-input:focus,
body.light-mode .filter-input:focus {
  border-color: rgba(156,106,29,.42);
  background: #fffdf8;
}
body.light-mode .product-overlay,
body.light-mode .gallery-overlay {
  background: rgba(36,24,18,.72);
}
body.light-mode .faq-item,
body.light-mode .policy-card,
body.light-mode .process-step,
body.light-mode .testimonial-card,
body.light-mode .stat-card {
  background: rgba(255,255,255,.74);
  border-color: rgba(156,106,29,.14);
}
body.light-mode .page-hero .gold-gradient-text,
body.light-mode .hero-title .gold-gradient-text {
  background: linear-gradient(135deg, #f5deb3, #e7c56b, #fff4e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Brighter light-mode refinement */
body.light-mode {
  --dark: #fff8ef;
  --cream: #201611;
  --rich-black: #ffffff;
  background-color: #fff8ef;
  background-image:
    radial-gradient(circle at top left, rgba(230,187,92,.18), transparent 28%),
    radial-gradient(circle at top right, rgba(255,255,255,.88), transparent 22%),
    linear-gradient(180deg, #fffdf9 0%, #f8efe2 62%, #f2e4d2 100%);
  color: #2a1d16;
}
body.light-mode .glass-card,
body.light-mode .filter-card,
body.light-mode .product-content-card,
body.light-mode .product-spec-card,
body.light-mode .feature-tile,
body.light-mode .rule-tile,
body.light-mode .product-gallery-main,
body.light-mode .collection-card,
body.light-mode .collection-strip,
body.light-mode .faq-item,
body.light-mode .policy-card,
body.light-mode .process-step,
body.light-mode .testimonial-card,
body.light-mode .stat-card {
  background: rgba(255,255,255,.88);
  border-color: rgba(167,116,35,.16);
  box-shadow: 0 22px 60px rgba(108,72,30,.08);
}
body.light-mode .navbar.scrolled,
body.light-mode .nav-search-bar,
body.light-mode .mobile-menu,
body.light-mode .nav-dropdown {
  background: rgba(255,250,242,.96);
  border-color: rgba(167,116,35,.14);
  box-shadow: 0 12px 32px rgba(108,72,30,.06);
}
body.light-mode .nav-drop-item {
  color: #4a372c !important;
}
body.light-mode .nav-drop-item i {
  color: #a16a1f !important;
  opacity: 1;
}
body.light-mode .nav-drop-item:hover,
body.light-mode .nav-drop-item:focus {
  background: rgba(201,168,76,.14);
  color: #7d4f14 !important;
}
body.light-mode .nav-drop-divider {
  background: rgba(167,116,35,.12);
}
body.light-mode .wishlist-toggle {
  background: rgba(255,255,255,.94);
  border-color: rgba(167,116,35,.18);
  color: #8b5a19;
}
body.light-mode .wishlist-toggle:hover {
  color: #b51743;
  border-color: rgba(181,23,67,.26);
}
body.light-mode .wishlist-card__meta,
body.light-mode .wishlist-card__desc {
  color: #5b4638;
}
body.light-mode .wishlist-card__title {
  color: #20130f;
}
body.light-mode .wishlist-card__service-icon span {
  color: #6a5241;
}
body.light-mode .footer,
body.light-mode .footer-body {
  background: linear-gradient(180deg, #f3e7d8, #ebdcc9);
}
body.light-mode .nav-link,
body.light-mode .logo-sub,
body.light-mode .footer-links a,
body.light-mode .filter-chip,
body.light-mode .filter-link,
body.light-mode .pagination-btn,
body.light-mode .mobile-nav-link,
body.light-mode p,
body.light-mode li,
body.light-mode td,
body.light-mode th,
body.light-mode label,
body.light-mode .faq-answer p,
body.light-mode .step-desc,
body.light-mode .info-label,
body.light-mode .legal-content p,
body.light-mode .legal-content li,
body.light-mode .spec-label,
body.light-mode .spec-val,
body.light-mode .stat-label,
body.light-mode .form-label,
body.light-mode .collection-card__desc,
body.light-mode .collection-card__traits li,
body.light-mode .product-detail-copy,
body.light-mode .product-long-copy,
body.light-mode .rule-tile p,
body.light-mode .product-rail-copy,
body.light-mode [class*="text-cream"],
body.light-mode [class*="text-cream/"] {
  color: #4a372c !important;
}
body.light-mode .section-title,
body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4,
body.light-mode h5,
body.light-mode h6,
body.light-mode .faq-question,
body.light-mode .step-title,
body.light-mode .footer-heading,
body.light-mode .info-row strong,
body.light-mode .policy-card strong,
body.light-mode .why-card strong,
body.light-mode .testimonial-card h4,
body.light-mode .product-detail-title,
body.light-mode .collection-card__title,
body.light-mode .collection-strip__title,
body.light-mode .product-rail-title,
body.light-mode .rule-tile h3,
body.light-mode .logo-name {
  color: #1d130f !important;
}
body.light-mode .section-label,
body.light-mode .collection-card__label,
body.light-mode .product-price-stat span,
body.light-mode .product-spec-card span,
body.light-mode .product-rail-meta span,
body.light-mode .breadcrumb span,
body.light-mode .breadcrumb a,
body.light-mode .hero-subtitle,
body.light-mode .page-hero-desc {
  color: rgba(78,57,42,.9) !important;
}
body.light-mode .search-input,
body.light-mode .newsletter-input,
body.light-mode .filter-input,
body.light-mode .form-input,
body.light-mode textarea.form-input,
body.light-mode select.form-input {
  background: rgba(255,255,255,.96);
  color: #281b14 !important;
  border-color: rgba(167,116,35,.2);
}
body.light-mode .product-overlay,
body.light-mode .gallery-overlay {
  background: rgba(34,22,16,.58);
}
body.light-mode .model-pill,
body.light-mode .product-detail-badge,
body.light-mode .collection-card__count,
body.light-mode .social-icon,
body.light-mode .product-thumb,
body.light-mode .product-detail-badge.muted {
  background: rgba(255,255,255,.86);
  border-color: rgba(167,116,35,.16);
}
body.light-mode .page-hero .gold-gradient-text,
body.light-mode .hero-title .gold-gradient-text,
body.light-mode .gold-gradient-text {
  background: linear-gradient(135deg, #9a631c, #d4a443 52%, #f2d58f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1024px) {
  .hero-section {
    min-height: auto;
    padding-top: 96px;
  }
  .hero-content {
    padding: 48px 16px 100px;
  }
  .page-hero {
    padding: 128px 16px 64px;
  }
  .product-hero .grid {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .hero-title {
    line-height: 1.06;
  }
  .hero-subtitle,
  .page-hero-desc {
    max-width: 100%;
    font-size: .96rem;
  }
  .page-hero-title {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }
  .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 6px;
  }
  .hero-scroll-indicator {
    bottom: 18px;
  }
  .product-gallery-main,
  .product-main-image {
    min-height: 280px;
  }
  .product-gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-btn {
    width: 100%;
    height: 44px;
  }
}
@media (max-width: 640px) {
  .page-hero,
  .hero-content {
    padding-left: 14px;
    padding-right: 14px;
  }
  .page-hero {
    padding-top: 118px;
    padding-bottom: 54px;
  }
  .hero-banner-pagination {
    bottom: 12px !important;
  }
  .btn-gold,
  .btn-outline,
  .btn-whatsapp {
    width: 100%;
  }
  .collection-card__count {
    padding: 12px 14px;
  }
  .product-price-panel,
  .product-spec-grid {
    gap: 10px;
  }
  .float-whatsapp,
  .float-scroll-top {
    bottom: 16px;
  }
  .float-whatsapp {
    left: 16px;
  }
  .float-scroll-top {
    right: 16px;
  }
  .wishlist-shell {
    grid-template-columns: 1fr;
  }
  .wishlist-card__actions {
    flex-direction: column;
  }
  .wishlist-card__actions .btn-outline,
  .wishlist-card__actions .btn-gold,
  .wishlist-card__actions .btn-whatsapp {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .navbar .max-w-7xl,
  .nav-search-bar .max-w-2xl,
  .page-hero .max-w-7xl,
  .page-hero .max-w-4xl,
  .hero-content {
    width: 100%;
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
  .navbar-logo {
    min-width: 0;
    max-width: calc(100% - 54px);
    overflow: hidden;
  }
  .logo-icon svg {
    width: 34px;
    height: 34px;
  }
  .logo-name {
    font-size: 1.08rem;
  }
  .logo-sub {
    font-size: .5rem;
    letter-spacing: .1em;
  }
  .mobile-menu {
    padding: 22px 16px;
  }
}
