/* S'AROMA - LUXURY HIGH-CONVERTING DESIGN SYSTEM */
:root {
  --primary-gold: #D4AF37;
  --primary-gold-light: #F7E7B4;
  --primary-gold-dark: #A68019;
  --gold-glow: rgba(212, 175, 55, 0.35);
  
  --gold-grad: linear-gradient(135deg, #FFF6D1 0%, #D4AF37 50%, #9E7815 100%);
  --gold-grad-rev: linear-gradient(135deg, #9E7815 0%, #D4AF37 50%, #FFF6D1 100%);
  --gold-grad-subtle: linear-gradient(145deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.02) 100%);
  
  --bg-main: #0B0B0D;
  --bg-surface: #141418;
  --bg-surface-elevated: #1C1C22;
  --bg-surface-hover: #26262F;

  --text-pure: #FFFFFF;
  --text-primary: #F4F4F6;
  --text-secondary: #B0B0BC;
  --text-muted: #747482;
  --text-gold: #D4AF37;

  --border-gold: rgba(212, 175, 55, 0.3);
  --border-subtle: rgba(255, 255, 255, 0.08);

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.25);
  --shadow-gold-lg: 0 15px 45px rgba(212, 175, 55, 0.35);

  --font-heading: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-pure);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
p { color: var(--text-secondary); font-size: 1rem; }

.serif-text { font-family: var(--font-serif); }
.text-gold { color: var(--primary-gold); }
.text-gradient {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  user-select: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-grad);
  color: #111111;
  box-shadow: var(--shadow-gold);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  background: var(--gold-grad-rev);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-pure);
  border-color: var(--border-gold);
  backdrop-filter: blur(10px);
}

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

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.badge-gold {
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary-gold-light);
  border: 1px solid var(--border-gold);
}

.badge-green {
  background: rgba(37, 211, 102, 0.15);
  color: #4EFA8B;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.announcement-bar {
  background: #08080A;
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  text-align: center;
  color: var(--text-secondary);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 13, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

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

.brand-logo img {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  box-shadow: 0 0 15px var(--gold-glow);
}

.brand-name-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-pure);
}

.brand-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-gold);
  font-weight: 600;
}

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

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.cart-btn-trigger {
  position: relative;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-pure);
  cursor: pointer;
  transition: var(--transition);
}

.cart-btn-trigger:hover {
  background: var(--primary-gold);
  color: #111;
  transform: scale(1.05);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #E63946;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-main);
}

.admin-nav-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

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

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-pure);
  font-size: 1.5rem;
  cursor: pointer;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
  background: radial-gradient(circle at 80% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
              var(--bg-main);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-title {
  font-size: clamp(2.4rem, 5.2vw, 3.9rem);
  font-weight: 800;
  line-height: 1.12;
}

.hero-title span.glow-gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.hero-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  background: var(--gold-grad-subtle);
  border: 1px solid var(--border-gold);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-md);
  width: fit-content;
}

.hero-price-tag .price-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hero-price-tag .price-amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-gold-light);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-feat-item .feat-icon {
  color: var(--primary-gold);
  font-size: 1.2rem;
}

.hero-feat-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

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

.hero-visual-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-gold-lg);
}

.hero-visual-img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.floating-pill {
  position: absolute;
  background: rgba(18, 18, 22, 0.95);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-pure);
}

.pill-top-right {
  top: -15px;
  right: -15px;
}

.pill-bottom-left {
  bottom: -15px;
  left: -15px;
}

/* VALUE PROPOSITION & BENEFITS */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-darker {
  background: #08080A;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.section-header .section-subtitle {
  color: var(--primary-gold);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.section-header .section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.benefit-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-grad);
  opacity: 0;
  transition: var(--transition);
}

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

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--gold-grad-subtle);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.4rem;
  color: var(--primary-gold);
}

.benefit-title {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.benefit-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CATALOG SECTION */
.catalog-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-grad);
  color: #111;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

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

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

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

.product-media {
  position: relative;
  background: #08080A;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 320px;
}

.product-media img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

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

.product-badge-float {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.product-actions-float {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

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

.quick-view-btn {
  background: rgba(18, 18, 22, 0.9);
  border: 1px solid var(--border-gold);
  color: var(--text-pure);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

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

.product-info {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0.8rem;
}

.product-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-gold);
}

.product-name {
  font-size: 1.35rem;
  font-weight: 700;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-notes-preview {
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--primary-gold);
  padding: 0.5rem 0.8rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

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

.current-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-pure);
}

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

.volume-tag {
  font-size: 0.8rem;
  color: var(--primary-gold-light);
  font-weight: 600;
}

.product-buttons {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

/* FRAGRANCE FINDER QUIZ */
.quiz-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-gold-lg);
  position: relative;
  overflow: hidden;
}

.quiz-steps-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.quiz-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.quiz-step-dot.active {
  background: var(--gold-grad);
  color: #111;
  border-color: transparent;
  box-shadow: 0 0 15px var(--gold-glow);
}

.quiz-step-dot.completed {
  background: rgba(37, 211, 102, 0.2);
  color: #25D366;
  border-color: #25D366;
}

.quiz-step-line {
  width: 50px;
  height: 2px;
  background: var(--border-subtle);
}

.quiz-step-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

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

.quiz-question-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

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

.quiz-option-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.4rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.quiz-option-card:hover, .quiz-option-card.selected {
  background: var(--bg-surface-hover);
  border-color: var(--primary-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.quiz-option-icon {
  font-size: 2.2rem;
}

.quiz-option-label {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-pure);
}

.quiz-option-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.quiz-result-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: center;
}

/* STORYTELLING & BRAND IDENTITY */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.story-lead {
  font-size: 1.2rem;
  color: var(--primary-gold-light);
  font-family: var(--font-serif);
  font-style: italic;
  line-height: 1.6;
}

.story-quote {
  background: var(--gold-grad-subtle);
  border-left: 3px solid var(--primary-gold);
  padding: 1rem 1.4rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin: 0.5rem 0;
}

.mv-tabs-wrapper {
  margin-top: 1rem;
}

.mv-tabs-nav {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.8rem;
  margin-bottom: 1.2rem;
}

.mv-tab-btn {
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mv-tab-btn.active {
  color: var(--primary-gold);
  background: rgba(212, 175, 55, 0.1);
}

.mv-tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
  font-size: 0.95rem;
  line-height: 1.7;
}

.mv-tab-content.active {
  display: block;
}

.story-visual-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-gold-lg);
}

.story-visual-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.story-founder-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(11, 11, 13, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.testimonial-stars {
  color: #FFB800;
  font-size: 1.1rem;
  display: flex;
  gap: 0.2rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #111;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.author-info h4 {
  font-size: 0.95rem;
}

.author-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* FAQ ACCORDION */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.3rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  color: var(--text-pure);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--primary-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.6rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.6rem 1.4rem;
}

/* SHOPPING CART DRAWER */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -480px;
  width: 100%;
  max-width: 460px;
  height: 100%;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-gold);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.cart-title {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.4rem;
  transition: var(--transition);
}

.close-btn:hover {
  color: var(--text-pure);
  transform: rotate(90deg);
}

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

.cart-empty-state {
  text-align: center;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cart-empty-state .icon {
  font-size: 3.5rem;
  color: var(--text-muted);
}

.cart-item {
  display: flex;
  gap: 1rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.8rem;
  align-items: center;
}

.cart-item-img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  background: #000;
  border-radius: var(--radius-sm);
}

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

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-pure);
}

.cart-item-price {
  font-size: 0.88rem;
  color: var(--primary-gold-light);
  font-weight: 600;
}

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

.qty-btn {
  background: var(--bg-surface-hover);
  border: 1px solid var(--border-subtle);
  color: var(--text-pure);
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
}

.qty-num {
  font-size: 0.85rem;
  font-weight: 700;
  width: 20px;
  text-align: center;
}

.cart-remove-btn {
  background: transparent;
  border: none;
  color: #E63946;
  cursor: pointer;
  padding: 0.4rem;
  font-size: 1rem;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-surface-elevated);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
}

.cart-total-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-gold);
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.form-input {
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  color: var(--text-pure);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 10px var(--gold-glow);
}

/* MODALS */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold-lg);
  width: 100%;
  max-width: 480px;
  position: relative;
  overflow: hidden;
  animation: modalPop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-card-lg {
  max-width: 800px;
}

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

.modal-body {
  padding: 1.8rem;
}

.modal-footer {
  padding: 1.2rem 1.8rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.whatsapp-bubble {
  background: rgba(18, 18, 22, 0.95);
  border: 1px solid var(--border-gold);
  color: var(--text-pure);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 8px #25D366;
}

.whatsapp-fab-btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  transition: var(--transition);
}

.whatsapp-fab-btn:hover {
  transform: scale(1.1) rotate(5deg);
  background: #20BA5A;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* FOOTER */
.site-footer {
  background: #060608;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2rem;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  color: var(--text-pure);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

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

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

.footer-social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-icon-btn:hover {
  background: var(--primary-gold);
  color: #111;
  transform: translateY(-3px);
}

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

/* TOAST NOTIFICATION */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-gold);
  color: var(--text-pure);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold-lg);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  animation: fadeIn 0.3s ease;
  min-width: 280px;
}

.toast.success { border-left: 4px solid #25D366; }
.toast.error { border-left: 4px solid #E63946; }
.toast.info { border-left: 4px solid var(--primary-gold); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { align-items: center; }
  .hero-features-list { justify-content: center; }
  .story-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-features-list { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .quiz-result-card { grid-template-columns: 1fr; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
