/* =========================================================
   NEXUS — PREMIUM SHOPPING | STYLE.CSS
   Aesthetic: Luxury Editorial — Deep Navy + Warm Gold
   Fonts: Playfair Display (headings) + DM Sans (body)
   ========================================================= */

/* =========================================================
   1. CSS VARIABLES & RESET
   ========================================================= */
:root {
  /* Brand Colors */
  --navy:       #0a0f1e;
  --navy-mid:   #111827;
  --navy-light: #1c2640;
  --gold:       #c9a84c;
  --gold-light: #e4c06b;
  --gold-dark:  #a8893a;
  --gold-pale:  #f8f0d8;

  /* Neutrals */
  --white:      #ffffff;
  --off-white:  #fafaf8;
  --bg:         #f4f4f0;
  --bg-card:    #ffffff;
  --border:     #e8e4da;
  --border-dark:#d4cfc3;

  /* Text */
  --text-head:  #0a0f1e;
  --text-body:  #2d3748;
  --text-muted: #6b7280;
  --text-light: #9ca3af;

  /* Status */
  --green:      #059669;
  --red:        #dc2626;
  --blue:       #2563eb;

  /* Shadows */
  --shadow-xs:  0 1px 3px rgba(10,15,30,0.08);
  --shadow-sm:  0 4px 12px rgba(10,15,30,0.08);
  --shadow-md:  0 8px 24px rgba(10,15,30,0.10);
  --shadow-lg:  0 16px 48px rgba(10,15,30,0.14);
  --shadow-xl:  0 32px 80px rgba(10,15,30,0.18);
  --shadow-gold:0 8px 24px rgba(201,168,76,0.30);

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-full: 999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: all 0.28s var(--ease);
  --transition-fast: all 0.16s var(--ease);
  --transition-slow: all 0.44s var(--ease);

  /* Layout */
  --max-w: 1400px;
  --nav-h: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: var(--text-head);
  line-height: 1.15;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }


/* =========================================================
   2. LOADER
   ========================================================= */
.loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.loader-logo span { color: var(--gold); }
.loader-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 40px;
}
.loader-bar-track {
  width: 240px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 0 auto 16px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
  transition: width 0.1s linear;
}
.loader-percent {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.loader-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}


/* =========================================================
   3. NAVBAR
   ========================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.98);
}
.navbar.search-open {
  border-bottom-color: var(--gold);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-xs);
  transition: var(--transition-fast);
  position: relative;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.24s var(--ease);
  transform-origin: left;
}
.nav-link:hover { color: var(--text-head); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--navy); font-weight: 600; }

/* Search in Nav */
.nav-search-wrap {
  flex: 0 0 260px;
  position: relative;
  transition: var(--transition);
}
.nav-search-wrap.hidden { display: none; }
.nav-search {
  position: relative;
}
.nav-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 0.82rem;
  pointer-events: none;
  transition: var(--transition-fast);
}
.nav-search-input {
  width: 100%;
  padding: 10px 40px 10px 38px;
  background: var(--bg);
  border: 1.5px solid transparent;
  border-radius: var(--r-full);
  font-size: 0.86rem;
  color: var(--text-head);
  transition: var(--transition);
}
.nav-search-input:focus {
  outline: none;
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}
.nav-search-input:focus + .nav-search-icon { color: var(--gold); }
.nav-search-input::placeholder { color: var(--text-light); }
.nav-search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: var(--text-light);
  font-size: 0.78rem;
  transition: var(--transition-fast);
}
.nav-search-clear:hover { color: var(--red); }

/* Nav Action Buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-action-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--bg);
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid transparent;
}
.nav-action-btn:hover {
  background: var(--gold-pale);
  color: var(--gold-dark);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.nav-action-btn.active {
  background: var(--navy);
  color: var(--white);
}
.action-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--r-full);
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  transition: var(--transition);
  font-family: 'JetBrains Mono', monospace;
}
.action-badge.bump {
  animation: badgeBump 0.35s var(--ease-bounce);
}
@keyframes badgeBump {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.5); }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 10px;
  border-radius: var(--r-xs);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Search Bar */
.mobile-search-bar {
  padding: 0 16px 12px;
  display: none;
}
.mobile-search-bar.visible { display: block; }
.nav-search.mobile { width: 100%; }
.nav-search.mobile .nav-search-input {
  width: 100%;
  background: var(--bg);
  border-radius: var(--r-sm);
}

/* Mobile Drawer */
.mobile-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,15,30,0.6);
  backdrop-filter: blur(4px);
  z-index: 1100;
  transition: opacity 0.3s var(--ease);
}
.mobile-drawer-overlay.open { display: block; }
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  max-width: 90vw;
  background: var(--white);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.38s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-drawer-close {
  background: var(--bg);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-fast);
}
.mobile-drawer-close:hover { background: var(--red); color: var(--white); }
.mobile-nav-list {
  list-style: none;
  padding: 12px 12px;
  flex: 1;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  font-weight: 500;
  color: var(--text-body);
  transition: var(--transition-fast);
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  background: var(--gold-pale);
  color: var(--gold-dark);
}
.mobile-nav-link i { width: 18px; text-align: center; }
.mobile-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.drawer-action-btn {
  padding: 14px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}
.drawer-action-btn:hover { background: var(--gold); color: var(--navy); }
.drawer-action-btn.secondary { background: var(--bg); color: var(--text-body); border: 1px solid var(--border); }
.drawer-action-btn.secondary:hover { background: var(--gold-pale); color: var(--gold-dark); border-color: var(--gold); }


/* =========================================================
   4. HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 70% 50%, #1a2a5e 0%, transparent 60%),
              radial-gradient(ellipse 60% 60% at 20% 80%, rgba(201,168,76,0.12) 0%, transparent 50%),
              var(--navy);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.25) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: orbDrift1 10s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%);
  bottom: -100px; left: 50px;
  animation: orbDrift2 14s ease-in-out infinite;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  top: 40%; right: 30%;
  animation: orbDrift1 8s ease-in-out infinite reverse;
}
@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.06); }
}
@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 30px) scale(1.04); }
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.grid-line {
  position: absolute;
  background: rgba(255,255,255,0.04);
}
.gl-1 { left: 33%; top: 0; bottom: 0; width: 1px; }
.gl-2 { left: 66%; top: 0; bottom: 0; width: 1px; }
.gl-3 { top: 50%; left: 0; right: 0; height: 1px; }

/* Hero Inner */
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero-content { color: var(--white); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  animation: fadeSlideUp 0.7s var(--ease) 0.2s both;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  animation: dotPulse 2s ease infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 8px var(--gold); }
  50% { box-shadow: 0 0 20px var(--gold), 0 0 40px rgba(201,168,76,0.3); }
}

.hero-title {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 28px;
  color: var(--white);
  animation: fadeSlideUp 0.7s var(--ease) 0.35s both;
}
.hero-title-italic {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 700;
}
.hero-title-block {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 0.75em;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 36px;
  animation: fadeSlideUp 0.7s var(--ease) 0.5s both;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeSlideUp 0.7s var(--ease) 0.65s both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.btn-hero-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}
.btn-hero-primary:hover::after { transform: translateX(100%); }
.btn-hero-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(201,168,76,0.45);
}
.btn-hero-primary:active { transform: translateY(-1px); }
.btn-hero-primary i { transition: transform 0.24s var(--ease); }
.btn-hero-primary:hover i { transform: translateX(4px); }

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  animation: fadeSlideUp 0.7s var(--ease) 0.8s both;
}
.hero-stat { padding: 0 28px; }
.hero-stat:first-child { padding-left: 0; }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-value sup { font-size: 1rem; }
.stat-rating { color: var(--gold-light); }
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Hero Showcase */
.hero-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeSlideRight 0.8s var(--ease) 0.4s both;
}
.showcase-track {
  width: 100%;
  max-width: 440px;
  position: relative;
}
.showcase-slide {
  display: none;
  animation: slideZoomIn 0.45s var(--ease);
}
.showcase-slide.active { display: block; }
@keyframes slideZoomIn {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.showcase-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 28px;
  cursor: pointer;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}
.showcase-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.showcase-card:hover { border-color: rgba(201,168,76,0.25); }
.showcase-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.showcase-img-wrap {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase-img {
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  transition: transform 0.5s var(--ease);
}
.showcase-card:hover .showcase-img { transform: translateY(-14px) scale(1.04); }
.showcase-info {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.showcase-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.showcase-price {
  text-align: right;
}
.showcase-price .new-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}
.showcase-price .old-price {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}

.showcase-dots {
  display: flex;
  gap: 6px;
  margin-top: 20px;
  justify-content: center;
}
.showcase-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.showcase-dot.active {
  width: 28px;
  background: var(--gold);
}

/* Floating Cards */
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-head);
  z-index: 3;
  white-space: nowrap;
}
.float-tl { top: 16px; left: -24px; animation: floatUp 3.5s ease-in-out infinite; }
.float-br { bottom: 56px; right: -24px; animation: floatUp 3.5s ease-in-out infinite 1.7s; }
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--gold-pale);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.float-text strong { display: block; font-weight: 700; font-size: 0.84rem; }
.float-text span { font-size: 0.72rem; color: var(--text-muted); font-weight: 400; }
.pulse-icon { animation: pulseRing 2s ease infinite; }
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.2; }
}


/* =========================================================
   5. MARQUEE
   ========================================================= */
.marquee-strip {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.marquee-inner {
  display: inline-flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeRoll 25s linear infinite;
}
.marquee-strip:hover .marquee-inner { animation-play-state: paused; }
.marquee-inner span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0 20px;
}
.marquee-inner span.mx {
  color: var(--gold);
  padding: 0 4px;
  font-size: 0.6rem;
}
@keyframes marqueeRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* =========================================================
   6. SECTION COMMONS
   ========================================================= */
.section { padding: 80px 0; }
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.section-header { margin-bottom: 52px; }
.section-eyebrow {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--text-head);
  letter-spacing: -1px;
  line-height: 1.1;
}
.section-title em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 700;
}
.section-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 12px;
  max-width: 480px;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}


/* =========================================================
   7. CATEGORIES
   ========================================================= */
.categories-section { background: var(--white); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-card {
  position: relative;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
}
.cat-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  opacity: 0;
  transition: var(--transition);
}
.cat-card > *:not(.cat-card-bg) { position: relative; z-index: 1; }
.cat-card:hover, .cat-card.active {
  transform: translateY(-8px);
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
}
.cat-card:hover .cat-card-bg, .cat-card.active .cat-card-bg { opacity: 1; }
.cat-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}
.cat-card:hover .cat-icon-wrap,
.cat-card.active .cat-icon-wrap { background: rgba(255,255,255,0.15); }
.cat-emoji { font-size: 1.75rem; display: block; }
.cat-info h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-head);
  transition: var(--transition);
  margin-bottom: 4px;
}
.cat-info span {
  font-size: 0.72rem;
  color: var(--text-light);
  transition: var(--transition);
}
.cat-arrow {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-light);
  opacity: 0;
  transform: translateY(4px);
  transition: var(--transition);
}
.cat-card:hover .cat-info h3,
.cat-card.active .cat-info h3 { color: var(--white); }
.cat-card:hover .cat-info span,
.cat-card.active .cat-info span { color: rgba(255,255,255,0.6); }
.cat-card:hover .cat-arrow,
.cat-card.active .cat-arrow { opacity: 1; transform: translateY(0); color: var(--gold); }


/* =========================================================
   8. PRODUCTS
   ========================================================= */
.products-section { background: var(--bg); }

.products-count-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  background: var(--navy);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: var(--r-full);
  letter-spacing: 0.05em;
}

/* Toolbar */
.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-pill {
  padding: 9px 20px;
  border-radius: var(--r-full);
  font-size: 0.84rem;
  font-weight: 600;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.filter-pill:hover { border-color: var(--navy); color: var(--text-head); }
.filter-pill.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sort-select {
  padding: 9px 36px 9px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-body);
  background: var(--white);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}
.sort-select:focus { border-color: var(--gold); outline: none; }
.grid-toggle {
  width: 38px;
  height: 38px;
  border-radius: var(--r-xs);
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.grid-toggle:hover, .grid-toggle.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* Products Grid */
.products-grid {
  display: grid;
  gap: 22px;
  transition: var(--transition);
}
.products-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.products-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

/* Product Card */
.product-card {
  background: var(--bg-card);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

/* Image Zone */
.product-img-zone {
  position: relative;
  height: 220px;
  background: var(--off-white);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-img { transform: scale(1.1); }

/* Badges */
.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}
.prod-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-sale { background: #fee2e2; color: #dc2626; }
.badge-new  { background: #dcfce7; color: #059669; }
.badge-hot  { background: #fff7ed; color: #ea580c; }
.badge-best { background: #f3e8ff; color: #7c3aed; }

/* Quick Action Buttons */
.product-quick-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
  transform: translateX(54px);
  transition: transform 0.32s var(--ease);
}
.product-card:hover .product-quick-actions { transform: translateX(0); }
.quick-action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
  border: 1px solid var(--border);
}
.quick-action-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: scale(1.1);
}
.quick-action-btn.liked {
  background: #fee2e2;
  color: #dc2626;
  border-color: #fca5a5;
}
.quick-action-btn.liked:hover {
  background: #dc2626;
  color: var(--white);
}

/* Product Info */
.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-cat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-head);
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.rating-stars { color: #f59e0b; font-size: 0.75rem; letter-spacing: 1px; }
.rating-text { font-size: 0.76rem; color: var(--text-muted); }
.product-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 14px;
  margin-top: auto;
}
.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-head);
}
.product-original-price {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: line-through;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  display: block;
}
.product-discount-pct {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--green);
  background: #ecfdf5;
  padding: 3px 8px;
  border-radius: var(--r-full);
  font-family: 'JetBrains Mono', monospace;
}

/* Add to Cart Button */
.product-add-btn {
  width: 100%;
  padding: 12px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}
.product-add-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.product-add-btn:hover { box-shadow: var(--shadow-gold); }
.product-add-btn:hover::before { transform: scaleX(1); }
.product-add-btn > * { position: relative; z-index: 1; }
.product-add-btn:hover { color: var(--navy); }
.product-add-btn.added {
  background: var(--green);
  pointer-events: none;
}
.product-add-btn.added::before { display: none; }
.product-add-btn.added:hover { color: var(--white); }

/* Load More */
.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}
.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--white);
  color: var(--text-head);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-load-more:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn-load-more.loading {
  pointer-events: none;
  opacity: 0.6;
}


/* =========================================================
   9. PROMO BANNERS
   ========================================================= */
.promo-section {
  background: var(--navy);
  padding: 64px 0;
}
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.promo-card {
  border-radius: var(--r-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: var(--transition);
}
.promo-card:hover { transform: translateY(-4px); }
.promo-hot {
  background: linear-gradient(135deg, #c9a84c 0%, #e4c06b 50%, #c9a84c 100%);
}
.promo-dark {
  background: linear-gradient(135deg, var(--navy-light) 0%, #2a3a60 100%);
  border: 1px solid rgba(255,255,255,0.08);
}
.promo-texture {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.promo-content { position: relative; z-index: 1; flex: 1; }
.promo-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  padding: 5px 14px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.promo-hot .promo-tag { background: rgba(10,15,30,0.2); color: var(--navy); }
.promo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.promo-hot .promo-title { color: var(--navy); }
.promo-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  line-height: 1.65;
}
.promo-hot .promo-desc { color: rgba(10,15,30,0.65); }
.promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.86rem;
  transition: var(--transition);
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.promo-hot .promo-cta {
  background: var(--navy);
  color: var(--white);
  border-color: transparent;
}
.promo-cta:hover { transform: translateX(4px); background: rgba(255,255,255,0.3); }
.promo-hot .promo-cta:hover { background: var(--navy-light); }
.promo-visual {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
  opacity: 0.85;
  transition: var(--transition);
}
.promo-card:hover .promo-visual img { opacity: 1; transform: scale(1.05) rotate(-2deg); }


/* =========================================================
   10. WHY CHOOSE US
   ========================================================= */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
  transform-origin: left;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.why-card:hover::before { transform: scaleX(1); }
.why-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: var(--gold-pale);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon-wrap {
  background: var(--navy);
  color: var(--gold);
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }


/* =========================================================
   11. TESTIMONIALS
   ========================================================= */
.testimonials-section { background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  transition: var(--transition);
  position: relative;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.testi-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  grid-row: span 1;
}
.testi-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 12px;
  opacity: 0.5;
}
.testi-card.featured .testi-quote-mark { opacity: 0.3; }
.testi-stars { color: #f59e0b; font-size: 0.88rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}
.testi-card.featured .testi-text { color: rgba(255,255,255,0.7); }
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-head);
}
.testi-card.featured .testi-name { color: var(--white); }
.testi-meta { font-size: 0.73rem; color: var(--text-light); margin-top: 2px; }
.testi-card.featured .testi-meta { color: rgba(255,255,255,0.45); }
.testi-verified {
  margin-left: auto;
  color: var(--green);
  font-size: 0.85rem;
}

/* Trust Bar */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-size: 0.88rem;
  color: var(--text-body);
}
.trust-item i { color: var(--gold); font-size: 1rem; }
.trust-item strong { color: var(--text-head); }
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}


/* =========================================================
   12. FOOTER
   ========================================================= */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* Newsletter */
.footer-newsletter {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 48px 52px;
  display: flex;
  align-items: center;
  gap: 52px;
  margin-bottom: 60px;
}
.newsletter-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.newsletter-text p { font-size: 0.88rem; max-width: 260px; }
.newsletter-form-wrap { flex: 1; }
.newsletter-form {
  display: flex;
  gap: 10px;
}
.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--r-full);
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.1); }
.newsletter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--r-full);
  font-weight: 800;
  font-size: 0.88rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.newsletter-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.newsletter-fine {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
  padding-left: 4px;
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.footer-logo span { color: var(--gold); }
.footer-brand-desc {
  font-size: 0.86rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}
.contact-links a { gap: 10px; }
.contact-links i { width: 14px; color: var(--gold); opacity: 0.7; flex-shrink: 0; }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 0.82rem; }
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition-fast);
}
.footer-legal a:hover { color: var(--gold); }
.footer-payments { display: flex; gap: 8px; }
.pay-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xs);
  padding: 5px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
}


/* =========================================================
   13. CART SIDEBAR
   ========================================================= */
.overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,15,30,0.6);
  backdrop-filter: blur(5px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.overlay-backdrop.open { opacity: 1; visibility: visible; }

.cart-sidebar,
.wishlist-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--white);
  z-index: 2100;
  transform: translateX(105%);
  transition: transform 0.42s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  border-left: 1px solid var(--border);
}
.cart-sidebar.open,
.wishlist-sidebar.open { transform: translateX(0); }

.cart-sidebar-header {
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.cart-header-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
}
.cart-header-count {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 2px;
  display: block;
  font-family: 'JetBrains Mono', monospace;
}
.sidebar-close-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.sidebar-close-btn:hover { background: var(--red); color: var(--white); transform: rotate(90deg); }

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.cart-items-list::-webkit-scrollbar { width: 4px; }

/* Cart Empty State */
.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 14px;
  text-align: center;
  color: var(--text-muted);
  padding: 40px 20px;
}
.cart-empty-icon { font-size: 3.5rem; opacity: 0.15; }
.cart-empty-state h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text-head);
}
.cart-empty-state p { font-size: 0.88rem; }

/* Cart Item */
.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--off-white);
  border-radius: var(--r-sm);
  margin-bottom: 10px;
  transition: var(--transition-fast);
  animation: cartItemSlide 0.3s var(--ease);
  border: 1px solid transparent;
}
.cart-item:hover { background: var(--bg); border-color: var(--border); }
@keyframes cartItemSlide {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.cart-item-img {
  width: 74px;
  height: 74px;
  border-radius: var(--r-sm);
  background: var(--white);
  object-fit: contain;
  padding: 6px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.cart-item-details { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 700; font-size: 0.88rem; line-height: 1.3; margin-bottom: 3px; }
.cart-item-cat { font-size: 0.7rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }
.cart-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.cart-item-price {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--gold-dark);
}
.cart-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  overflow: hidden;
}
.cart-qty-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  background: none;
  transition: var(--transition-fast);
}
.cart-qty-btn:hover { color: var(--gold-dark); background: var(--gold-pale); }
.cart-qty-num {
  min-width: 28px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}
.cart-item-remove {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fee2e2;
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-left: 8px;
  transition: var(--transition-fast);
  flex-shrink: 0;
}
.cart-item-remove:hover { background: #dc2626; color: var(--white); }

/* Cart Footer */
.cart-sidebar-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  background: var(--white);
  flex-shrink: 0;
}
.cart-totals-block { margin-bottom: 16px; }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.cart-total-row.grand-total {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-head);
  border-top: 1.5px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
  font-family: 'Playfair Display', serif;
}
.cart-total-row.grand-total span:last-child { color: var(--gold-dark); }
.green-text { color: var(--green); font-weight: 600; }

.checkout-btn {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-sm);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  letter-spacing: 0.03em;
}
.checkout-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.continue-shopping-btn {
  width: 100%;
  padding: 12px;
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-muted);
  background: none;
  margin-top: 8px;
  transition: var(--transition-fast);
}
.continue-shopping-btn:hover { color: var(--text-head); }


/* =========================================================
   14. CHECKOUT MODAL
   ========================================================= */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,15,30,0.7);
  backdrop-filter: blur(6px);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-backdrop.open { opacity: 1; visibility: visible; }

.modal {
  position: fixed;
  z-index: 3100;
  background: var(--white);
  transform: scale(0.92) translateY(16px);
  transition: transform 0.4s var(--ease-bounce), opacity 0.3s var(--ease);
  opacity: 0;
  visibility: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
}
.modal.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}
.modal::-webkit-scrollbar { width: 4px; }

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 10;
}
.modal-close-btn:hover { background: var(--red); color: var(--white); transform: rotate(90deg); }
.modal-close-btn.static { position: relative; top: auto; right: auto; }

/* Quick View Modal */
.quickview-modal {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: 90vw;
  max-width: 820px;
  max-height: 88vh;
  padding: 0;
}
.quickview-modal.open { transform: translate(-50%, -50%) scale(1); }

.quickview-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.quickview-image-side {
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 36px;
  position: relative;
  border-radius: var(--r-lg) 0 0 var(--r-lg);
  min-height: 360px;
}
.quickview-image-side img {
  max-height: 300px;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
}
.quickview-image-side:hover img { transform: scale(1.05); }
.qv-badge-wrap {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.quickview-info-side {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}
.qv-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.qv-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.qv-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.qv-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-dark);
  margin-bottom: 20px;
}
.qv-price del { font-size: 1.1rem; color: var(--text-light); font-weight: 400; font-family: 'DM Sans'; margin-right: 8px; }
.qv-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}
.qv-qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.qv-qty-label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
.qv-qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--bg);
}
.qv-qty-control button {
  width: 36px;
  height: 36px;
  background: none;
  font-size: 1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.qv-qty-control button:hover { background: var(--navy); color: var(--white); }
.qv-qty-control span {
  min-width: 36px;
  text-align: center;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}
.qv-actions { display: flex; gap: 10px; margin-bottom: 20px; }
.qv-add-cart {
  flex: 1;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}
.qv-add-cart:hover { background: var(--gold); color: var(--navy); }
.qv-add-wishlist {
  width: 50px;
  border-radius: var(--r-sm);
  background: #fee2e2;
  color: #dc2626;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1.5px solid #fca5a5;
}
.qv-add-wishlist:hover { background: #dc2626; color: var(--white); }
.qv-add-wishlist.in-wishlist { background: #dc2626; color: var(--white); }
.qv-features {
  display: flex;
  gap: 16px;
  font-size: 0.76rem;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.qv-features i { color: var(--green); margin-right: 4px; }


/* =========================================================
   15. CHECKOUT MODAL STYLES
   ========================================================= */
.checkout-modal {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: 92vw;
  max-width: 960px;
  padding: 0;
}
.checkout-modal.open { transform: translate(-50%, -50%) scale(1); }

.modal-header {
  padding: 24px 32px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 5;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.modal-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.checkout-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.checkout-form-col {
  padding: 32px;
  border-right: 1px solid var(--border);
}
.checkout-summary-col {
  padding: 32px;
  background: var(--off-white);
}
.checkout-section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 24px 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkout-section-title:first-child { margin-top: 0; }
.checkout-section-title i { color: var(--gold); }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  color: var(--text-head);
  background: var(--white);
  transition: var(--transition);
}
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-input.error { border-color: var(--red); }
.form-input::placeholder { color: var(--text-light); }

.payment-options { display: flex; flex-direction: column; gap: 10px; }
.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: var(--transition);
}
.payment-option input[type=radio] { display: none; }
.payment-option.selected {
  border-color: var(--gold);
  background: var(--gold-pale);
}
.payment-option:hover:not(.coming-soon) { border-color: var(--gold-dark); }
.payment-option.coming-soon { opacity: 0.55; cursor: not-allowed; }
.payment-option-icon { font-size: 1.3rem; flex-shrink: 0; }
.payment-option-text strong { display: block; font-size: 0.88rem; font-weight: 700; }
.payment-option-text span { font-size: 0.76rem; color: var(--text-muted); }
.payment-check {
  margin-left: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--border);
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.payment-option.selected .payment-check {
  background: var(--gold);
  color: var(--navy);
}
.coming-soon-tag {
  margin-left: auto;
  background: var(--bg);
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Order Summary in Checkout */
.order-items-list { margin-bottom: 16px; }
.order-summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.order-summary-item-name { flex: 1; font-weight: 600; }
.order-summary-item-qty { color: var(--text-light); font-family: 'JetBrains Mono', monospace; }
.order-summary-item-price { font-weight: 800; color: var(--gold-dark); font-family: 'Playfair Display', serif; }
.order-totals { border-top: 1px solid var(--border); padding-top: 12px; margin-bottom: 20px; }
.order-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.order-total-row.grand {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-head);
  border-top: 1.5px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
  font-family: 'Playfair Display', serif;
}
.order-total-row.grand span:last-child { color: var(--gold-dark); }
.checkout-guarantees {
  display: flex;
  gap: 16px;
  font-size: 0.76rem;
  color: var(--text-muted);
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.checkout-guarantees i { color: var(--green); margin-right: 4px; }
.place-order-btn {
  width: 100%;
  padding: 18px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-sm);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition);
  letter-spacing: 0.04em;
  font-family: 'Playfair Display', serif;
}
.place-order-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.place-order-btn i { transition: transform 0.24s var(--ease); }
.place-order-btn:hover i { transform: translateX(4px); }


/* =========================================================
   16. SUCCESS MODAL
   ========================================================= */
.success-modal {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: 90vw;
  max-width: 480px;
  padding: 0;
}
.success-modal.open { transform: translate(-50%, -50%) scale(1); }
.success-content {
  padding: 52px 48px;
  text-align: center;
}
.success-anim {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 28px;
}
.success-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #dcfce7;
  animation: successCirclePop 0.5s var(--ease-bounce) both;
}
.success-check-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--green);
  animation: successCheckIn 0.4s var(--ease-bounce) 0.3s both;
}
@keyframes successCirclePop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
@keyframes successCheckIn {
  from { transform: scale(0) rotate(-20deg); opacity: 0; }
  to   { transform: scale(1) rotate(0); opacity: 1; }
}
.success-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.success-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.success-order-id {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold-dark);
  border: 1.5px solid rgba(201,168,76,0.3);
  padding: 8px 20px;
  border-radius: var(--r-full);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

/* Confetti */
.confetti-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  pointer-events: none;
}


/* =========================================================
   17. TOAST NOTIFICATIONS
   ========================================================= */
.toast-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  max-width: 360px;
  animation: toastIn 0.35s var(--ease-bounce);
  font-size: 0.86rem;
  font-weight: 500;
  pointer-events: all;
  border-left: 4px solid transparent;
}
.toast.success { border-left-color: var(--green); }
.toast.error   { border-left-color: var(--red); }
.toast.info    { border-left-color: var(--gold); }
.toast.warning { border-left-color: #f59e0b; }
.toast-icon { font-size: 1rem; flex-shrink: 0; }
.toast.success .toast-icon { color: var(--green); }
.toast.error   .toast-icon { color: var(--red); }
.toast.info    .toast-icon { color: var(--gold); }
.toast-text { flex: 1; }
.toast-close {
  background: none;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  padding: 2px 6px;
  transition: var(--transition-fast);
}
.toast-close:hover { color: var(--white); }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(40px) scale(0.96); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}


/* =========================================================
   18. BACK TO TOP
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-4px);
}


/* =========================================================
   19. UTILITY CLASSES
   ========================================================= */
.no-products-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}
.no-products-msg i {
  font-size: 3rem;
  opacity: 0.15;
  display: block;
  margin-bottom: 20px;
}
.no-products-msg h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.no-products-msg p { font-size: 0.9rem; }
.text-gold { color: var(--gold-dark); }


/* =========================================================
   20. RESPONSIVE DESIGN
   ========================================================= */

/* 1280px */
@media (max-width: 1280px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid.cols-4 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: clamp(2.6rem, 4.5vw, 4.5rem); }
}

/* 1024px */
@media (max-width: 1024px) {
  .nav-search-wrap { display: none; }
  .footer-newsletter { flex-direction: column; gap: 28px; padding: 36px; }
  .newsletter-form-wrap { width: 100%; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .checkout-body { grid-template-columns: 1fr; }
  .checkout-summary-col { border-radius: 0 0 var(--r-lg) var(--r-lg); }
  .checkout-form-col { border-right: none; border-bottom: 1px solid var(--border); }
}

/* 900px */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 60px; }
  .hero-showcase { max-width: 460px; width: 100%; }
  .float-tl, .float-br { display: none; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-visual { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar { gap: 12px; padding: 20px 16px; }
  .trust-item { padding: 8px 16px; font-size: 0.82rem; }
  .quickview-body { grid-template-columns: 1fr; }
  .quickview-image-side { border-radius: var(--r-lg) var(--r-lg) 0 0; min-height: 240px; }
  .hero-title { font-size: 2.8rem; letter-spacing: -1px; }
}

/* 768px */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-inner { padding: 0 16px; }
  .nav-container { padding: 0 16px; gap: 12px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .products-grid.cols-4,
  .products-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .products-toolbar { flex-direction: column; align-items: flex-start; }
  .filter-pills { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .toolbar-right { align-self: flex-end; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-bar { flex-direction: column; gap: 0; }
  .trust-divider { width: 100%; height: 1px; }
  .trust-item { width: 100%; justify-content: center; padding: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .hero-stats-row { gap: 0; flex-wrap: wrap; }
  .hero-stat { padding: 0 16px 16px; }
  .hero-cta-row { flex-direction: column; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
  .checkout-modal { width: 100%; max-width: 100%; border-radius: var(--r-lg) var(--r-lg) 0 0; top: auto; bottom: 0; transform: translateX(-50%) translateY(100%); }
  .checkout-modal.open { transform: translateX(-50%) translateY(0); }
  .quickview-modal { width: 100%; max-width: 100%; border-radius: var(--r-lg) var(--r-lg) 0 0; top: auto; bottom: 0; left: 0; transform: translateY(100%); }
  .quickview-modal.open { transform: translateY(0); }
  .success-modal { width: 100%; max-width: 100%; bottom: 0; top: auto; left: 0; border-radius: var(--r-lg) var(--r-lg) 0 0; transform: translateY(100%); }
  .success-modal.open { transform: translateY(0); }
  .cart-sidebar, .wishlist-sidebar { width: 100vw; }
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
  .hero-scroll-indicator { display: none; }
  .promo-card { padding: 32px 24px; }
}

/* 480px */
@media (max-width: 480px) {
  .products-grid.cols-4,
  .products-grid.cols-2 { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .loader-logo { font-size: 2.5rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-btn { width: 100%; justify-content: center; }
  .success-content { padding: 40px 24px; }
  .modal-header { padding: 20px 20px 16px; }
  .footer-newsletter { padding: 24px; }
  .footer-socials { flex-wrap: wrap; }
  .cart-sidebar-header, .cart-sidebar-footer { padding: 16px; }
  .cart-items-list { padding: 12px; }
}
