/* ==========================================================================
   BURSA ALTA PERFUMERÍA - LUXURY DESIGN SYSTEM & STYLES (2026 EDITION)
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #0B0C10;
  --bg-secondary: #12141C;
  --bg-card: rgba(22, 25, 36, 0.75);
  --bg-card-hover: rgba(30, 35, 50, 0.85);
  --bg-glass: rgba(18, 20, 28, 0.7);
  
  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #AA7C11;
  --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
  --gold-glow: rgba(212, 175, 55, 0.25);
  
  --text-primary: #FFFFFF;
  --text-secondary: #C5A880;
  --text-muted: #8E94A2;
  --text-dark: #0B0C10;
  
  --border-gold: rgba(212, 175, 55, 0.3);
  --border-subtle: rgba(255, 255, 255, 0.08);
  
  --accent-emerald: #0A3C2F;
  --accent-rose: #C88D94;

  /* Typography */
  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Transitions & Shadows */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.15);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.5);
  --shadow-drawer: -10px 0 30px rgba(0, 0, 0, 0.8);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Utilities */
.heading-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-subtitle {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Buttons */
.btn-gold {
  background: var(--gold-gradient);
  color: #000;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 1rem 2.2rem;
  border-radius: 2px;
  transition: var(--transition-normal);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.5s;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-outline {
  border: 1px solid var(--border-gold);
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 1rem 2.2rem;
  border-radius: 2px;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* Header & Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #090A0D, #1A1813, #090A0D);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  font-size: 0.8rem;
  padding: 0.5rem 0;
  text-align: center;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.announcement-bar span {
  color: var(--gold-primary);
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 12, 16, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-img {
  height: 50px;
  width: auto;
  border-radius: 4px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  transition: var(--transition-fast);
}

.brand-logo-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 4px;
  font-weight: 700;
  color: var(--text-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.icon-btn {
  color: var(--text-primary);
  font-size: 1.2rem;
  position: relative;
  padding: 0.5rem;
  transition: var(--transition-fast);
}

.icon-btn:hover {
  color: var(--gold-primary);
  transform: translateY(-2px);
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold-primary);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--text-primary);
}

/* HERO SECTION (Sistema 1 - Cerebro Reptiliano) */
.hero-section {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  padding: 4rem 0;
  overflow: hidden;
  background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 30px;
  font-size: 0.8rem;
  color: var(--gold-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.stat-item h4 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-primary);
  line-height: 1;
}

.stat-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.3rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(212,175,55,0.4), transparent, rgba(212,175,55,0.2));
  box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 50px rgba(212, 175, 55, 0.15);
}

.hero-img-main {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 8px;
  filter: brightness(0.95) contrast(1.05);
  transition: var(--transition-slow);
}

.hero-img-wrap:hover .hero-img-main {
  transform: scale(1.02);
}

.hero-tag-floating {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(18, 20, 28, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-tag-floating i {
  font-size: 2rem;
  color: var(--gold-primary);
}

/* MARQUEE AUTHORITIES (Muralla Digital) */
.press-marquee {
  background: var(--bg-secondary);
  padding: 1.8rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.marquee-title {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.press-logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  opacity: 0.75;
}

.press-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #DDD;
  transition: var(--transition-fast);
}

.press-logo:hover {
  color: var(--gold-primary);
  opacity: 1;
}

/* DYNAMIC SCARCITY & TRUST BAR */
.scarcity-bar {
  background: linear-gradient(90deg, #1A120B, #2C2010, #1A120B);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 1.25rem 2rem;
  margin: 3rem auto 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.scarcity-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.scarcity-pulse {
  width: 12px;
  height: 12px;
  background: #E74C3C;
  border-radius: 50%;
  box-shadow: 0 0 10px #E74C3C;
  animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
  70% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

.scarcity-text {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.scarcity-text strong {
  color: var(--gold-light);
}

.scarcity-progress-bar {
  width: 200px;
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.scarcity-progress-fill {
  width: 82%;
  height: 100%;
  background: var(--gold-gradient);
}

/* PRODUCT CATALOG SECTION */
.catalog-section {
  padding: 5rem 0;
}

.catalog-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.catalog-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  border: 1px solid var(--border-subtle);
  background: rgba(255,255,255,0.02);
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card), 0 0 25px rgba(212, 175, 55, 0.15);
  background: var(--bg-card-hover);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  background: rgba(11, 12, 16, 0.85);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  backdrop-filter: blur(5px);
}

.product-img-wrap {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #000;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.product-overlay-actions {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  display: flex;
  gap: 0.5rem;
  transition: var(--transition-normal);
}

.product-card:hover .product-overlay-actions {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.quick-view-btn {
  background: rgba(11, 12, 16, 0.9);
  color: var(--gold-primary);
  border: 1px solid var(--border-gold);
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transition: var(--transition-fast);
}

.quick-view-btn:hover {
  background: var(--gold-primary);
  color: #000;
}

.product-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-notes {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.product-rating span {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.product-price {
  display: flex;
  flex-direction: column;
}

.price-current {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.price-old {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.add-cart-btn {
  background: var(--gold-gradient);
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.add-cart-btn:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* INTERACTIVE OLFACTORY FINDER / AI QUIZ (Innovación 2026) */
.quiz-section {
  padding: 5rem 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, var(--bg-secondary) 70%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.quiz-card {
  background: rgba(18, 20, 28, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.quiz-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.quiz-option-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.quiz-option-btn i {
  font-size: 2rem;
  color: var(--gold-primary);
}

.quiz-option-btn:hover, .quiz-option-btn.selected {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-3px);
}

/* OLFACTORY PYRAMID VISUALIZER */
.pyramid-section {
  padding: 5rem 0;
}

.pyramid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pyramid-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pyramid-layer {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1.5rem;
  transition: var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.pyramid-layer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition-fast);
}

.pyramid-layer:hover, .pyramid-layer.active {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateX(10px);
}

.pyramid-layer:hover::before, .pyramid-layer.active::before {
  opacity: 1;
}

.layer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.layer-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
}

.layer-duration {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* MURALLA DIGITAL & COMPARISON TABLE (Sección de Autoridad) */
.authority-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 1.5rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold-light);
}

.comparison-table td.highlight-col {
  background: rgba(212, 175, 55, 0.08);
  font-weight: 600;
  color: var(--gold-primary);
}

/* REVIEWS & SOCIAL PROOF (Prueba Social) */
.reviews-section {
  padding: 5rem 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reviewer-info h4 {
  font-weight: 600;
  font-size: 1rem;
}

.verified-badge {
  font-size: 0.75rem;
  color: #2ECC71;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.review-stars {
  color: var(--gold-primary);
}

.review-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

/* MODALS & SHOPPING DRAWER */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0; right: -480px;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: #0D0F14;
  border-left: 1px solid var(--border-gold);
  box-shadow: var(--shadow-drawer);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.cart-drawer.active {
  right: 0;
}

.cart-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold-light);
}

.close-btn {
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

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

.cart-body {
  padding: 1.5rem 2rem;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle);
  padding: 0.75rem;
  border-radius: 6px;
}

.cart-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.cart-item-price {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cart-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.4);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-family: var(--font-serif);
  margin-bottom: 1.5rem;
}

.cart-total-price {
  color: var(--gold-primary);
  font-weight: 700;
}

/* QUICK VIEW MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  z-index: 2500;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.quick-view-modal {
  background: #0E1017;
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-card);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.modal-img-wrap {
  height: 100%;
  min-height: 400px;
}

.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px 0 0 12px;
}

.modal-details {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TOAST NOTIFICATION */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(18, 20, 28, 0.95);
  border: 1px solid var(--gold-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.3);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-normal);
}

.toast-notification.active {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  color: var(--gold-primary);
  font-size: 1.5rem;
}

/* FOOTER */
.site-footer {
  background: #060709;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  color: #fff;
  flex-grow: 1;
  font-size: 0.85rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .hero-grid, .pyramid-grid, .modal-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
}

@media (max-width: 576px) {
  .scarcity-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-ctas {
    flex-direction: column;
  }
  
  .btn-gold, .btn-outline {
    width: 100%;
    justify-content: center;
  }
}
