/* ============================================
   AURELIA - Haute Luxe
   Design System & Complete Styles
   ============================================ */

/* === DESIGN TOKENS === */
:root {
  --noir: #0A0A0A;
  --noir-soft: #141414;
  --gold: #C8A965;
  --gold-light: #E8D5B0;
  --gold-dark: #A68B4B;
  --cream: #FAF8F5;
  --warm-gray: #F5F3F0;
  --burgundy: #8B2252;
  --forest: #2D6A4F;
  --text-primary: #1A1A1A;
  --text-secondary: #6B6B6B;
  --text-muted: #999999;
  --border: #E8E4DF;
  --border-light: #F0EDE8;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 24px rgba(200,169,101,0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-editorial: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-data: 'JetBrains Mono', monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 400ms var(--ease-out);
  --header-h: 64px;
  --bottom-nav-h: 60px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

[data-theme="dark"] {
  --cream: #0D0D0D;
  --warm-gray: #151515;
  --noir-soft: #1A1A1A;
  --text-primary: #F0EDE8;
  --text-secondary: #A0A0A0;
  --text-muted: #555;
  --border: #222;
  --border-light: #1A1A1A;
  --white: #1A1A1A;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.5s ease, color 0.5s ease;
}
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
em { font-family: var(--font-display); font-style: italic; color: var(--gold); }
.hidden { display: none !important; }

/* === UTILITIES === */
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 48px; } }
@media (min-width: 1024px) { .container { padding: 0 72px; } }
.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 100px 0; } }
@media (min-width: 1024px) { .section { padding: 120px 0; } }
[data-theme="dark"] .product-showcase-strip { background: #0a0a0a; }
[data-theme="dark"] .product-showcase-item { border-color: rgba(200,169,101,0.15); }
[data-theme="dark"] .product-showcase-item span { color: var(--gold-light); }

.section-dark { background: var(--noir); color: #fff; }
.section-dark em { color: var(--gold-light); }
.section-cream { background: var(--warm-gray); }

/* Product Showcase Strip - Auto-scrolling product images */
.product-showcase-strip {
  background: var(--noir);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(200,169,101,0.15);
  border-bottom: 1px solid rgba(200,169,101,0.15);
}
.showcase-scroll {
  display: flex;
  gap: 16px;
  animation: showcase-scroll 40s linear infinite;
  width: max-content;
}
.showcase-item {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(200,169,101,0.2);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.showcase-item:hover {
  transform: scale(1.08);
  border-color: var(--gold);
}
.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.showcase-item:hover img {
  transform: scale(1.15);
}
@keyframes showcase-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Background product showcase sections */
.section-bg-products {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.section-bg-products::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.85) 100%);
  z-index: 1;
}
.section-bg-products > * { position: relative; z-index: 2; }

.section-bg-light-products {
  position: relative;
  background-size: cover;
  background-position: center;
}
.section-bg-light-products::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250,248,245,0.92) 0%, rgba(250,248,245,0.85) 50%, rgba(250,248,245,0.95) 100%);
  z-index: 1;
}
.section-bg-light-products > * { position: relative; z-index: 2; }

/* Floating product decorations */
.floating-products {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.floating-products img {
  position: absolute;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.08;
  filter: grayscale(30%);
  animation: floatProduct 20s ease-in-out infinite;
}
.floating-products img:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.floating-products img:nth-child(2) { top: 60%; right: 8%; width: 100px; height: 100px; animation-delay: -5s; }
.floating-products img:nth-child(3) { bottom: 15%; left: 15%; width: 80px; height: 80px; animation-delay: -10s; }
.floating-products img:nth-child(4) { top: 30%; right: 20%; width: 90px; height: 90px; animation-delay: -15s; }
.floating-products img:nth-child(5) { bottom: 40%; left: 40%; width: 110px; height: 110px; animation-delay: -8s; }

@keyframes floatProduct {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(3deg); }
  50% { transform: translateY(-8px) rotate(-2deg); }
  75% { transform: translateY(-20px) rotate(1deg); }
}

/* Product mosaic background */
.product-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
}
.product-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-eyebrow {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400; letter-spacing: -0.01em; margin-bottom: 16px;
}
.section-header-center { text-align: center; margin-bottom: 48px; }
.section-header-lr { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; transition: all var(--transition);
}
.btn-primary { background: var(--noir); color: var(--cream); }
.btn-primary:hover { background: #222; }
.btn-gold { background: var(--gold); color: var(--noir); font-weight: 600; }
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline { border: 1px solid var(--text-primary); color: var(--text-primary); }
.btn-outline:hover { background: var(--text-primary); color: var(--cream); }
.btn-outline-light { border: 1px solid rgba(255,255,255,0.3); color: #fff; }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 40px; font-size: 0.8rem; }
.btn-sm { padding: 8px 20px; font-size: 0.7rem; }
.btn:active { transform: scale(0.98); }
.btn-hero-primary { background: var(--gold); color: var(--noir); font-weight: 600; padding: 16px 40px; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; }
.btn-hero-primary:hover { background: var(--gold-light); }
.btn-hero-ghost { border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 16px 40px; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; }
.btn-hero-ghost:hover { border-color: var(--gold); color: var(--gold); }
.badge { display: inline-flex; align-items: center; padding: 4px 12px; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.badge-gold { background: var(--gold); color: var(--noir); }
.badge-new { background: var(--forest); color: white; }
.badge-sale { background: var(--burgundy); color: white; }
.badge-exclusive { background: var(--noir); color: var(--gold); border: 1px solid var(--gold); }

/* === LOADING === */
.loading-screen {
  position: fixed; inset: 0; z-index: 10000; background: #000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1s ease, visibility 1s ease;
}
.loading-screen.fade-out { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-screen canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.loading-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.loading-bg-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; filter: saturate(1.1) brightness(1.15); }
.loading-bg-overlay { position: absolute; inset: 0; background: transparent; }
.loading-card { position: relative; z-index: 2; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border: none; border-radius: 24px; padding: 56px 48px; max-width: 380px; width: 85%; box-shadow: none; animation: fadeInUp 0.8s var(--ease-out); }
.loading-content { text-align: center; }
.loading-monogram { position: relative; width: 100px; height: 100px; margin: 0 auto 40px; }
.loading-rings { position: absolute; inset: 0; }
.loading-ring { position: absolute; inset: 0; border: 1px solid transparent; border-top-color: var(--gold); border-radius: 50%; animation: spin 2.5s linear infinite; }
.loading-ring.delay { animation-delay: -0.6s; border-top-color: var(--gold-light); inset: 10px; }
.loading-ring.delay2 { animation-delay: -1.2s; border-top-color: rgba(200,169,101,0.2); inset: 20px; }
.loading-letter { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: var(--font-display); font-size: 32px; font-weight: 400; color: var(--gold); font-style: italic; }
.loading-brand { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--gold); letter-spacing: 0.3em; margin-bottom: 8px; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.loading-tagline { font-family: var(--font-body); color: rgba(255,255,255,0.5); font-size: 0.65rem; letter-spacing: 0.3em; margin-bottom: 40px; text-transform: uppercase; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.loading-progress { width: 160px; height: 1px; background: rgba(255,255,255,0.15); margin: 0 auto; overflow: hidden; }
.loading-progress-bar { height: 100%; width: 0; background: var(--gold); transition: width 0.3s ease; }
.loading-since { font-family: var(--font-display); font-style: italic; color: rgba(255,255,255,0.35); font-size: 0.75rem; margin-top: 24px; letter-spacing: 0.1em; text-shadow: 0 1px 6px rgba(0,0,0,0.4); }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* === AUTH === */
.auth-screen { position: fixed; inset: 0; z-index: 9000; background: rgba(0,0,0,0.7); backdrop-filter: blur(20px); display: flex; align-items: center; justify-content: center; animation: fadeIn 0.3s ease; }
.auth-close { position: absolute; top: 24px; right: 24px; font-size: 24px; color: white; z-index: 2; }
.auth-container { background: var(--cream); padding: 56px 48px; width: 90%; max-width: 420px; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-xl); animation: fadeInUp 0.5s var(--ease-out); }
.auth-header { text-align: center; margin-bottom: 40px; }
.auth-monogram { font-family: var(--font-display); font-size: 36px; font-weight: 400; font-style: italic; color: var(--gold); width: 64px; height: 64px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.auth-header h2 { font-size: 1.4rem; font-weight: 400; margin-bottom: 8px; }
.auth-subtitle { color: var(--text-secondary); font-size: 0.8rem; letter-spacing: 0.05em; }
.auth-form .form-group { margin-bottom: 20px; }
.auth-form label { display: block; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.auth-form .form-input { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--border); transition: border-color var(--transition); }
.auth-form .form-input:focus-within { border-color: var(--gold); }
.auth-form .form-input i { color: var(--text-muted); font-size: 16px; }
.auth-form .form-input input { flex: 1; border: none; outline: none; background: transparent; font-size: 0.9rem; color: var(--text-primary); }
.form-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.checkbox-label { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; cursor: pointer; }
.forgot-link { font-size: 0.8rem; color: var(--gold); }
.auth-divider { text-align: center; margin: 28px 0; position: relative; }
.auth-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border); }
.auth-divider span { position: relative; background: var(--cream); padding: 0 16px; font-size: 0.75rem; color: var(--text-muted); }
.social-buttons { display: flex; gap: 12px; justify-content: center; margin-bottom: 28px; }
.social-btn { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); font-size: 18px; transition: all var(--transition); }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.auth-switch { text-align: center; font-size: 0.8rem; color: var(--text-secondary); }
.auth-switch a { color: var(--gold); font-weight: 500; }

/* === SALE ANNOUNCEMENT BAR === */
.sale-announcement { position: fixed; top: 0; left: 0; right: 0; z-index: 1001; background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%); border-bottom: 1px solid rgba(200,169,101,0.2); padding: 8px 40px 8px 16px; display: flex; align-items: center; justify-content: center; }
.sale-announcement-inner { display: flex; align-items: center; gap: 10px; color: var(--gold); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; }
.sale-announcement-inner i { font-size: 14px; animation: sparkle 1.5s ease-in-out infinite; }
.sale-announcement-close { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; color: rgba(200,169,101,0.5); font-size: 16px; cursor: pointer; padding: 4px; }
.sale-announcement-close:hover { color: var(--gold); }
@keyframes sparkle { 0%,100% { opacity: 0.5; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.2); } }

/* === HEADER === */
.app-header { position: fixed; top: 36px; left: 0; right: 0; z-index: 1000; height: var(--header-h); display: flex; align-items: center; transition: all 0.5s ease; }
.app-header.scrolled { background: rgba(250,248,245,0.92); backdrop-filter: blur(24px) saturate(180%); border-bottom: 1px solid var(--border-light); }
[data-theme="dark"] .app-header.scrolled { background: rgba(13,13,13,0.92); }
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.header-menu-btn { display: block; font-size: 22px; padding: 8px; }
@media (min-width: 1024px) { .header-menu-btn { display: none; } }
.header-logo { text-align: center; flex: 1; }
@media (min-width: 1024px) { .header-logo { flex: 0; } }
.header-logo-text { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; }
.header-nav { display: none; }
@media (min-width: 1024px) {
  .header-nav { display: flex; align-items: center; gap: 36px; }
  .header-nav a { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; position: relative; padding: 4px 0; transition: color var(--transition); }
  .header-nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width var(--transition); }
  .header-nav a:hover::after, .header-nav a.active::after { width: 100%; }
  .header-nav a:hover { color: var(--gold); }
}
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-action-btn { position: relative; font-size: 18px; padding: 8px; transition: color var(--transition); }
.header-action-btn:hover { color: var(--gold); }
.header-cart-count { position: absolute; top: 0; right: -2px; width: 16px; height: 16px; background: var(--noir); color: var(--gold); font-size: 0.55rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-family: var(--font-data); }
[data-theme="dark"] .header-cart-count { background: var(--gold); color: var(--noir); }
.theme-icon-dark { display: none; }
[data-theme="dark"] .theme-icon-light { display: none; }
[data-theme="dark"] .theme-icon-dark { display: inline; }

/* === HERO === */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding-top: calc(var(--header-h) + 36px); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.3) 60%, rgba(10,10,10,0.1) 100%); }
.hero-content { position: relative; z-index: 2; padding: 80px 24px; max-width: 1400px; margin: 0 auto; width: 100%; }
.hero-eyebrow { font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 28px; animation: fadeInUp 0.8s var(--ease-out) 0.2s both; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.8rem, 7vw, 5.5rem); color: white; line-height: 1.05; margin-bottom: 24px; font-weight: 400; animation: fadeInUp 0.8s var(--ease-out) 0.4s both; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle { color: rgba(255,255,255,0.6); font-size: clamp(0.85rem, 1.5vw, 1rem); max-width: 480px; margin-bottom: 40px; line-height: 1.8; font-weight: 300; letter-spacing: 0.02em; animation: fadeInUp 0.8s var(--ease-out) 0.6s both; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.8s var(--ease-out) 0.8s both; }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero-scroll span { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: float 2s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* === MARQUEE === */
.marquee-bar { background: var(--noir); color: var(--gold); padding: 14px 0; overflow: hidden; white-space: nowrap; border-bottom: 1px solid rgba(200,169,101,0.15); }
.marquee-track { display: flex; animation: marqueeScroll 30s linear infinite; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 400; }
.marquee-track span { padding: 0 24px; }
.marquee-dot { font-size: 0.5rem; opacity: 0.4; }

/* === PRODUCT CARDS === */
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.product-card { background: transparent; cursor: pointer; position: relative; transition: all var(--transition); }
.product-card:hover { transform: translateY(-6px); }
.product-card-img { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--warm-gray); margin-bottom: 16px; }
.section-dark .product-card-img { background: #1a1a1a; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-badge { position: absolute; top: 12px; left: 12px; z-index: 2; }
.product-card-wishlist { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all var(--transition); z-index: 2; opacity: 0; }
.product-card:hover .product-card-wishlist { opacity: 1; }
.product-card-wishlist:hover, .product-card-wishlist.active { opacity: 1; color: var(--burgundy); }
.product-card-quick { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px; background: rgba(10,10,10,0.85); backdrop-filter: blur(8px); color: white; text-align: center; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; transform: translateY(100%); transition: transform var(--transition); }
.product-card:hover .product-card-quick { transform: translateY(0); }
.product-card-info { padding: 0 4px; }
.product-card-brand { font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.product-card-name { font-family: var(--font-display); font-size: 0.9rem; font-weight: 400; margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card-price { display: flex; align-items: baseline; gap: 8px; margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--border); }
.product-card-price .current { font-family: var(--font-data); font-size: 1rem; font-weight: 600; color: var(--burgundy, #8B2252); letter-spacing: 0.02em; }
.product-card-price .original { font-family: var(--font-data); font-size: 0.75rem; color: var(--text-muted); text-decoration: line-through; }
.product-card-price .member-tag { font-size: 0.6rem; color: var(--gold); border: 1px solid var(--gold); padding: 1px 5px; border-radius: 2px; letter-spacing: 0.08em; text-transform: uppercase; margin-left: auto; }

/* === CATEGORIES === */
.categories-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .categories-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.category-card { position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.75) 0%, transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.category-card-name { font-family: var(--font-display); color: white; font-size: 1.1rem; font-weight: 400; margin-bottom: 4px; }
.category-card-count { color: rgba(255,255,255,0.5); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* === EDITORIAL BANNER === */
.editorial-banner { position: relative; min-height: 500px; display: flex; align-items: center; overflow: hidden; }
.editorial-banner-bg { position: absolute; inset: 0; }
.editorial-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.editorial-banner-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.55); }
.editorial-banner-content { position: relative; z-index: 2; padding: 80px 48px; max-width: 600px; color: white; }
.editorial-eyebrow { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; }
.editorial-banner-content h2 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 400; margin-bottom: 16px; line-height: 1.1; }
.editorial-banner-content h2 em { font-style: italic; color: var(--gold-light); }
.editorial-banner-content p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 32px; line-height: 1.7; font-weight: 300; }

/* === BRAND ZONE === */
.brands-scroll { display: flex; gap: 20px; overflow-x: auto; padding: 20px 0; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.brands-scroll::-webkit-scrollbar { display: none; }
.brand-card { flex: 0 0 200px; scroll-snap-align: start; padding: 36px 24px; background: var(--white); border: 1px solid var(--border-light); text-align: center; transition: all var(--transition); }
.brand-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.brand-card-icon { font-size: 28px; color: var(--gold); margin-bottom: 16px; }
.brand-card-name { font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 4px; font-weight: 400; }
.brand-card-desc { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* === AI SECTION === */
.ai-showcase { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
@media (min-width: 768px) { .ai-showcase { grid-template-columns: 1fr 1fr; } }
.ai-showcase-text p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.8; margin-bottom: 28px; font-weight: 300; }
.ai-features-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.ai-feat { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--text-secondary); }
.ai-feat i { color: var(--gold); font-size: 18px; }
.ai-phone-mock { background: var(--noir); border-radius: 24px; padding: 24px; max-width: 320px; margin: 0 auto; border: 1px solid rgba(200,169,101,0.2); }
.ai-phone-header { text-align: center; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.75rem; color: var(--gold); letter-spacing: 0.1em; }
.ai-phone-msg { padding: 12px 16px; border-radius: 12px; margin-bottom: 10px; font-size: 0.8rem; line-height: 1.5; }
.ai-phone-assistant { background: rgba(200,169,101,0.1); color: rgba(255,255,255,0.8); }
.ai-phone-user { background: var(--gold); color: var(--noir); margin-left: 40px; font-weight: 500; }
.section-ai { background: var(--warm-gray); }

.ai-modules { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
@media (max-width: 640px) { .ai-modules { grid-template-columns: repeat(2, 1fr); } }
.ai-module { padding: 28px 20px; background: var(--white); border: 1px solid var(--border-light); text-align: center; transition: all var(--transition); cursor: pointer; }
.ai-module:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ai-module-icon { font-size: 24px; color: var(--gold); margin-bottom: 12px; }
.ai-module-name { font-family: var(--font-display); font-size: 0.9rem; font-weight: 400; }

.ai-chat-container { max-width: 680px; margin: 0 auto; background: var(--white); border: 1px solid var(--border-light); overflow: hidden; }
.ai-chat-header { padding: 20px 24px; border-bottom: 1px solid var(--border-light); display: flex; align-items: center; gap: 12px; }
.ai-chat-avatar { width: 40px; height: 40px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--gold); }
.ai-chat-header-info h4 { font-size: 0.85rem; font-family: var(--font-body); font-weight: 600; }
.ai-chat-header-info span { font-size: 0.7rem; color: var(--forest); }
.ai-chat-messages { padding: 24px; min-height: 280px; max-height: 400px; overflow-y: auto; }
.ai-message { display: flex; gap: 12px; margin-bottom: 20px; animation: fadeInUp 0.3s ease; }
.ai-message.user { flex-direction: row-reverse; }
.ai-message-avatar { width: 32px; height: 32px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.ai-message.assistant .ai-message-avatar { border: 1px solid var(--gold); color: var(--gold); border-radius: 50%; }
.ai-message.user .ai-message-avatar { background: var(--noir); color: var(--gold); border-radius: 50%; }
.ai-message-bubble { max-width: 80%; padding: 14px 18px; font-size: 0.85rem; line-height: 1.7; }
.ai-message.assistant .ai-message-bubble { background: var(--warm-gray); }
.ai-message.user .ai-message-bubble { background: var(--noir); color: var(--cream); }
[data-theme="dark"] .ai-message.user .ai-message-bubble { background: var(--gold); color: var(--noir); }
.ai-chat-input { display: flex; align-items: center; gap: 12px; padding: 16px 24px; border-top: 1px solid var(--border-light); }
.ai-chat-input input { flex: 1; border: none; outline: none; background: transparent; font-size: 0.85rem; color: var(--text-primary); }
.ai-chat-input button { width: 40px; height: 40px; background: var(--gold); color: var(--noir); font-size: 16px; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.ai-chat-input button:hover { background: var(--gold-dark); }

/* === CART === */
.cart-section { padding-top: calc(var(--header-h) + 96px); min-height: 100vh; padding-bottom: 80px; }
.cart-empty { text-align: center; padding: 80px 20px; }
.cart-empty i { font-size: 48px; color: var(--border); margin-bottom: 24px; }
.cart-empty h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; margin-bottom: 8px; }
.cart-empty p { color: var(--text-muted); margin-bottom: 32px; font-size: 0.9rem; }
.cart-items { max-width: 760px; margin: 0 auto; }
.cart-item { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--border-light); }
.cart-item-img { width: 100px; height: 130px; overflow: hidden; flex-shrink: 0; background: var(--warm-gray); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-brand { font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.cart-item-name { font-family: var(--font-display); font-weight: 400; margin: 4px 0 10px; }
.cart-item-price { font-family: var(--font-data); font-weight: 500; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.cart-item-price .sale { color: var(--burgundy, #8B2252); font-weight: 600; }
.cart-item-price .original { font-size: 0.75rem; color: var(--text-muted); text-decoration: line-through; }
.cart-item-qty { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.cart-item-qty button { width: 28px; height: 28px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all var(--transition); }
.cart-item-qty button:hover { border-color: var(--gold); color: var(--gold); }
.cart-item-qty span { font-family: var(--font-data); font-weight: 500; min-width: 20px; text-align: center; }
.cart-item-remove { color: var(--text-muted); font-size: 18px; align-self: flex-start; transition: color var(--transition); }
.cart-item-remove:hover { color: var(--burgundy); }
.cart-summary { max-width: 760px; margin: 40px auto 0; padding: 36px; border: 1px solid var(--border-light); }
.cart-summary-row { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 0.85rem; }
.cart-summary-row.total { font-size: 1rem; font-weight: 600; padding-top: 20px; border-top: 1px solid var(--border-light); margin-top: 20px; }
.cart-summary-row.total .amount { font-family: var(--font-data); color: var(--gold); }

/* === PROFILE === */
.profile-section { padding-top: calc(var(--header-h) + 96px); min-height: 100vh; padding-bottom: 80px; }
.profile-header-card { background: var(--noir); padding: 48px; color: white; margin-bottom: 40px; position: relative; overflow: hidden; }
.profile-header-card::before { content: ''; position: absolute; top: -40%; right: -15%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(200,169,101,0.1) 0%, transparent 70%); border-radius: 50%; }
.profile-avatar { width: 64px; height: 64px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 24px; font-style: italic; color: var(--gold); margin-bottom: 20px; }
.profile-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; margin-bottom: 8px; }
.profile-tier { display: inline-flex; align-items: center; gap: 6px; padding: 4px 14px; border: 1px solid rgba(200,169,101,0.3); font-size: 0.65rem; color: var(--gold-light); letter-spacing: 0.08em; text-transform: uppercase; }
.profile-stats { display: flex; gap: 40px; margin-top: 28px; }
.profile-stat-value { font-family: var(--font-data); font-size: 1.3rem; font-weight: 500; color: var(--gold-light); }
.profile-stat-label { font-size: 0.65rem; color: rgba(255,255,255,0.5); margin-top: 4px; letter-spacing: 0.08em; text-transform: uppercase; }
.profile-subtitle { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; margin-bottom: 24px; }

.membership-tiers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 48px; }
@media (min-width: 768px) { .membership-tiers { grid-template-columns: repeat(4, 1fr); } }
.tier-card { padding: 28px 20px; background: var(--white); text-align: center; border: 1px solid var(--border-light); transition: all var(--transition); }
.tier-card.active { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.tier-card-icon { font-size: 24px; margin-bottom: 12px; }
.tier-card-name { font-family: var(--font-display); font-size: 1rem; font-weight: 400; margin-bottom: 4px; }
.tier-card-desc { font-size: 0.7rem; color: var(--text-muted); }

.profile-menu { max-width: 560px; }
.profile-menu-item { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border-light); transition: all var(--transition); cursor: pointer; }
.profile-menu-item:hover { padding-left: 8px; }
.profile-menu-item i { font-size: 18px; color: var(--gold); width: 24px; text-align: center; }
.profile-menu-item span { flex: 1; font-size: 0.85rem; }
.profile-menu-item .arrow { color: var(--text-muted); font-size: 16px; }

/* === LIVE & COMMUNITY === */
.live-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .live-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .live-grid { grid-template-columns: repeat(3, 1fr); } }
.live-card { overflow: hidden; background: var(--white); border: 1px solid var(--border-light); transition: all var(--transition); }
.section-dark .live-card { background: var(--noir-soft); border-color: rgba(255,255,255,0.08); }
.live-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.live-card-preview { position: relative; aspect-ratio: 16/9; background: var(--noir); }
.live-card-preview img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.live-badge { position: absolute; top: 12px; left: 12px; padding: 4px 10px; background: #E53E3E; color: white; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; display: flex; align-items: center; gap: 4px; }
.live-badge::before { content: ''; width: 5px; height: 5px; background: white; border-radius: 50%; animation: pulse 1.5s infinite; }
.live-viewers { position: absolute; top: 12px; right: 12px; padding: 4px 10px; background: rgba(0,0,0,0.6); color: white; font-size: 0.65rem; display: flex; align-items: center; gap: 4px; font-family: var(--font-data); }
.live-card-info { padding: 16px; }
.live-card-title { font-family: var(--font-display); font-weight: 400; font-size: 0.95rem; margin-bottom: 8px; }
.live-card-host { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; color: var(--text-secondary); }
.live-card-host-avatar { width: 24px; height: 24px; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--noir); border-radius: 50%; }

.community-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .community-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .community-grid { grid-template-columns: repeat(4, 1fr); } }
.community-card { overflow: hidden; background: var(--white); border: 1px solid var(--border-light); transition: all var(--transition); }
.community-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.community-card-img { aspect-ratio: 1; overflow: hidden; background: var(--warm-gray); }
.community-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.community-card:hover .community-card-img img { transform: scale(1.04); }
.community-card-info { padding: 14px; }
.community-card-text { font-size: 0.8rem; line-height: 1.6; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.community-card-actions { display: flex; gap: 16px; font-size: 0.7rem; color: var(--text-muted); }
.community-card-actions span { display: flex; align-items: center; gap: 4px; }

/* === SUPPLIER === */
.supplier-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 768px) { .supplier-features { grid-template-columns: repeat(3, 1fr); } }
.supplier-feature { padding: 36px 24px; background: var(--white); border: 1px solid var(--border-light); text-align: center; transition: all var(--transition); }
.supplier-feature:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.supplier-feature-icon { font-size: 28px; color: var(--gold); margin-bottom: 16px; }
.supplier-feature h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 400; margin-bottom: 8px; }
.supplier-feature p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.7; }

/* === ADMIN === */
.admin-section { padding-top: calc(var(--header-h) + 96px); min-height: 100vh; padding-bottom: 80px; }
.admin-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 48px; }
@media (min-width: 768px) { .admin-stats { grid-template-columns: repeat(4, 1fr); } }
.admin-stat { padding: 28px; background: var(--white); border: 1px solid var(--border-light); }
.admin-stat-icon { font-size: 22px; color: var(--gold); margin-bottom: 14px; }
.admin-stat-value { font-family: var(--font-data); font-size: 1.4rem; font-weight: 500; margin-bottom: 4px; }
.admin-stat-label { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; }
.admin-stat-change { font-size: 0.7rem; color: var(--forest); margin-top: 8px; }
.admin-table-wrap { background: var(--white); border: 1px solid var(--border-light); overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: 16px 20px; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); border-bottom: 1px solid var(--border-light); font-weight: 600; }
.admin-table td { padding: 16px 20px; font-size: 0.8rem; border-bottom: 1px solid var(--border-light); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--warm-gray); }
.admin-status { padding: 4px 10px; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.admin-status.pending { background: #FFF3CD; color: #856404; }
.admin-status.completed { background: #D4EDDA; color: #155724; }
.admin-status.shipped { background: #CCE5FF; color: #004085; }

/* === SEARCH === */
.search-overlay { position: fixed; inset: 0; z-index: 8000; background: rgba(0,0,0,0.75); backdrop-filter: blur(20px); animation: fadeIn 0.3s ease; }
.search-bar { display: flex; align-items: center; gap: 16px; padding: 20px; max-width: 680px; margin: 80px auto 0; background: var(--cream); box-shadow: var(--shadow-xl); }
.search-back, .search-close-btn { font-size: 20px; padding: 8px; }
.search-input-wrap { flex: 1; display: flex; align-items: center; gap: 12px; }
.search-input-wrap i { color: var(--text-muted); }
.search-input-wrap input { flex: 1; border: none; outline: none; background: transparent; font-size: 0.95rem; color: var(--text-primary); }
.search-body { max-width: 680px; margin: 24px auto; padding: 0 24px; }
.hot-search h4 { color: rgba(255,255,255,0.5); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 16px; font-family: var(--font-body); font-weight: 500; }
.hot-search-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hot-search-tag { padding: 8px 18px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); font-size: 0.7rem; letter-spacing: 0.05em; transition: all var(--transition); }
.hot-search-tag:hover { background: var(--gold); color: var(--noir); border-color: var(--gold); }
.search-results { margin-top: 24px; }
.search-result-item { display: flex; gap: 16px; padding: 16px; background: rgba(255,255,255,0.05); margin-bottom: 8px; cursor: pointer; transition: background var(--transition); }
.search-result-item:hover { background: rgba(255,255,255,0.1); }
.search-result-img { width: 60px; height: 80px; overflow: hidden; background: rgba(255,255,255,0.1); }
.search-result-img img { width: 100%; height: 100%; object-fit: cover; }
.search-result-info { flex: 1; }
.search-result-name { color: white; font-family: var(--font-display); font-weight: 400; font-size: 0.9rem; margin-bottom: 4px; }
.search-result-price { color: var(--gold); font-family: var(--font-data); }

/* === STORES === */
.stores-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .stores-grid { grid-template-columns: repeat(3, 1fr); } }
.store-card { padding: 28px; background: var(--white); border: 1px solid var(--border-light); transition: all var(--transition); }
.store-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.store-card-city { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; margin-bottom: 8px; }
.store-card-address { font-size: 0.8rem; color: var(--text-muted); line-height: 1.7; }
.store-card-hours { font-size: 0.7rem; color: var(--text-secondary); margin-top: 12px; display: flex; align-items: center; gap: 6px; }

/* === NEWS === */
.news-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }
.news-card { overflow: hidden; background: var(--white); border: 1px solid var(--border-light); transition: all var(--transition); }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--noir); display: flex; align-items: center; justify-content: center; }
.news-card-img i { font-size: 40px; color: var(--gold); opacity: 0.2; }
.news-card-info { padding: 24px; }
.news-card-date { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.news-card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 400; margin-bottom: 10px; line-height: 1.4; }
.news-card-excerpt { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.7; }

/* === PRODUCT DETAIL === */
.product-detail { padding-top: calc(var(--header-h) + 76px); padding-bottom: 80px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) { .product-detail-grid { grid-template-columns: 1fr 1fr; } }
.product-detail-main-img { aspect-ratio: 3/4; overflow: hidden; background: var(--warm-gray); }
.product-detail-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info h1 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 400; margin-bottom: 8px; }
.product-detail-brand { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 20px; }
.product-detail-price { font-family: var(--font-data); font-size: 1.4rem; font-weight: 500; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.product-detail-price .sale-price { color: var(--burgundy, #8B2252); font-size: 1.5rem; font-weight: 600; }
.product-detail-price .original-price { font-size: 0.95rem; color: var(--text-muted); text-decoration: line-through; }
.product-detail-price .discount-tag { font-size: 0.65rem; font-weight: 600; color: #fff; background: var(--burgundy, #8B2252); padding: 3px 8px; border-radius: 3px; letter-spacing: 0.05em; }
.product-detail-member-price { font-size: 0.8rem; color: var(--gold); margin-bottom: 28px; display: flex; align-items: center; gap: 6px; }
.product-detail-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.9; margin-bottom: 36px; font-weight: 300; }
.product-detail-meta { margin-bottom: 36px; }
.product-detail-meta-item { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border-light); font-size: 0.8rem; }
.product-detail-meta-item strong { min-width: 90px; font-weight: 500; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; }
.product-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* === FLASH SALE === */
.section-flash { background: linear-gradient(135deg, #1a0a0a 0%, var(--noir) 100%); color: white; }
.flash-timer { display: flex; justify-content: center; align-items: center; gap: 16px; margin-bottom: 48px; }
.flash-timer-value { font-family: var(--font-data); font-size: 2rem; font-weight: 500; background: rgba(255,255,255,0.06); border: 1px solid rgba(200,169,101,0.2); padding: 12px 20px; min-width: 70px; text-align: center; color: var(--gold-light); }
.flash-timer-label { font-size: 0.55rem; color: rgba(255,255,255,0.4); margin-top: 8px; text-transform: uppercase; letter-spacing: 0.1em; text-align: center; }
.flash-sep { font-family: var(--font-data); font-size: 1.5rem; color: var(--gold); opacity: 0.5; }

/* === NEWSLETTER === */
.newsletter-section { padding: 100px 0; background: var(--warm-gray); }
.newsletter-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.newsletter-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 400; margin-bottom: 16px; }
.newsletter-inner > p { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 32px; line-height: 1.7; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input { flex: 1; padding: 14px 20px; border: 1px solid var(--border); background: var(--white); font-size: 0.85rem; outline: none; }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form .btn { border-radius: 0; }

/* === FOOTER === */
.site-footer { background: var(--noir); color: rgba(255,255,255,0.6); padding: 80px 0 40px; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 48px; margin-bottom: 60px; }
@media (min-width: 768px) { .footer-top { grid-template-columns: 1.5fr 2fr; } }
.footer-monogram { font-family: var(--font-display); font-size: 28px; font-style: italic; color: var(--gold); width: 56px; height: 56px; border: 1px solid rgba(200,169,101,0.3); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.footer-brand h3 { font-family: var(--font-display); color: var(--gold); font-size: 1.2rem; font-weight: 400; letter-spacing: 0.2em; margin-bottom: 16px; }
.footer-brand p { font-size: 0.8rem; line-height: 1.8; max-width: 300px; font-weight: 300; }
.footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 { color: white; font-size: 0.65rem; font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 20px; }
.footer-col a { display: block; font-size: 0.8rem; padding: 5px 0; transition: color var(--transition); font-weight: 300; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; flex-direction: column; gap: 20px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.7rem; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-social { display: flex; gap: 20px; }
.footer-social a { font-size: 18px; transition: color var(--transition); }
.footer-social a:hover { color: var(--gold); }

/* === BOTTOM NAV === */
.bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; height: var(--bottom-nav-h); background: var(--white); border-top: 1px solid var(--border-light); display: flex; align-items: center; justify-content: space-around; padding-bottom: var(--safe-bottom); backdrop-filter: blur(20px); }
@media (min-width: 1024px) { .bottom-nav { display: none; } }
.bottom-nav-item { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 8px 16px; font-size: 18px; color: var(--text-muted); transition: color var(--transition); position: relative; }
.bottom-nav-item span { font-size: 0.55rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.bottom-nav-item.active { color: var(--gold); }
.bottom-nav-item.active::before { content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); width: 16px; height: 2px; background: var(--gold); }

/* === PAGE SECTIONS === */
.page-section { display: none; }
.page-section.active { display: block; animation: fadeIn 0.4s ease; }

/* === SCROLL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === TOAST === */
.toast-container { position: fixed; top: 80px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
.toast { padding: 14px 24px; background: var(--noir); color: var(--cream); font-size: 0.8rem; animation: fadeInUp 0.3s ease; box-shadow: var(--shadow-lg); max-width: 320px; }
.toast.success { border-left: 3px solid var(--forest); }
.toast.error { border-left: 3px solid var(--burgundy); }
.toast.info { border-left: 3px solid var(--gold); }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* === SELECTION === */
::selection { background: var(--gold); color: var(--noir); }

/* === RESPONSIVE === */
@media (max-width: 767px) {
  .hero { min-height: 90vh; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-subtitle br { display: none; }
  .editorial-banner-content { padding: 60px 24px; }
  .profile-header-card { padding: 32px 24px; }
  .profile-stats { gap: 24px; }
  .auth-container { padding: 40px 28px; }
  .newsletter-form { flex-direction: column; gap: 12px; }
  .newsletter-form input { width: 100%; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  body { padding-bottom: 0; }
}
