/* =====================================================
   MINDI ATTAR'S — LUXURY DESIGN SYSTEM
   Brand: Black · Gold · Crimson · Cream
   No emojis. Icons via Font Awesome 6.
   ===================================================== */

/* ── Google Fonts Import ─────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ── CSS Custom Properties ──────────────────────── */
:root {
  /* Brand Colors */
  --black:          #FAF7F2; /* Light Luxury Beige Page Background */
  --black-soft:     #EFEBE4; /* Slightly Darker Beige/Cream */
  --black-card:     #FFFFFF; /* Premium White Cards */
  --black-border:   #E4DEC9; /* Soft Beige-Gold Border */
  --gold:           #9A7B2E; /* Dark gold for text contrast */
  --gold-light:     #C9A84C; /* Accent Gold */
  --gold-pale:      #C9A84C;
  --gold-dark:      #86641E;
  --crimson:        #8B1A1A;
  --crimson-light:  #A52020;
  --crimson-dark:   #6B1212;
  --cream:          #FAF7F2;
  --cream-dark:     #EAE2D0;
  --umber:          #24140D; /* Rich deep brown for header strips */
  --white:          #FFFFFF;
  --text-primary:   #2C251C; /* Dark warm charcoal text */
  --text-secondary: #706352; /* Rich warm brown secondary text */
  --text-muted:     #9F9281; /* Medium warm grey muted text */
  --text-dark:      #FAF7F2; 
  --text-dark-btn:  #0F0F0F;

  /* Glass */
  --glass-gold:     rgba(201, 168, 76, 0.08);
  --glass-gold-md:  rgba(201, 168, 76, 0.15);
  --glass-gold-strong: rgba(201, 168, 76, 0.25);
  --glass-black:    rgba(10, 10, 10, 0.7);
  --glass-black-md: rgba(10, 10, 10, 0.85);

  /* Gradients */
  --grad-gold:      linear-gradient(135deg, #C9A84C 0%, #D4AF37 50%, #9A7B2E 100%);
  --grad-gold-h:    linear-gradient(90deg, #C9A84C 0%, #E8D5A3 50%, #C9A84C 100%);
  --grad-dark:      linear-gradient(180deg, #0A0A0A 0%, #141414 100%);
  --grad-hero:      linear-gradient(135deg, #0A0A0A 0%, #1A0E0E 50%, #0A0A0A 100%);
  --grad-card:      linear-gradient(145deg, #141414 0%, #1A1208 100%);
  --grad-crimson:   linear-gradient(135deg, #8B1A1A 0%, #6B1212 100%);

  /* Typography */
  --font-serif:     'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-accent:    'Playfair Display', 'Cormorant Garamond', serif;
  --font-sans:      'Montserrat', 'Segoe UI', sans-serif;

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

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-gold:    0 4px 20px rgba(201, 168, 76, 0.2);
  --shadow-gold-lg: 0 8px 40px rgba(201, 168, 76, 0.3);
  --shadow-dark:    0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-card:    0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow-crimsn:  0 4px 20px rgba(139, 26, 26, 0.3);

  /* Transitions */
  --transition-fast:  all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:  all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --header-height: 80px;
  --container-max: 1320px;
  --sidebar-width: 280px;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-sans);
}

input, select, textarea {
  font-family: var(--font-sans);
  outline: none;
}

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

h1 { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── Container ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

@media (max-width: 768px) {
  .container { padding: 0 var(--space-md); }
}

/* ── Section Spacing ─────────────────────────────── */
.section {
  padding: var(--space-5xl) 0;
}

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

/* ── Section Header ──────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header .subtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-header h2 {
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.section-header p {
  max-width: 540px;
  margin: 0 auto;
}

.gold-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--grad-gold);
  margin: var(--space-md) auto 0;
}

/* ── Gold Text ───────────────────────────────────── */
.text-gold {
  color: var(--gold);
  font-style: italic;
}

.text-crimson { color: var(--crimson-light); }
.text-cream   { color: var(--cream); }
.text-muted   { color: var(--text-muted); }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

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

.btn-gold {
  background: var(--grad-gold);
  color: var(--text-dark-btn);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  color: var(--text-dark-btn);
}

.btn-gold:active {
  transform: translateY(0);
}

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

.btn-outline-gold:hover {
  background: var(--grad-gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-crimson {
  background: var(--grad-crimson);
  color: var(--white);
}

.btn-crimson:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-crimsn);
}

.btn-dark {
  background: var(--black-card);
  color: var(--text-primary);
  border: 1px solid var(--black-border);
}

.btn-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 0.875rem;
}

.btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.btn-icon-round {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Badge System ────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.25rem 0.625rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.badge-gold     { background: var(--grad-gold); color: var(--black); }
.badge-new      { background: #1a4a1a; color: #4CAF50; border: 1px solid #4CAF50; }
.badge-sale     { background: var(--crimson-dark); color: #ff6b6b; border: 1px solid #ff6b6b; }
.badge-featured { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid var(--gold); }
.badge-out      { background: rgba(255,255,255,0.05); color: var(--text-muted); border: 1px solid var(--black-border); }

/* ── Product Card ────────────────────────────────── */
.product-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--umber);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card__image {
  transform: scale(1.08);
}

.product-card__badges {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.product-card__actions {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-base);
}

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

.product-card__action-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--glass-black-md);
  border: 1px solid var(--black-border);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.product-card__action-btn:hover {
  background: var(--grad-gold);
  color: var(--text-dark-btn);
  border-color: var(--gold);
}

.product-card__action-btn.active {
  background: var(--crimson-dark);
  color: #ff6b6b;
  border-color: var(--crimson);
}

.product-card__body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  transition: var(--transition-fast);
}

.product-card:hover .product-card__name {
  color: var(--gold-pale);
}

.product-card__notes {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__price-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: auto;
  padding-top: var(--space-sm);
}

.product-card__price {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.product-card__price-original {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-card__from {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-right: 2px;
}

.product-card__cta {
  margin-top: var(--space-sm);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition-base);
}

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

/* ── Quick Add Overlay ───────────────────────────── */
.product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--glass-black-md);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--black-border);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transform: translateY(100%);
  transition: var(--transition-base);
}

.product-card:hover .product-card__quick-add {
  transform: translateY(0);
}

/* ── Glassmorphism Card ───────────────────────────── */
.glass-card {
  background: var(--glass-gold);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
}

.glass-card--dark {
  background: var(--glass-black);
  border: 1px solid var(--black-border);
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  height: var(--header-height);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.site-header.transparent {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.8) 0%, rgba(5, 5, 5, 0.4) 50%, transparent 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-xl);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.site-logo img {
  height: 48px;
  width: auto;
  transition: transform 0.3s ease;
}

.site-logo:hover img {
  transform: rotate(-5deg) scale(1.05);
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-logo__name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, #FFF 10%, #D4AF37 50%, #FFF 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 6s linear infinite;
}

.site-logo__tagline {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.8;
}

/* ── Navigation ──────────────────────────────────── */
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.site-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.6);
}

.site-nav a:hover {
  color: var(--gold-light);
}

.site-nav a.active {
  color: var(--gold-light);
  font-weight: 700;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

/* ── Header Actions ──────────────────────────────── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-action-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.header-action-btn:hover {
  color: var(--gold-light);
  border-color: rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.08);
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.15);
}

.header-badge {
  position: absolute;
  top: 1px;
  right: 1px;
  min-width: 17px;
  height: 17px;
  background: var(--grad-gold);
  color: var(--black);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  line-height: 1;
  border: 1px solid #000;
  animation: badgePulse 2s infinite;
}

/* ── Announcement Bar ────────────────────────────── */
.announcement-bar {
  background: var(--umber);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 8px 0;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cream);
  position: relative;
  z-index: 1001;
}

.announcement-bar a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.announcement-bar a:hover {
  color: #FFF;
}

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

@keyframes badgePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); box-shadow: 0 0 10px var(--gold-light); }
  100% { transform: scale(1); }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--black-border);
  background: transparent;
  transition: var(--transition-fast);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-base);
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav a:hover {
  color: var(--gold-light);
}



/* ── Hero Slider Section ─────────────────────────── */
.hero-slider {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #050505;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.9) 0%, rgba(20, 10, 5, 0.6) 50%, rgba(5, 5, 5, 0.9) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 6px 16px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xl);
  background: rgba(201, 168, 76, 0.08);
  backdrop-filter: blur(10px);
}

.hero__label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: var(--space-xl);
  color: var(--white);
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.hero__description {
  font-size: 1.0625rem;
  color: var(--cream-dark);
  max-width: 550px;
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* Slide Content Animations */
.slide .hero__label,
.slide .hero__title,
.slide .hero__description,
.slide .hero__actions {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide.active .hero__label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.slide.active .hero__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.slide.active .hero__description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.slide.active .hero__actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-base);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.slider-arrow:hover {
  background: var(--grad-gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold-lg);
}

.slider-arrow.prev { left: 40px; }
.slider-arrow.next { right: 40px; }

@media (max-width: 768px) {
  .slider-arrow { width: 40px; height: 40px; font-size: 0.9rem; }
  .slider-arrow.prev { left: 15px; }
  .slider-arrow.next { right: 15px; }
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid transparent;
  transition: var(--transition-base);
  cursor: pointer;
  padding: 0;
}

.slider-dot.active {
  background: var(--gold-light);
  transform: scale(1.25);
  box-shadow: 0 0 12px var(--gold-light);
  border-color: var(--white);
}

/* ── Marquee ─────────────────────────────────────── */
.marquee-section {
  background: var(--umber);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-lg);
  padding: 0 var(--space-2xl);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  white-space: nowrap;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Products Grid ───────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 1200px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .products-grid { grid-template-columns: 1fr; } }

/* ── Horizontal Scroll ───────────────────────────── */
.scroll-row {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) var(--black-border);
  padding-bottom: var(--space-md);
  scroll-snap-type: x mandatory;
}

.scroll-row::-webkit-scrollbar { height: 3px; }
.scroll-row::-webkit-scrollbar-track { background: var(--black-border); }
.scroll-row::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

.scroll-row .product-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

/* ── Why Choose Us ───────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 900px)  { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .features-grid { grid-template-columns: 1fr; } }

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

.feature-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  background: var(--glass-gold);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--glass-gold-md);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto var(--space-lg);
}

.feature-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.feature-card__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Testimonials ────────────────────────────────── */
.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
  transition: var(--transition-base);
}

.testimonial-card:hover {
  border-color: var(--gold-dark);
}

.testimonial-card__quote-icon {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.testimonial-card__text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

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

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-dark);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.testimonial-card__location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.star-rating {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-sm);
}

.star-rating i {
  font-size: 0.8125rem;
  color: var(--gold);
}

.star-rating i.empty {
  color: var(--black-border);
}

/* ── Category Cards ──────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 900px)  { .categories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .categories-grid { grid-template-columns: 1fr; } }

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}

.category-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-card__img {
  transform: scale(1.08);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,0.85) 0%, transparent 60%);
  transition: var(--transition-base);
}

.category-card:hover .category-card__overlay {
  background: linear-gradient(0deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.3) 100%);
}

.category-card__content {
  position: relative;
  z-index: 1;
  padding: var(--space-xl);
  width: 100%;
}

.category-card__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.category-card__count {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ── Brand Story Section ─────────────────────────── */
.brand-story {
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}

.brand-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

@media (max-width: 768px) { .brand-story__grid { grid-template-columns: 1fr; } }

.brand-story__image-wrap {
  position: relative;
}

.brand-story__image {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.brand-story__badge {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--black);
  box-shadow: var(--shadow-gold-lg);
}

.brand-story__badge-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.brand-story__badge-text {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Newsletter ──────────────────────────────────── */
.newsletter-section {
  background: var(--umber);
  position: relative;
  overflow: hidden;
  color: var(--cream);
}

.newsletter-section h2 {
  color: var(--white);
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

.newsletter-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.newsletter-input::placeholder { color: var(--text-muted); }

.newsletter-input:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}

.newsletter-btn {
  padding: 0.875rem 1.5rem;
  background: var(--grad-gold);
  color: var(--black);
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-base);
  white-space: nowrap;
}

.newsletter-btn:hover {
  filter: brightness(1.1);
}

/* ── Footer ──────────────────────────────────────── */
.site-footer {
  background: #060606;
  border-top: 1px solid var(--black-border);
}

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

@media (max-width: 1024px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .footer-top { grid-template-columns: 1fr; } }

.footer-brand__logo {
  height: 50px;
  width: auto;
  margin-bottom: var(--space-lg);
}

.footer-brand__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  max-width: 300px;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--glass-gold);
}

.footer-col__title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--gold-pale);
  padding-left: 4px;
}

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

.footer-contact-item i {
  color: var(--gold);
  font-size: 0.875rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.footer-payment-icons {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-payment-icons img,
.footer-payment-icon {
  height: 24px;
  opacity: 0.6;
}

/* ── Floating Buttons ────────────────────────────── */
.floating-whatsapp {
  position: fixed;
  bottom: 90px;
  right: var(--space-lg);
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-spring);
  animation: floatPulse 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  color: var(--white);
}

.back-to-top {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--grad-gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-spring);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lg);
}

/* ── Page Loader ─────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader__logo {
  height: 80px;
  width: auto;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.page-loader__name {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--black-border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.loader-bar__fill {
  height: 100%;
  background: var(--grad-gold);
  border-radius: var(--radius-full);
  animation: loaderFill 1.8s ease-in-out forwards;
}

/* ── Shop Layout ─────────────────────────────────── */
.shop-layout {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

@media (max-width: 900px) { .shop-layout { grid-template-columns: 1fr; } }

.shop-sidebar {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
}

.filter-group {
  border-bottom: 1px solid var(--black-border);
  padding-bottom: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-group__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: 10px;
  cursor: pointer;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}

.filter-option label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

.filter-option:hover label {
  color: var(--gold);
}

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

/* ── Price Range Slider ───────────────────────────── */
.price-range {
  padding: var(--space-sm) 0;
}

.price-range input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
}

.price-range-values {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: var(--space-sm);
}

/* ── Search Bar ──────────────────────────────────── */
.search-wrap {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.search-input:focus {
  border-color: var(--gold);
  background: var(--glass-gold);
}

.search-icon {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.875rem;
  pointer-events: none;
}

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

@media (max-width: 900px) { .product-detail { grid-template-columns: 1fr; } }

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

.product-gallery__main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  position: relative;
  cursor: zoom-in;
}

.product-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-gallery__main:hover .product-gallery__main-img {
  transform: scale(1.04);
}

.product-gallery__thumbs {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  overflow-x: auto;
}

.product-gallery__thumb {
  flex: 0 0 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--black-border);
  cursor: pointer;
  transition: var(--transition-fast);
}

.product-gallery__thumb.active,
.product-gallery__thumb:hover {
  border-color: var(--gold);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info__brand {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.product-info__name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

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

.product-info__rating-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.product-info__short-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--black-border);
  padding-bottom: var(--space-xl);
}

/* ── Size Selector ───────────────────────────────── */
.size-selector {
  margin-bottom: var(--space-xl);
}

.size-selector__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.size-selector__selected {
  color: var(--gold);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

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

.size-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  background: var(--black-card);
  min-width: 72px;
}

.size-option:hover {
  border-color: var(--gold-dark);
  background: var(--glass-gold);
}

.size-option.selected {
  border-color: var(--gold);
  background: var(--glass-gold-md);
  box-shadow: var(--shadow-gold);
}

.size-option.out-of-stock {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.size-option__ml {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.size-option__price {
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 2px;
}

/* ── Quantity ────────────────────────────────────── */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  width: 40px;
  height: 46px;
  background: var(--black-card);
  color: var(--text-secondary);
  font-size: 1rem;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.qty-btn:hover {
  background: var(--glass-gold);
  color: var(--gold);
}

.qty-input {
  width: 56px;
  height: 46px;
  text-align: center;
  background: var(--black-card);
  border: none;
  border-left: 1px solid var(--black-border);
  border-right: 1px solid var(--black-border);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
}

/* ── Product Actions ─────────────────────────────── */
.product-actions {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

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

.product-wishlist-btn {
  width: 46px;
  height: 46px;
  flex: 0 0 46px !important;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  background: var(--black-card);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.product-wishlist-btn:hover,
.product-wishlist-btn.active {
  color: #ff6b6b;
  border-color: #ff6b6b;
  background: rgba(255,107,107,0.08);
}

/* ── Fragrance Notes Pyramid ─────────────────────── */
.fragrance-pyramid {
  margin: var(--space-xl) 0;
  padding: var(--space-xl);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
}

.fragrance-pyramid__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
}

.fragrance-note {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--black-border);
}

.fragrance-note:last-child {
  border-bottom: none;
}

.fragrance-note__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  width: 60px;
  flex-shrink: 0;
}

.fragrance-note__icon {
  color: var(--gold);
  font-size: 0.875rem;
  width: 20px;
  flex-shrink: 0;
}

.fragrance-note__value {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ── Tabs ────────────────────────────────────────── */
.tabs {
  border-bottom: 1px solid var(--black-border);
  display: flex;
  gap: 0;
  margin-bottom: var(--space-xl);
  overflow-x: auto;
}

.tab-btn {
  padding: var(--space-md) var(--space-xl);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.tab-btn:hover {
  color: var(--gold);
}

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

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* ── Cart ────────────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-2xl);
  align-items: start;
}

@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } }

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

.cart-item__image {
  width: 90px;
  height: 110px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--black-border);
}

.cart-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-item__name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--text-primary);
}

.cart-item__meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cart-item__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.cart-item__price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
}

.cart-item__remove {
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
  background: none;
  border: none;
}

.cart-item__remove:hover {
  color: #ff6b6b;
}

/* ── Order Summary ───────────────────────────────── */
.order-summary {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
}

.order-summary__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--black-border);
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.summary-row--total {
  border-top: 1px solid var(--black-border);
  margin-top: var(--space-sm);
  padding-top: var(--space-md);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.summary-row--total .value {
  color: var(--gold);
  font-size: 1.25rem;
}

.coupon-input-wrap {
  display: flex;
  gap: 0;
  margin: var(--space-md) 0;
}

.coupon-field {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--black-border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.coupon-field:focus { border-color: var(--gold); }

.coupon-apply-btn {
  padding: 0.75rem 1.25rem;
  background: var(--gold-dark);
  color: var(--black);
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-fast);
}

.coupon-apply-btn:hover { background: var(--gold); }

/* ── Forms ───────────────────────────────────────── */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.form-label .required {
  color: var(--crimson-light);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1.125rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  transition: var(--transition-fast);
}

.form-control::placeholder { color: var(--text-muted); }

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

.form-control.error {
  border-color: #ff6b6b;
}

.form-error {
  font-size: 0.8rem;
  color: #ff6b6b;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

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

@media (max-width: 600px) { .form-grid-2 { grid-template-columns: 1fr; } }

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

.payment-option {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border: 2px solid var(--black-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
  background: var(--black-card);
}

.payment-option:hover,
.payment-option.selected {
  border-color: var(--gold);
  background: var(--glass-gold);
}

.payment-option input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
}

.payment-option__icon {
  width: 36px;
  height: 24px;
  object-fit: contain;
  opacity: 0.8;
}

.payment-option__label {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}

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

/* ── Alert ───────────────────────────────────────── */
.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.alert--success {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4CAF50;
}

.alert--error {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  color: #ff6b6b;
}

.alert--warning {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
}

.alert--info {
  background: rgba(100, 149, 237, 0.1);
  border: 1px solid rgba(100, 149, 237, 0.3);
  color: #6495ED;
}

/* ── Skeleton Loading ────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--black-card) 25%, #1e1e1e 50%, var(--black-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

/* ── Breadcrumb ──────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg) 0;
}

.breadcrumb a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

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

.breadcrumb-sep {
  color: var(--black-border);
  font-size: 0.75rem;
}

.breadcrumb-current {
  font-size: 0.8rem;
  color: var(--gold);
}

/* ── Pagination ──────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-3xl);
}

.page-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--black-border);
  background: var(--black-card);
  color: var(--text-secondary);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-btn:hover,
.page-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--glass-gold);
}

/* ── User Account ────────────────────────────────── */
.account-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

@media (max-width: 900px) { .account-layout { grid-template-columns: 1fr; } }

.account-sidebar {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
}

.account-sidebar__user {
  text-align: center;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--black-border);
  margin-bottom: var(--space-lg);
}

.account-sidebar__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-dark);
  margin: 0 auto var(--space-sm);
}

.account-sidebar__name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--text-primary);
}

.account-sidebar__email {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.account-nav a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  margin-bottom: 4px;
}

.account-nav a i {
  width: 18px;
  text-align: center;
  color: var(--text-muted);
}

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

.account-nav a:hover i,
.account-nav a.active i {
  color: var(--gold);
}

/* ── Order Status Badge ──────────────────────────── */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pending    { background: rgba(201,168,76,0.1); color: var(--gold); border: 1px solid var(--gold-dark); }
.status-confirmed  { background: rgba(100,149,237,0.1); color: #6495ED; border: 1px solid #6495ED; }
.status-processing { background: rgba(155,89,182,0.1); color: #9B59B6; border: 1px solid #9B59B6; }
.status-shipped    { background: rgba(52,152,219,0.1); color: #3498DB; border: 1px solid #3498DB; }
.status-delivered  { background: rgba(76,175,80,0.1); color: #4CAF50; border: 1px solid #4CAF50; }
.status-cancelled  { background: rgba(255,107,107,0.1); color: #ff6b6b; border: 1px solid #ff6b6b; }

/* ── Countdown Timer ─────────────────────────────── */
.countdown {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  min-width: 56px;
}

.countdown-num {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.countdown-label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.countdown-sep {
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: -8px;
}

/* ── Quiz Section ────────────────────────────────── */
.quiz-step {
  display: none;
  animation: fadeInUp 0.4s ease;
}

.quiz-step.active {
  display: block;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.quiz-option {
  padding: var(--space-lg);
  border: 2px solid var(--black-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: center;
  transition: var(--transition-base);
  background: var(--black-card);
}

.quiz-option:hover,
.quiz-option.selected {
  border-color: var(--gold);
  background: var(--glass-gold);
  transform: translateY(-3px);
}

.quiz-option__icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.quiz-option__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-primary);
}

.quiz-option__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.quiz-progress {
  height: 3px;
  background: var(--black-border);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-2xl);
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: var(--grad-gold);
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
}

/* ── Comparison Table ────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--black-border);
  vertical-align: top;
}

.compare-table th {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  width: 140px;
}

.compare-table td {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ── Gift Options ────────────────────────────────── */
.gift-option-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
  background: var(--black-card);
  margin-bottom: var(--space-md);
}

.gift-option-toggle:hover {
  border-color: var(--gold-dark);
}

.gift-option-toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

/* ── Smooth Scroll Reveal ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delay utilities */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ── Utility Classes ─────────────────────────────── */
.d-none    { display: none !important; }
.d-flex    { display: flex; }
.d-grid    { display: grid; }
.d-block   { display: block; }

.text-center { text-align: center; }
.text-right  { text-align: right; }

.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.w-100 { width: 100%; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }

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

/* ── Responsive Utilities ────────────────────────── */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .section { padding: var(--space-3xl) 0; }
  .btn-lg { padding: 1rem 2rem; }
}

@media (min-width: 769px) {
  .show-mobile-only { display: none !important; }
  .hamburger { display: none; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  
  /* Responsive card padding overrides */
  .admin-card, [style*="padding:40px 30px"] {
    padding: var(--space-xl) var(--space-md) !important;
  }
}

@media (max-width: 480px) {
  .site-logo__tagline {
    display: none !important;
  }
  .site-logo__name {
    font-size: 1.15rem !important;
  }
  .header-actions {
    gap: 6px !important;
  }
  .header-action-btn {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.85rem !important;
  }
  .hamburger {
    padding: 6px !important;
  }
}

/* ── Admin Specific ──────────────────────────────── */
.admin-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: #080808;
  border-right: 1px solid var(--black-border);
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  overflow-y: auto;
  padding-bottom: var(--space-2xl);
}

.admin-content {
  margin-left: 260px;
  min-height: 100vh;
  background: var(--black);
}

.admin-header {
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid var(--black-border);
  padding: var(--space-md) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
}

.admin-body {
  padding: var(--space-xl);
}

.stat-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}

.stat-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
}

.stat-card__value {
  font-family: var(--font-sans);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-card__icon {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.15;
}

.stat-card__trend {
  font-size: 0.8rem;
  color: #4CAF50;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: var(--space-sm);
}

.stat-card__trend.down { color: #ff6b6b; }

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  text-align: left;
  padding: var(--space-md) var(--space-lg);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.04);
  border-bottom: 1px solid var(--black-border);
}

.admin-table td {
  padding: var(--space-md) var(--space-lg);
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--black-border);
  vertical-align: middle;
}

.admin-table tr:hover td {
  background: var(--glass-gold);
}

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

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}

@keyframes floatPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(37,211,102,0.55); }
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

@keyframes loaderFill {
  0%   { width: 0%; }
  100% { width: 100%; }
}

@keyframes scrollLine {
  0%   { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); opacity: 0; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes goldGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(201,168,76,0.2); }
  50%       { box-shadow: 0 0 30px rgba(201,168,76,0.5); }
}

/* ── Journey Steps Timeline ──────────────────────── */
.journey-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.journey-steps::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--black-border) 100%);
  opacity: 0.4;
}

.journey-step {
  display: flex;
  gap: var(--space-lg);
  position: relative;
}

.journey-step__number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: var(--shadow-card);
  transition: var(--transition-spring);
}

.journey-step:hover .journey-step__number {
  background: var(--grad-gold);
  color: var(--black);
  border-color: var(--gold);
  transform: scale(1.15);
  box-shadow: var(--shadow-gold-lg);
}

.journey-step__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  transition: var(--transition-base);
}

.journey-step:hover .journey-step__content {
  transform: translateX(4px);
}

.journey-step__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-primary);
  font-weight: 600;
}

.journey-step__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Header Centering Fixes ───────────────────────── */
.site-header .container {
  height: 100%;
}

/* ── Print ───────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .floating-whatsapp, .back-to-top { display: none !important; }
  body { background: white; color: black; }
}
