/* ============================================================
   STACKPOINTDEV PERFUME — MAIN STYLESHEET
   ============================================================ */

/* ── 1. CUSTOM PROPERTIES ──────────────────────────────────── */
:root {
  /* Dark Theme (default) */
  --bg-primary:   #0B0B0B;
  --bg-secondary: #111111;
  --bg-card:      #141414;
  --bg-elevated:  #1A1A1A;
  --bg-overlay:   rgba(11,11,11,0.92);

  --text-primary:   #FFFFFF;
  --text-secondary: rgba(255,255,255,0.70);
  --text-muted:     rgba(255,255,255,0.38);
  --text-inverse:   #0B0B0B;

  --gold:       #D4AF37;
  --gold-light: #F0D060;
  --gold-dark:  #A68B1E;
  --gold-rgb:   212,175,55;
  --beige:      #F5E6CC;
  --beige-dim:  rgba(245,230,204,0.08);

  --border:        rgba(212,175,55,0.18);
  --border-subtle: rgba(255,255,255,0.06);
  --glass:         rgba(255,255,255,0.04);
  --glass-strong:  rgba(255,255,255,0.09);
  --glass-border:  rgba(255,255,255,0.10);

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.35);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.45);
  --shadow-lg: 0 20px 80px rgba(0,0,0,0.55);
  --shadow-gold: 0 0 40px rgba(212,175,55,0.18);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.40);

  --navbar-bg: rgba(11,11,11,0.82);
  --input-bg:  rgba(255,255,255,0.05);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl:48px;

  --ease:      cubic-bezier(0.4,0,0.2,1);
  --ease-out:  cubic-bezier(0,0,0.2,1);
  --ease-in:   cubic-bezier(0.4,0,1,1);
  --spring:    cubic-bezier(0.34,1.56,0.64,1);
  --t150: 150ms var(--ease);
  --t300: 300ms var(--ease);
  --t500: 500ms var(--ease);
  --t600: 600ms var(--ease-out);
}

[data-theme="light"] {
  --bg-primary:   #FAFAFA;
  --bg-secondary: #F2F2EE;
  --bg-card:      #FFFFFF;
  --bg-elevated:  #F7F4EF;
  --bg-overlay:   rgba(250,250,250,0.92);

  --text-primary:   #0B0B0B;
  --text-secondary: rgba(11,11,11,0.62);
  --text-muted:     rgba(11,11,11,0.36);
  --text-inverse:   #FFFFFF;

  --border:        rgba(212,175,55,0.22);
  --border-subtle: rgba(0,0,0,0.07);
  --glass:         rgba(0,0,0,0.025);
  --glass-strong:  rgba(0,0,0,0.05);
  --glass-border:  rgba(0,0,0,0.09);

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 80px rgba(0,0,0,0.13);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);

  --navbar-bg: rgba(250,250,250,0.82);
  --input-bg:  rgba(0,0,0,0.04);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--t500), color var(--t500);
  -webkit-font-smoothing: antialiased;
}

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

/* ── 3. SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── 4. TYPOGRAPHY ────────────────────────────────────────── */
.font-serif { font-family: 'Playfair Display', Georgia, serif; }

h1,h2,h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; }
h4,h5,h6 { font-family: 'Inter', sans-serif; }

.text-gold   { color: var(--gold); }
.text-beige  { color: var(--beige); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }

/* ── 5. LOADING SCREEN ────────────────────────────────────── */
@keyframes loader-auto-hide {
  0%,80% { opacity:1; visibility:visible; pointer-events:auto; }
  100%    { opacity:0; visibility:hidden;  pointer-events:none; }
}
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #0B0B0B;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 28px;
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
  animation: loader-auto-hide 3.5s ease forwards;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; animation: none; }

.loader-logo {
  width: 80px; height: 80px;
  animation: loader-pulse 1.8s ease-in-out infinite;
}
.loader-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 16px; }

.loader-bar {
  width: 180px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 99px;
  animation: loader-fill 2s var(--ease) forwards;
}
.loader-text {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-muted);
  animation: loader-fade 2s ease infinite alternate;
}

@keyframes loader-pulse  { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }
@keyframes loader-fill   { to{width:100%} }
@keyframes loader-fade   { from{opacity:0.4} to{opacity:1} }

/* ── 6. NAVBAR ────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navbar-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--t300);
}
#navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  border-bottom-color: var(--border);
}

.nav-container {
  max-width: 1400px; margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex; align-items: center; gap: 32px;
  position: relative;
}

.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { width: 38px; height: 38px; border-radius: 10px; object-fit: cover; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 700; color: var(--gold); letter-spacing: 0.3px;
}
.nav-logo-sub {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 500; letter-spacing: 0.3px;
  color: var(--text-secondary);
  transition: var(--t150);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.25s var(--ease);
  border-radius: 99px;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
  background: var(--glass);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; flex-shrink: 0; }

.nav-icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  font-size: 16px;
  background: transparent;
  transition: var(--t150);
  position: relative;
}
.nav-icon-btn:hover { background: var(--glass-strong); color: var(--text-primary); }
.nav-icon-btn .badge {
  position: absolute; top: 4px; right: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); color: #000;
  font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}

/* Theme toggle */
.theme-toggle {
  width: 52px; height: 28px; border-radius: 99px;
  background: var(--glass-strong);
  border: 1.5px solid var(--border-subtle);
  position: relative; cursor: pointer;
  transition: var(--t300);
  flex-shrink: 0;
}
.theme-toggle::before {
  content: ''; position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold);
  transition: transform var(--t300), background var(--t300);
}
[data-theme="light"] .theme-toggle::before { transform: translateX(24px); }
.theme-toggle .toggle-icon {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 11px; pointer-events: none;
}
.theme-toggle .icon-moon { left: 7px; }
.theme-toggle .icon-sun  { right: 6px; }

/* Mobile hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 40px; height: 40px; border-radius: 10px;
  align-items: center; justify-content: center;
  background: var(--glass); cursor: pointer;
  transition: var(--t300);
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text-primary); border-radius: 99px;
  transition: var(--t300);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile menu */
#mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg-overlay);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
#mobile-menu.open { opacity: 1; visibility: visible; }
#mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 600; color: var(--text-primary);
  padding: 12px 32px; border-radius: var(--radius);
  transition: var(--t150);
  transform: translateY(20px); opacity: 0;
}
#mobile-menu.open a {
  transform: translateY(0); opacity: 1;
}
#mobile-menu a:nth-child(2) { transition-delay: 0.05s; }
#mobile-menu a:nth-child(3) { transition-delay: 0.10s; }
#mobile-menu a:nth-child(4) { transition-delay: 0.15s; }
#mobile-menu a:nth-child(5) { transition-delay: 0.20s; }
#mobile-menu a:nth-child(6) { transition-delay: 0.25s; }
#mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--glass-strong); display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--text-primary);
  transition: var(--t150);
}
.mobile-menu-close:hover { background: var(--glass-border); color: var(--gold); }

/* ── 7. SEARCH MODAL ──────────────────────────────────────── */
#search-modal {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 120px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
#search-modal.open { opacity: 1; visibility: visible; }
.search-box {
  width: min(640px, calc(100vw - 48px));
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 6px 6px 6px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  transform: translateY(-20px) scale(0.97);
  transition: transform 0.3s var(--spring);
}
#search-modal.open .search-box { transform: translateY(0) scale(1); }
.search-box i { font-size: 16px; color: var(--text-muted); flex-shrink: 0; }
#search-input {
  flex: 1; background: none; border: none;
  font-size: 16px; color: var(--text-primary);
  placeholder-color: var(--text-muted);
}
#search-input::placeholder { color: var(--text-muted); }
.search-btn {
  padding: 10px 20px; border-radius: var(--radius-sm);
  background: var(--gold); color: #000;
  font-size: 13px; font-weight: 600;
  transition: var(--t150);
}
.search-btn:hover { background: var(--gold-light); }
.search-results {
  margin-top: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  width: min(640px, calc(100vw - 48px));
  max-height: 400px; overflow-y: auto;
}
.search-result-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer; transition: var(--t150);
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--glass); }
.search-result-img {
  width: 48px; height: 48px; border-radius: 10px;
  object-fit: cover; flex-shrink: 0;
}
.search-result-info h5 { font-size: 14px; font-weight: 600; }
.search-result-info p  { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.search-result-price   { margin-left: auto; font-size: 14px; font-weight: 700; color: var(--gold); }

/* ── 8. HERO SECTION ──────────────────────────────────────── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 72px;
  background: linear-gradient(135deg, #0B0B0B 0%, #130C00 45%, #0B0B0B 100%);
  color: #FFFFFF;
}
#hero .hero-title  { color: #FFFFFF; }
#hero .hero-desc   { color: rgba(255,255,255,0.72); }
#hero .hero-eyebrow { color: var(--gold); }
#hero .hero-stat-num   { color: #FFFFFF; }
#hero .hero-stat-label { color: rgba(255,255,255,0.55); }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(212,175,55,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 60%, rgba(10,5,0,0.7) 0%, transparent 70%),
    linear-gradient(135deg, #0B0B0B 0%, #130C00 45%, #0B0B0B 100%);
}
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1592945403244-b3fbafd7f539?w=1600&q=80');
  background-size: cover; background-position: center right;
  opacity: 0.22;
  mix-blend-mode: luminosity;
}
[data-theme="light"] .hero-bg-img { opacity: 0.12; }

.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.particle {
  position: absolute; border-radius: 50%;
  background: var(--gold); opacity: 0;
  animation: particle-float var(--dur, 8s) ease-in-out var(--delay, 0s) infinite;
}

@keyframes particle-float {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  20%  { opacity: var(--opacity, 0.5); }
  80%  { opacity: var(--opacity, 0.5); }
  100% { opacity: 0; transform: translateY(-80px) scale(0.5); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; width: 100%;
}

.hero-left { display: flex; flex-direction: column; gap: 28px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--gold); opacity: 0.6;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 700; line-height: 1.08;
  color: var(--text-primary);
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-title span { display: block; }

.hero-desc {
  font-size: 15px; line-height: 1.8;
  color: var(--text-secondary); max-width: 460px;
}

.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--radius-2xl);
  background: var(--gold); color: #000;
  font-size: 13.5px; font-weight: 700; letter-spacing: 0.4px;
  transition: var(--t300); position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  transform: translateX(-100%); transition: transform 0.5s var(--ease);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,175,55,0.40); }
.btn-gold:hover::before { transform: translateX(100%); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: var(--radius-2xl);
  border: 1.5px solid var(--border);
  color: var(--text-secondary); font-size: 13.5px; font-weight: 500;
  transition: var(--t300);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 36px; padding-top: 8px;
  border-top: 1px solid var(--border-subtle);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: var(--gold);
}
.hero-stat-label { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }

/* Hero right — product showcase */
.hero-right {
  position: relative; display: flex; justify-content: center; align-items: center;
  height: 600px;
}
.hero-bottle-wrap {
  width: 340px; height: 480px;
  position: relative; z-index: 2;
  animation: hero-float 6s ease-in-out infinite;
}
.hero-bottle-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(212,175,55,0.14);
}
.hero-bottle-glow {
  position: absolute; inset: -30px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(212,175,55,0.12) 0%, transparent 70%);
  z-index: 1; pointer-events: none;
  animation: hero-glow 4s ease-in-out infinite alternate;
}
.hero-badge {
  position: absolute;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  backdrop-filter: blur(20px);
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.hero-badge-1 { bottom: 80px; left: -60px; animation: badge-bob 4s ease-in-out infinite; }
.hero-badge-2 { top: 60px; right: -40px; animation: badge-bob 5s ease-in-out 1s infinite; }
.hero-badge i  { font-size: 20px; color: var(--gold); }
.hero-badge strong { display: block; font-size: 14px; font-weight: 700; }
.hero-badge span   { font-size: 11px; color: var(--text-muted); }

@keyframes hero-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
@keyframes hero-glow  { 0%{opacity:0.6} 100%{opacity:1} }
@keyframes badge-bob  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line { 0%,100%{height:48px;opacity:1} 50%{height:24px;opacity:0.4} }

/* ── 9. SECTION UTILITIES ─────────────────────────────────── */
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; display: block; width: 24px; height: 1px; background: var(--gold); opacity: 0.5;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 52px); font-weight: 700;
  line-height: 1.15; color: var(--text-primary);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc {
  margin-top: 16px;
  font-size: 15px; color: var(--text-secondary); line-height: 1.8;
  max-width: 540px; margin-left: auto; margin-right: auto;
}

/* ── 10. PRODUCT SLIDER (horizontal scrolling cards) ────────── */
#product-slider { background: var(--bg-secondary); overflow: hidden; }

.swiper-product {
  padding: 20px 0 48px;
  overflow: visible !important;
}
.swiper-product .swiper-wrapper { align-items: stretch; }
.swiper-product .swiper-slide  { width: 260px !important; }

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  height: 100%; min-height: 380px;
  position: relative; cursor: pointer;
  transition: transform var(--t300), box-shadow var(--t300), border-color var(--t300);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border-color: var(--border);
}

.product-card-img {
  position: relative; overflow: hidden;
  height: 240px; flex-shrink: 0;
  background: var(--bg-elevated);
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card-img img { transform: scale(1.07); }

.product-card-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: 99px;
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.badge-sale    { background: #E53935; color: #fff; }
.badge-new     { background: var(--gold); color: #000; }
.badge-trending{ background: rgba(255,255,255,0.12); color: var(--text-primary); backdrop-filter: blur(8px); }

.product-card-actions {
  position: absolute; top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 8px;
  transform: translateX(60px); opacity: 0;
  transition: transform var(--t300), opacity var(--t300);
}
.product-card:hover .product-card-actions { transform: translateX(0); opacity: 1; }

.card-action-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-elevated); border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-secondary);
  transition: var(--t150); backdrop-filter: blur(10px);
}
.card-action-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.card-action-btn.fav-active { color: #e53935; }

.product-card-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-card-category {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold);
}
.product-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700; line-height: 1.3; color: var(--text-primary);
}
.product-card-brand { font-size: 12px; color: var(--text-muted); }
.product-card-price { display: flex; align-items: center; gap: 8px; margin-top: auto; }
.price-current { font-size: 18px; font-weight: 700; color: var(--gold); }
.price-original { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.price-discount {
  font-size: 11px; font-weight: 700; color: #fff;
  background: #E53935; padding: 2px 7px; border-radius: 99px;
}

.product-card-footer {
  padding: 0 18px 16px; display: flex; gap: 8px;
}
.btn-add-cart {
  flex: 1; padding: 10px;
  border-radius: var(--radius-sm);
  background: var(--gold); color: #000;
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: var(--t150);
}
.btn-add-cart:hover { background: var(--gold-light); }
.btn-quick-view {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-secondary); flex-shrink: 0;
  transition: var(--t150);
}
.btn-quick-view:hover { border-color: var(--gold); color: var(--gold); }

/* Swiper nav */
.swiper-nav { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 12px; }
.swiper-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--glass);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-secondary);
  cursor: pointer; transition: var(--t150);
}
.swiper-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--beige-dim); }
.swiper-btn:disabled { opacity: 0.3; pointer-events: none; }

/* ── 11. NEW COLLECTION SECTION ───────────────────────────── */
#new-collection { background: var(--bg-primary); }
.collection-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end;
  padding-bottom: 40px; border-bottom: 1px solid var(--border-subtle);
}
.collection-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px;
}
.collection-label i { font-size: 9px; animation: star-spin 4s linear infinite; }
@keyframes star-spin { to { transform: rotate(360deg); } }
.collection-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 900; line-height: 0.9;
  color: var(--text-primary);
  letter-spacing: -2px;
}
.collection-heading .outline {
  -webkit-text-stroke: 1.5px var(--text-primary);
  color: transparent;
}
.collection-right { max-width: 280px; padding-bottom: 16px; }
.collection-right p {
  font-size: 14px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px;
}

/* Featured product split panel */
.featured-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius-xl);
  overflow: hidden; margin-top: 60px; min-height: 520px;
  border: 1px solid var(--border-subtle);
}
.featured-img { position: relative; overflow: hidden; background: var(--bg-elevated); }
.featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.featured-split:hover .featured-img img { transform: scale(1.04); }
.featured-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, transparent 60%);
}
.featured-body {
  background: var(--bg-elevated); padding: 52px 52px;
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
}
.featured-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--beige-dim); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 99px;
  font-size: 11px; color: var(--gold); letter-spacing: 1px; width: fit-content;
}
.featured-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 40px); font-weight: 700; line-height: 1.2;
}
.featured-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }
.featured-points { display: flex; flex-direction: column; gap: 12px; }
.featured-point {
  display: flex; align-items: flex-start; gap: 12px;
}
.featured-point-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--beige-dim); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.featured-point-icon i { font-size: 10px; color: var(--gold); }
.featured-point strong { display: block; font-size: 13px; font-weight: 600; color: var(--gold); }
.featured-point span   { font-size: 12px; color: var(--text-muted); }

/* ── 12. CATEGORIES SECTION ───────────────────────────────── */
#categories { background: var(--bg-secondary); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.category-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  cursor: pointer; transition: var(--t300); text-align: center;
}
.category-card:hover {
  border-color: var(--gold-dim); transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.18);
}
.category-img-wrap {
  width: 100%; height: 130px; overflow: hidden; position: relative;
  background: var(--bg-elevated);
}
.category-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.category-card:hover .category-img-wrap img { transform: scale(1.08); }
.category-img-wrap .category-icon-fallback {
  position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; font-size: 36px;
  background: var(--beige-dim);
}
.category-card-body {
  padding: 14px 12px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.category-name {
  font-size: 13px; font-weight: 700; color: var(--text-primary);
  transition: color var(--t150);
}
.category-card:hover .category-name { color: var(--gold); }
.category-count { font-size: 11px; color: var(--text-muted); }

/* ── 13. PROMO BANNER ─────────────────────────────────────── */
.promo-banner {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl); overflow: hidden;
  min-height: 420px; position: relative;
}
.promo-text-side {
  background: var(--bg-elevated);
  padding: 64px 52px; display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
.promo-eyebrow { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); }
.promo-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 56px); font-weight: 700; line-height: 1.1;
}
.promo-heading em { color: var(--gold); font-style: italic; }
.promo-sub { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.promo-code-box {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--glass-strong); border: 1.5px dashed var(--gold);
  border-radius: var(--radius-sm); padding: 12px 20px; width: fit-content;
  cursor: pointer;
}
.promo-code { font-size: 16px; font-weight: 800; letter-spacing: 3px; color: var(--gold); }
.promo-code-label { font-size: 11px; color: var(--text-muted); }
.promo-img-side { position: relative; overflow: hidden; background: var(--bg-secondary); }
.promo-img-side img { width: 100%; height: 100%; object-fit: cover; }
.promo-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg-elevated) -10%, transparent 40%);
}

/* ── 14. BEST SELLERS GRID ────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── 15. TRENDING MARQUEE ─────────────────────────────────── */
.marquee-track { overflow: hidden; padding: 20px 0; }
.marquee-inner {
  display: flex; gap: 40px;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-inner:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 12px;
  white-space: nowrap; flex-shrink: 0;
  padding: 10px 24px; border-radius: 99px;
  background: var(--glass); border: 1px solid var(--border-subtle);
  font-size: 13px; color: var(--text-secondary);
}
.marquee-item i { color: var(--gold); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── 16. STATS SECTION ────────────────────────────────────── */
#stats { background: var(--bg-secondary); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.stats-grid-inner {
  display: contents;
}
.stat-card {
  background: var(--bg-card);
  padding: 48px 36px; text-align: center;
  border: 1px solid var(--border-subtle);
  transition: var(--t300);
}
.stat-card:hover { background: var(--bg-elevated); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px); font-weight: 900;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-suffix { color: var(--gold-dark); }
.stat-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
.stat-divider { width: 32px; height: 1px; background: var(--border); margin: 12px auto; }

/* ── 17. REVIEWS ──────────────────────────────────────────── */
#reviews { background: var(--bg-primary); }
.review-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  height: 100%;
  transition: var(--t300);
}
.review-card:hover { border-color: var(--border); box-shadow: var(--shadow-card); }
.review-stars { display: flex; gap: 3px; color: var(--gold); font-size: 13px; }
.review-text {
  font-size: 14px; color: var(--text-secondary); line-height: 1.8;
  flex: 1;
}
.review-text::before { content: '\201C'; font-size: 48px; color: var(--gold); opacity: 0.3; line-height: 0; vertical-align: -24px; margin-right: 4px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--border);
}
.review-name  { font-size: 14px; font-weight: 700; }
.review-title { font-size: 11px; color: var(--text-muted); }
.review-verified { margin-left: auto; font-size: 11px; color: #4CAF50; display: flex; align-items: center; gap: 4px; }

/* ── 18. INSTAGRAM SECTION ────────────────────────────────── */
#instagram { background: var(--bg-secondary); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 160px);
  gap: 8px;
}
.insta-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--bg-elevated);
}
.insta-item:nth-child(1) { grid-column: 1/3; grid-row: 1/3; }
.insta-item:nth-child(5) { grid-column: 5/7; }
.insta-item:nth-child(6) { grid-column: 5/7; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.insta-item:hover img { transform: scale(1.08); }
.insta-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--t300);
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay i { font-size: 28px; color: #fff; }
.insta-follow {
  margin-top: 28px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 13px; color: var(--text-secondary);
}
.insta-follow a { color: var(--gold); font-weight: 600; }

/* ── 19. NEWSLETTER ───────────────────────────────────────── */
#newsletter { background: var(--bg-primary); }
.newsletter-inner {
  background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(26,16,0,0.7) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.newsletter-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-form {
  display: flex; gap: 12px; max-width: 520px; margin: 36px auto 0;
}
.newsletter-input {
  flex: 1; padding: 14px 20px; border-radius: var(--radius-2xl);
  background: var(--input-bg); border: 1.5px solid var(--border-subtle);
  color: var(--text-primary); font-size: 14px;
  transition: border-color var(--t150);
}
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-note { font-size: 11px; color: var(--text-muted); margin-top: 14px; }

/* ── 20. FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand-logo img { width: 44px; border-radius: 10px; }
.footer-brand-logo span {
  font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--gold);
}
.footer-about { font-size: 13.5px; color: var(--text-muted); line-height: 1.8; }
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.footer-social {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-secondary);
  transition: var(--t150);
}
.footer-social:hover { border-color: var(--gold); color: var(--gold); background: var(--beige-dim); }
.footer-col-title {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; font-weight: 700;
}
.footer-col-links { display: flex; flex-direction: column; gap: 12px; }
.footer-col-links a {
  font-size: 13.5px; color: var(--text-muted); transition: color var(--t150);
}
.footer-col-links a:hover { color: var(--text-primary); }
.footer-bottom {
  margin-top: 64px; padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-bottom a { color: var(--gold); }

/* ── 21. BACK TO TOP ──────────────────────────────────────── */
#back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: #000;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; box-shadow: 0 4px 20px rgba(212,175,55,0.35);
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: var(--t300);
}
#back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ── CART PANEL ───────────────────────────────────────────── */
#cart-panel { display: contents; }
.cart-panel-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,0.55); opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
#cart-panel.open .cart-panel-overlay { opacity: 1; pointer-events: auto; }

.cart-panel-inner {
  position: fixed; top: 0; right: -420px; z-index: 1101;
  width: min(420px, 100vw); height: 100vh;
  background: var(--bg-card); border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.4);
}
#cart-panel.open .cart-panel-inner { right: 0; }

.cart-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-panel-header h3 {
  font-family: 'Playfair Display', serif; font-size: 18px;
  display: flex; align-items: center; gap: 10px; color: var(--text-primary);
}
.cart-panel-header h3 i { color: var(--gold); }
.cart-panel-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--glass); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: var(--t150);
}
.cart-panel-close:hover { background: var(--glass-strong); color: var(--text-primary); }

.cart-panel-body {
  flex: 1; overflow-y: auto; padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
}
.cart-empty {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  padding: 60px 20px; text-align: center;
}
.cart-empty i { font-size: 48px; color: var(--text-muted); }
.cart-empty p { color: var(--text-muted); font-size: 14px; }

.cart-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-elevated); border-radius: var(--radius-lg);
  padding: 12px; border: 1px solid var(--border-subtle);
}
.cart-item-img {
  width: 64px; height: 64px; border-radius: var(--radius-sm);
  object-fit: cover; flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 13px; font-weight: 600; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: 13px; color: var(--gold); font-weight: 700; margin-top: 3px; }
.cart-item-qty {
  display: flex; align-items: center; gap: 8px; margin-top: 6px;
}
.cart-item-qty button {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--glass); color: var(--text-secondary); font-size: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t150);
}
.cart-item-qty button:hover { background: var(--gold); color: #000; }
.cart-item-qty span { font-size: 13px; font-weight: 600; min-width: 16px; text-align: center; }
.cart-item-remove {
  color: var(--text-muted); font-size: 13px; padding: 6px;
  transition: color var(--t150);
}
.cart-item-remove:hover { color: #e53e3e; }

.cart-panel-footer {
  padding: 16px 24px; border-top: 1px solid var(--border); flex-shrink: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px; font-weight: 600; padding: 4px 0 12px;
  border-bottom: 1px solid var(--border-subtle); margin-bottom: 4px;
}
.cart-total strong { color: var(--gold); font-size: 20px; }

/* ── 22. TOAST ────────────────────────────────────────────── */
#toast-container {
  position: fixed; top: 88px; right: 24px; z-index: 2000;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: var(--radius);
  background: var(--bg-elevated); border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  min-width: 260px; max-width: 340px;
  transform: translateX(400px); opacity: 0;
  transition: transform 0.35s var(--spring), opacity 0.3s;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast.toast-success { border-left: 3px solid #4CAF50; }
.toast.toast-error   { border-left: 3px solid #F44336; }
.toast.toast-info    { border-left: 3px solid var(--gold); }
.toast-icon { font-size: 18px; flex-shrink: 0; }
.toast-success .toast-icon { color: #4CAF50; }
.toast-error   .toast-icon { color: #F44336; }
.toast-info    .toast-icon { color: var(--gold); }
.toast-msg  { font-size: 13.5px; color: var(--text-primary); flex: 1; }
.toast-close{ font-size: 14px; color: var(--text-muted); transition: color var(--t150); }
.toast-close:hover { color: var(--text-primary); }

/* ── 23. QUICK VIEW MODAL ─────────────────────────────────── */
#quick-view {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
#quick-view.open { opacity: 1; visibility: visible; }
.quick-view-inner {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px;
  width: min(840px, 100%); max-height: 90vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s var(--spring);
}
#quick-view.open .quick-view-inner { transform: scale(1) translateY(0); }
.quick-view-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--glass-strong); color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: var(--t150);
}
.quick-view-close:hover { background: var(--glass-border); color: var(--text-primary); }

/* ── 24. PRODUCTS PAGE ────────────────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  background: var(--bg-secondary);
  text-align: center;
}
.filters-bar {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 20px 0; border-bottom: 1px solid var(--border-subtle); margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 18px; border-radius: 99px;
  border: 1.5px solid var(--border-subtle);
  font-size: 12.5px; font-weight: 500; color: var(--text-secondary);
  background: transparent; cursor: pointer; transition: var(--t150);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold); color: var(--gold); background: var(--beige-dim);
}

/* Scent DNA Visualizer buttons */
.scent-btn {
  padding: 10px 24px; border-radius: 99px;
  border: 1.5px solid var(--border);
  font-size: 13px; font-weight: 600; letter-spacing: 0.4px;
  background: var(--bg-card); color: var(--text-secondary);
  cursor: pointer; transition: var(--t300);
}
.scent-btn:hover { color: var(--gold); border-color: var(--gold); background: var(--glass-strong); }
.scent-btn.active { background: var(--gold); color: #000; border-color: var(--gold); }
.sort-select {
  margin-left: auto; padding: 9px 16px; border-radius: 99px;
  border: 1.5px solid var(--border-subtle);
  background: var(--bg-card); color: var(--text-primary);
  font-size: 12.5px; cursor: pointer; appearance: none;
  min-width: 160px;
}
.products-count { font-size: 12px; color: var(--text-muted); margin-left: 8px; }
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-subtle); background: transparent;
  color: var(--text-muted); font-size: 13px; cursor: pointer; transition: var(--t150);
  display: flex; align-items: center; justify-content: center;
}
.view-btn.active, .view-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ── 25. PRODUCT DETAILS PAGE ─────────────────────────────── */
.detail-hero { padding-top: 100px; background: var(--bg-secondary); }
.detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.detail-gallery { display: flex; flex-direction: column; gap: 12px; }
.detail-gallery-main {
  height: 500px; border-radius: var(--radius-xl); overflow: hidden;
  background: var(--bg-elevated);
}
.detail-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.detail-gallery-thumbs { display: flex; gap: 10px; }
.detail-thumb {
  width: 80px; height: 80px; border-radius: var(--radius); overflow: hidden;
  border: 2px solid var(--border-subtle); cursor: pointer; transition: var(--t150);
  background: var(--bg-elevated);
}
.detail-thumb.active { border-color: var(--gold); }
.detail-thumb img { width: 100%; height: 100%; object-fit: cover; }

.detail-body { display: flex; flex-direction: column; gap: 24px; }
.detail-breadcrumb { font-size: 12px; color: var(--text-muted); display: flex; gap: 8px; align-items: center; }
.detail-breadcrumb a { color: var(--gold); }
.detail-category { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.detail-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 700; line-height: 1.15;
}
.detail-brand { font-size: 14px; color: var(--text-muted); }
.detail-price { display: flex; align-items: baseline; gap: 12px; }
.detail-price-current { font-size: 32px; font-weight: 800; color: var(--gold); }
.detail-price-orig    { font-size: 18px; color: var(--text-muted); text-decoration: line-through; }
.detail-badge-sale {
  background: #E53935; color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 10px; border-radius: 99px;
}
.detail-rating { display: flex; align-items: center; gap: 8px; }
.detail-stars { color: var(--gold); display: flex; gap: 2px; font-size: 14px; }
.detail-rating-count { font-size: 12px; color: var(--text-muted); }
.detail-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.9; }

.notes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.note-card {
  background: var(--glass); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 14px;
}
.note-card-title { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.note-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.note-tag {
  font-size: 11px; padding: 3px 10px; border-radius: 99px;
  background: var(--beige-dim); color: var(--text-secondary);
}

.size-options { display: flex; gap: 10px; }
.size-btn {
  padding: 10px 20px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-subtle); background: transparent;
  font-size: 13px; color: var(--text-secondary); cursor: pointer; transition: var(--t150);
}
.size-btn.active, .size-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--beige-dim); }

.detail-actions { display: flex; gap: 12px; }
.btn-add-cart-lg {
  flex: 1; padding: 16px 28px;
  background: var(--gold); color: #000;
  border-radius: var(--radius-2xl); font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: var(--t300);
}
.btn-add-cart-lg:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-fav-lg {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1.5px solid var(--border); background: transparent;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--text-secondary);
  transition: var(--t150);
}
.btn-fav-lg:hover, .btn-fav-lg.active { border-color: #E53935; color: #E53935; }

/* ── 26. ABOUT PAGE ───────────────────────────────────────── */
.about-hero {
  min-height: 60vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 140px 0 80px;
}
.about-hero-bg {
  position: absolute; inset: 0;
  background-image: url('../360_F_362510186_nbRqru6Jdiuf1rS6O42CqUi5mLQPG6Mu.jpg');
  background-size: cover; background-position: center;
  opacity: 0.08;
}
.about-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--bg-primary) 100%);
}
.about-hero .container { position: relative; z-index: 2; }

.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-story-img { position: relative; }
.about-story-img-main {
  width: 100%; height: 500px; border-radius: var(--radius-xl);
  overflow: hidden; position: relative; z-index: 2;
}
.about-story-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-story-img-accent {
  position: absolute; width: 220px; height: 280px;
  bottom: -32px; right: -32px; border-radius: var(--radius-lg);
  overflow: hidden; border: 4px solid var(--bg-secondary);
  z-index: 3;
}
.about-story-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-story-badge {
  position: absolute; top: 32px; left: -24px; z-index: 4;
  background: var(--gold); color: #000;
  border-radius: var(--radius); padding: 16px 20px; text-align: center;
  box-shadow: var(--shadow-md);
}
.about-story-badge strong { display: block; font-size: 28px; font-weight: 900; }
.about-story-badge span   { font-size: 11px; font-weight: 600; letter-spacing: 1px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: var(--t300);
}
.value-card:hover { border-color: var(--border); transform: translateY(-4px); }
.value-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: var(--beige-dim); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold); margin-bottom: 20px;
}

/* ── 27. CONTACT PAGE ─────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-form {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); padding: 40px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-label { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; color: var(--text-secondary); }
.form-input, .form-textarea {
  padding: 13px 16px; border-radius: var(--radius-sm);
  background: var(--input-bg); border: 1.5px solid var(--border-subtle);
  color: var(--text-primary); font-size: 14px;
  transition: border-color var(--t150);
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: var(--t300);
}
.contact-info-card:hover { border-color: var(--border); }
.contact-info-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--beige-dim); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--gold); flex-shrink: 0;
}
.contact-info-title { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.contact-info-val   { font-size: 13px; color: var(--text-muted); }

/* ── 28. FAVORITES PAGE ───────────────────────────────────── */
.favorites-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px; padding: 100px 24px; text-align: center;
}
.favorites-empty i { font-size: 64px; color: var(--text-muted); }
.favorites-empty h3 { font-size: 22px; font-weight: 600; }
.favorites-empty p  { font-size: 14px; color: var(--text-muted); }

/* ── 29. SKELETON LOADING ─────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--bg-elevated) 25%, var(--glass-strong) 50%, var(--bg-elevated) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeleton-shimmer { from{background-position:200%} to{background-position:-200%} }
.skeleton-card { height: 380px; border-radius: var(--radius-lg); }

/* ── 30. PAGINATION ───────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 56px; }
.page-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--border-subtle); background: transparent;
  font-size: 13px; color: var(--text-secondary); cursor: pointer; transition: var(--t150);
}
.page-btn.active, .page-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--beige-dim); }
.page-btn:disabled { opacity: 0.3; pointer-events: none; }

/* ── 31. RESPONSIVE BREAKPOINTS ───────────────────────────── */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  .insta-item:nth-child(5), .insta-item:nth-child(6) { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { max-width: 100%; }
  .featured-split { grid-template-columns: 1fr; }
  .featured-img { height: 300px; }
  .detail-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .promo-banner { grid-template-columns: 1fr; }
  .promo-img-side { height: 260px; }
  .collection-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
  .insta-item:nth-child(1) { grid-column: auto; grid-row: auto; }
  .featured-body { padding: 32px 28px; }
  .collection-heading { font-size: 52px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .quick-view-inner { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .notes-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-container { padding: 0 16px; }
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .newsletter-inner { padding: 48px 28px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .detail-gallery-thumbs { flex-wrap: wrap; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  /* Keep hamburger visible on small phones by hiding search & shrinking action row */
  .nav-icon-btn[data-open-search] { display: none; }
  .nav-actions { gap: 4px; }
  .nav-icon-btn, .nav-hamburger { width: 36px; height: 36px; }
  /* Convert pill toggle to round icon button on small screens */
  .theme-toggle { width: 36px; height: 36px; border-radius: 50%; min-width: 36px; }
  .theme-toggle::before { display: none; }
  .theme-toggle .icon-moon,
  .theme-toggle .icon-sun {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    font-size: 15px; transition: opacity var(--t300);
  }
  .theme-toggle .icon-moon { opacity: 0; }
  .theme-toggle .icon-sun  { opacity: 1; }
  [data-theme="light"] .theme-toggle .icon-moon { opacity: 1; }
  [data-theme="light"] .theme-toggle .icon-sun  { opacity: 0; }
}

/* ── 31b. INLINE GRID RESPONSIVE OVERRIDES ───────────────── */
@media (max-width: 768px) {
  /* About page inline grids */
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* About philosophy split */
  [style*="grid-template-columns: 1fr 1fr; gap: 80px"],
  [style*="grid-template-columns:1fr 1fr;gap:80px"] {
    grid-template-columns: 1fr !important;
  }
  /* Admin stats fallback */
  .admin-stats-grid { grid-template-columns: 1fr 1fr !important; }
  /* Admin page chart/activity row */
  [style*="grid-template-columns: 1fr 360px"],
  [style*="grid-template-columns:1fr 360px"] {
    grid-template-columns: 1fr !important;
  }
  /* Newsletter CTA row */
  [style*="justify-content: space-between"][style*="flex-wrap: wrap"] {
    flex-direction: column;
  }
  /* About story img accent hide on very small */
  .about-story-img-accent { display: none; }
}
@media (max-width: 480px) {
  .admin-stats-grid { grid-template-columns: 1fr !important; }
  .detail-gallery-thumbs .detail-thumb { width: 64px; height: 64px; }
}

/* ── 32. UTILITY ──────────────────────────────────────────── */
.hide   { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.divider { height: 1px; background: var(--border-subtle); margin: 0; }
.gap-8  { gap: 8px; }
.mt-auto{ margin-top: auto; }
.overflow-hidden { overflow: hidden; }

/* ── 33. PROMO BANNERS (admin-managed) ──────────────────────── */
.promo-banner-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.promo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.20) 100%);
}
.promo-banner-content {
  position: relative;
  z-index: 2;
  padding: 48px 56px;
  max-width: 600px;
}
.promo-banner-sub {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.promo-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}
.promo-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.promo-banner-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.swiper-banners { border-radius: var(--radius-2xl); overflow: hidden; }

/* ── 34. ADS STRIP (admin-managed) ──────────────────────────── */
.ads-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.ad-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 200px;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  transition: transform .25s;
}
.ad-card:hover { transform: translateY(-4px); }
.ad-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.80) 0%, rgba(0,0,0,.10) 60%);
}
.ad-card-content {
  position: relative;
  z-index: 2;
  padding: 20px 22px;
  width: 100%;
}
.ad-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.ad-card-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,.75);
  margin-bottom: 12px;
}
.ad-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .06em;
}

/* ── 35. GALLERY SECTION (admin-managed) ──────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.gallery-item {
  text-decoration: none;
  display: block;
}
.gallery-img-wrap {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
}
.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover .gallery-img-wrap img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 22px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-align: center;
  padding: 0 12px;
}

/* ── 36. CATEGORY PHOTO PILLS (products page) ────────────── */
.cat-photo-pills {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 24px;
  scrollbar-width: none;
}
.cat-photo-pills::-webkit-scrollbar { display: none; }
.cat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: 14px;
  padding: 10px 14px;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
  flex-shrink: 0;
  min-width: 76px;
}
.cat-pill:hover { border-color: var(--gold); transform: translateY(-2px); }
.cat-pill.active {
  border-color: var(--gold);
  background: rgba(var(--gold-rgb), .10);
}
.cat-pill-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}
.cat-pill-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-pill-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.cat-pill-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  text-align: center;
}
.cat-pill.active .cat-pill-label { color: var(--gold); }

@media (max-width: 768px) {
  .promo-banner-content { padding: 32px 28px; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; }
  .ads-strip { grid-template-columns: 1fr; }
}

/* ── 37. USER DROPDOWN ──────────────────────────────────────── */
.nav-user-wrap { position: relative; }

.user-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 8px;
  min-width: 200px; box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 2000; opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.user-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }

.user-dropdown-email {
  font-size: 11px; color: var(--text-muted); padding: 6px 10px 10px;
  border-bottom: 1px solid var(--border-subtle); margin-bottom: 4px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.user-dropdown a,
.user-dropdown button {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 9px 10px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  background: none; text-align: left; cursor: pointer;
  transition: var(--t150);
}
.user-dropdown a:hover,
.user-dropdown button:hover { background: var(--glass); color: var(--gold); }
.user-dropdown a.active { color: var(--gold); }
.user-dropdown i { width: 16px; color: var(--gold); }

/* ── 38. CHECKOUT & ORDERS ──────────────────────────────────── */
.input-error { border-color: #e74c3c !important; }

/* Mobile: on ≤480px hide user wrap alongside search to keep hamburger visible */
@media (max-width: 480px) {
  .nav-user-wrap .nav-auth-btn { width: 36px; height: 36px; }
  .nav-user-wrap .nav-user-menu .nav-icon-btn { width: 36px; height: 36px; }
}
