/* ══════════════════════════════════════════════════
   TALMIA Talbeena Max — Brand Website CSS
   ══════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────── */
:root {
  --bg-primary: #120B08;
  --bg-secondary: #1B130F;
  --bg-deep: #0E0907;
  --card-bg-light: #F4EBDD;
  --card-bg-white: #FFFDF9;

  --brand-green: #355B2A;
  --brand-gold: #C9A44A;
  --brand-amber: #B46E2C;
  --brand-amber-hover: #A95E1F;
  --brand-amber-light: rgba(180, 110, 44, 0.15);
  --brand-gold-light: rgba(201, 164, 74, 0.12);

  --text-heading-light: #F1E4D3;
  --text-body-light: #D8C1A2;
  --text-muted-light: #8C7461;
  --text-heading-dark: #2D1E16;
  --text-body-dark: #5B4638;
  --text-muted-dark: #8C7461;

  --border-dark: #4A3426;
  --border-light: #E6D7C7;
  --border-gold: rgba(201, 164, 74, 0.3);

  --shadow-soft: 0 12px 30px rgba(20, 10, 6, 0.18);
  --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 8px 30px rgba(201, 164, 74, 0.15);
  --shadow-amber: 0 8px 30px rgba(180, 110, 44, 0.2);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--bg-primary);
  color: var(--text-body-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ── Typography ─────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.15; }

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-heading-dark);
  margin-bottom: 1rem;
}
.section-heading em {
  font-style: italic;
  color: var(--brand-amber);
}
.section-heading.light { color: var(--text-heading-light); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-amber);
  border: 1px solid var(--brand-amber);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-tag.light { color: var(--brand-gold); border-color: var(--brand-gold); }

.section-sub {
  font-size: 1rem;
  color: var(--text-body-dark);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.section-sub.light { color: var(--text-body-light); }

.body-text {
  font-size: 1rem;
  color: var(--text-body-dark);
  margin-bottom: 1.2rem;
  line-height: 1.75;
}

/* ── Layout Helpers ─────────────────────────────── */
.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.section-container.column-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── Buttons ────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-amber);
  color: #FFF8F0;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: var(--shadow-amber);
}
.btn-primary:hover {
  background: var(--brand-amber-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(180, 110, 44, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brand-gold);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--brand-gold);
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--brand-gold-light);
  transform: translateY(-2px);
}

.btn-primary-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-amber);
  color: #FFF8F0;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-amber);
  border: none;
  cursor: pointer;
}
.btn-primary-large:hover {
  background: var(--brand-amber-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 45px rgba(180, 110, 44, 0.4);
}

.btn-outline-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--brand-gold);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--brand-gold);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-large:hover {
  background: var(--brand-gold-light);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(18, 11, 8, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(201,164,74,0.35));
  transition: var(--transition);
}

.nav-logo:hover .logo-img {
  filter: drop-shadow(0 4px 20px rgba(201,164,74,0.6));
  transform: scale(1.03);
}

.logo-text {
  display: none;
}

.nav-links {
  display: flex;
  gap: 0.2rem;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-body-light);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--brand-gold);
  background: var(--brand-gold-light);
}

.btn-cta-nav {
  background: var(--brand-amber);
  color: #FFF8F0;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-cta-nav:hover {
  background: var(--brand-amber-hover);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-heading-light);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at 70% 50%, #2A1A10 0%, var(--bg-primary) 60%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A44A' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--brand-gold);
  opacity: 0;
  animation: particleDrift var(--dur, 8s) var(--delay, 0s) infinite ease-in-out;
}

@keyframes particleDrift {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  20% { opacity: var(--op, 0.4); }
  80% { opacity: var(--op, 0.4); }
  100% { opacity: 0; transform: translateY(-120px) scale(1); }
}

.hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--brand-gold-light);
  border: 1px solid var(--border-gold);
  color: var(--brand-gold);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--text-heading-light);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: italic;
  color: var(--brand-gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-body-light);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-gold);
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-dark);
}

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

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,110,44,0.2) 0%, transparent 70%);
  filter: blur(40px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-product-img {
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-lg);
  animation: heroFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted-light);
  font-size: 0.78rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════════════════════
   TRUST STRIP
   ══════════════════════════════════════════════════ */
.trust-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 1.5rem 2rem;
}

.trust-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0.6rem 1.8rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body-light);
}

.trust-item i {
  color: var(--brand-gold);
  font-size: 1rem;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--border-dark);
}

/* ══════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════ */
.about {
  background: var(--card-bg-light);
  overflow: hidden;
}

.about .section-container {
  align-items: center;
}

.about-image-col {
  flex: 1;
  position: relative;
}

.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}

.about-img:hover { transform: scale(1.02); }

.about-badge-float {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--bg-primary);
  color: var(--text-heading-light);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-gold);
}

.about-badge-float i {
  color: var(--brand-gold);
  font-size: 1.3rem;
}

.about-badge-float span {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-body-light);
}

.about-text-col {
  flex: 1;
}

/* ── Hadith Box ── */
.hadith-box {
  background: linear-gradient(135deg, #fffbf0 0%, #fff8e7 100%);
  border-left: 4px solid #c8a84b;
  border-radius: 12px;
  padding: 18px 22px;
  margin: 1.2rem 0 1.4rem 0;
  position: relative;
}

.hadith-quote-icon {
  color: #c8a84b;
  font-size: 1.3rem;
  margin-bottom: 8px;
  display: block;
}

.hadith-text {
  font-size: 1rem;
  font-style: italic;
  color: #3a2a00;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 8px 0;
}

.hadith-ref {
  font-size: 0.82rem;
  color: #c8a84b;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.highlight-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--card-bg-white);
  border: 1px solid var(--border-light);
  color: var(--text-body-dark);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
}

.highlight-chip i { color: var(--brand-green); }

/* ══════════════════════════════════════════════════
   BENEFITS
   ══════════════════════════════════════════════════ */
.benefits {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.benefit-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--brand-gold);
  opacity: 0;
  transition: var(--transition);
}

.benefit-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

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

.benefit-card.featured {
  background: rgba(180, 110, 44, 0.08);
  border-color: var(--brand-amber);
}

.benefit-card.featured::before {
  background: var(--brand-amber);
  opacity: 1;
}

.featured-label {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--brand-amber);
  color: #FFF8F0;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand-gold-light);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.benefit-icon i {
  font-size: 1.3rem;
  color: var(--brand-gold);
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-heading-light);
  margin-bottom: 0.6rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════
   INGREDIENTS
   ══════════════════════════════════════════════════ */
.ingredients {
  background: var(--card-bg-light);
}

.ingredients-text { flex: 1; }
.ingredients-visual { flex: 1; }

.ingredient-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ingredient-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.1rem;
  background: var(--card-bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.ingredient-item:hover {
  border-color: var(--brand-amber);
  box-shadow: var(--shadow-amber);
  transform: translateX(4px);
}

.ingredient-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingredient-icon img { width: 36px; height: 36px; }

.ingredient-info h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-heading-dark);
  margin-bottom: 0.25rem;
}

.ingredient-info p {
  font-size: 0.875rem;
  color: var(--text-body-dark);
  line-height: 1.6;
}

.ingredients-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  margin-bottom: 1.5rem;
}

.ingredients-img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.nutrition-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.nutrition-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-heading-light);
  margin-bottom: 1.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-dark);
}

.nutrition-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.82rem;
}

.nutrition-row span:first-child {
  width: 120px;
  flex-shrink: 0;
  color: var(--text-body-light);
}

.nutrition-bar-wrap {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 50px;
  overflow: hidden;
}

.nutrition-bar {
  height: 100%;
  width: var(--w, 70%);
  background: linear-gradient(90deg, var(--brand-amber), var(--brand-gold));
  border-radius: 50px;
  animation: barGrow 1.2s ease-out forwards;
}

@keyframes barGrow {
  from { width: 0; }
  to { width: var(--w); }
}

.nutrition-val {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-gold);
  width: 30px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   HOW TO USE
   ══════════════════════════════════════════════════ */
.how-to-use {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.how-grid {
  display: flex;
  gap: 2rem;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
}

.how-card {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  transition: var(--transition);
}

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

.how-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201, 164, 74, 0.12);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  line-height: 1;
}

.how-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--brand-gold-light);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.how-icon i {
  font-size: 1.5rem;
  color: var(--brand-gold);
}

.how-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-heading-light);
  margin-bottom: 0.85rem;
}

.how-card > p {
  font-size: 0.9rem;
  color: var(--text-body-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.how-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-body-light);
}

.how-steps li i {
  font-size: 5px;
  color: var(--brand-gold);
  flex-shrink: 0;
}

.how-time {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--brand-gold-light);
  border: 1px solid var(--border-gold);
  color: var(--brand-gold);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.how-time i { font-size: 0.8rem; }

.how-divider {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.how-divider::before,
.how-divider::after {
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--border-dark), transparent);
}

.how-divider span {
  background: var(--bg-secondary);
  color: var(--brand-gold);
  border: 1px solid var(--border-gold);
  padding: 6px 10px;
  border-radius: 50%;
  font-size: 0.7rem;
}

/* ══════════════════════════════════════════════════
   PRODUCT SECTION
   ══════════════════════════════════════════════════ */
.product-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.product-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 4rem;
  align-items: flex-start;
  box-sizing: border-box;
}

.product-image-col {
  flex: 0 0 45%;
  max-width: 45%;
  min-width: 0;
  box-sizing: border-box;
}

.product-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  margin-bottom: 1rem;
  background: var(--bg-secondary);
  width: 100%;
}

.product-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.product-alt-images {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}

.product-thumb {
  flex: 1 1 0;
  min-width: 0;
  width: 0;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-dark);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.6;
  display: block;
}

.product-thumb.active,
.product-thumb:hover {
  border-color: var(--brand-gold);
  opacity: 1;
}

.product-details-col {
  flex: 1 1 0;
  min-width: 0;
  box-sizing: border-box;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-gold-light);
  border: 1px solid var(--border-gold);
  color: var(--brand-gold);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-heading-light);
  margin-bottom: 0.4rem;
}

.product-tagline {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  margin-bottom: 1rem;
  font-style: italic;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted-light);
}

.product-rating i { color: var(--brand-gold); font-size: 0.85rem; }

.product-price-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-dark);
}

.product-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-gold);
}

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

.product-discount-badge {
  background: var(--brand-amber);
  color: #FFF8F0;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}

.product-options {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.8rem;
}

.option-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted-light);
  margin-bottom: 0.6rem;
}

.option-pills {
  display: flex;
  gap: 0.6rem;
}

.option-pill {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--border-dark);
  background: transparent;
  color: var(--text-body-light);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.option-pill:hover { border-color: var(--brand-gold); color: var(--brand-gold); }

.option-pill.active {
  background: var(--brand-amber);
  border-color: var(--brand-amber);
  color: #FFF8F0;
}

.qty-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: 50px;
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  padding: 10px 16px;
  color: var(--text-body-light);
  transition: var(--transition);
  font-size: 0.8rem;
}

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

.qty-val {
  font-weight: 700;
  min-width: 36px;
  text-align: center;
  color: var(--text-heading-light);
  font-size: 1rem;
}

.product-cta-wrap {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

/* WhatsApp order button */
.btn-whatsapp-order {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.9rem 1.6rem;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-whatsapp-order:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.btn-whatsapp-order i { font-size: 1.1rem; }

/* Social order strip */
.product-social-order {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding: 0.85rem 1rem;
  background: rgba(201,164,74,0.06);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
}

.social-order-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.social-order-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.social-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  font-family: var(--font-body);
}

.social-order-btn.instagram {
  background: rgba(228,64,95,0.12);
  color: #e4405f;
  border: 1px solid rgba(228,64,95,0.25);
}
.social-order-btn.instagram:hover {
  background: #e4405f;
  color: #fff;
  border-color: #e4405f;
}

.social-order-btn.facebook {
  background: rgba(24,119,242,0.1);
  color: #1877f2;
  border: 1px solid rgba(24,119,242,0.25);
}
.social-order-btn.facebook:hover {
  background: #1877f2;
  color: #fff;
  border-color: #1877f2;
}

.product-guarantees {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  color: var(--text-muted-light);
}

.guarantee-item i { color: var(--brand-green); font-size: 0.95rem; }

/* ══════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════ */
.testimonials {
  background: var(--card-bg-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.review-card {
  background: var(--card-bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-amber);
  border-color: var(--brand-amber);
  transform: translateY(-3px);
}

.review-card.featured-review {
  background: var(--bg-primary);
  border-color: var(--border-dark);
}

.review-card.featured-review .review-text { color: var(--text-body-light); }
.review-card.featured-review .reviewer strong { color: var(--text-heading-light); }
.review-card.featured-review .reviewer span { color: var(--text-muted-light); }

.review-quote {
  font-size: 2rem;
  color: var(--brand-gold);
  opacity: 0.3;
  margin-bottom: 0.5rem;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.review-stars i { color: var(--brand-gold); font-size: 0.85rem; }

.review-text {
  font-size: 0.92rem;
  color: var(--text-body-dark);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-amber);
  color: #FFF8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-heading-dark);
  margin-bottom: 2px;
}

.reviewer span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted-dark);
}

/* ══════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════ */
.faq {
  background: var(--bg-primary);
}

.faq .section-container {
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.faq-header { text-align: left; }

.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--border-dark); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.8rem;
  background: transparent;
  color: var(--text-heading-light);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(255,255,255,0.03);
  color: var(--brand-gold);
}

.faq-question i {
  font-size: 0.85rem;
  color: var(--brand-gold);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question {
  color: var(--brand-gold);
  background: rgba(201, 164, 74, 0.06);
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 0 1.8rem 1.4rem;
  font-size: 0.93rem;
  color: var(--text-body-light);
  line-height: 1.75;
}

.faq-item.open .faq-answer { max-height: 300px; }

/* ══════════════════════════════════════════════════
   HERO — Tagline & For-Men Badge
   ══════════════════════════════════════════════════ */
.hero-tagline-quote {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--brand-gold);
  opacity: 0.85;
  margin-top: 0;
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-tagline-quote i {
  font-size: 0.7rem;
  opacity: 0.6;
}

.hero-for-men-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.45rem 1rem;
  background: rgba(180, 110, 44, 0.10);
  border: 1px solid rgba(180, 110, 44, 0.30);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-body-light);
  width: fit-content;
  line-height: 1.4;
}
.hero-for-men-badge i {
  color: var(--brand-amber);
  font-size: 0.82rem;
  flex-shrink: 0;
}
.hero-for-men-badge strong {
  color: var(--brand-gold);
}

/* ══════════════════════════════════════════════════
   FOR MEN SECTION
   ══════════════════════════════════════════════════ */
.for-men-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.for-men-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(180,110,44,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.for-men-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.for-men-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-heading-light);
  line-height: 1.25;
  margin-bottom: 1.1rem;
}
.for-men-heading em {
  font-style: italic;
  color: var(--brand-gold);
}

.for-men-sub {
  font-size: 0.95rem;
  color: var(--text-body-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.for-men-points {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.for-men-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.for-men-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(180,110,44,0.12);
  border: 1px solid rgba(180,110,44,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-amber);
  font-size: 0.95rem;
}

.for-men-point strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-heading-light);
  margin-bottom: 2px;
}

.for-men-point span {
  font-size: 0.82rem;
  color: var(--text-muted-light);
  line-height: 1.5;
}

/* Quote Card */
.for-men-quote-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.for-men-quote-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,164,74,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.for-men-quote-icon {
  font-size: 2.5rem;
  color: var(--brand-gold);
  opacity: 0.25;
  margin-bottom: 1rem;
  line-height: 1;
}

.for-men-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 700;
  color: var(--brand-gold);
  line-height: 1.35;
  margin-bottom: 1.25rem;
  border: none;
  padding: 0;
}

.for-men-quote-sub {
  font-size: 0.88rem;
  color: var(--text-body-light);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.for-men-quote-divider {
  height: 1px;
  background: var(--border-dark);
  margin-bottom: 1.25rem;
}

.for-men-cta-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted-light);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Responsive */
@media (max-width: 900px) {
  .for-men-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ══════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════ */
.cta-banner {
  background: radial-gradient(ellipse at 50% 0%, #2A1A10 0%, var(--bg-deep) 70%);
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-dark);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.cta-content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-heading-light);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.cta-heading em { color: var(--brand-gold); font-style: italic; }

.cta-content > p {
  font-size: 1rem;
  color: var(--text-body-light);
  margin-bottom: 2rem;
}

.cta-actions { margin-bottom: 1.25rem; }

.cta-small-print {
  font-size: 0.78rem;
  color: var(--text-muted-light);
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-dark);
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-brand { }

.footer-logo {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 16px rgba(201,164,74,0.3));
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 220px;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

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

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

.footer-links-group h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading-light);
  margin-bottom: 1.25rem;
}

.footer-links-group ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-links-group a {
  font-size: 0.88rem;
  color: var(--text-muted-light);
  transition: var(--transition);
}

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

.footer-contact { display: flex; flex-direction: column; gap: 0.7rem; }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  color: var(--text-muted-light);
}

.footer-contact li i { color: var(--brand-gold); font-size: 0.85rem; }

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border-dark);
  text-align: center;
}

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

/* ══════════════════════════════════════════════════
   ORDER OPTIONS
   ══════════════════════════════════════════════════ */
.order-options-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted-light);
  margin-bottom: 0.75rem;
}
.order-options-label i { color: var(--brand-gold); }

/* ── WhatsApp Floating Button ───────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}

.whatsapp-float i {
  font-size: 1.7rem;
  color: #fff;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55);
  animation: none;
}

.whatsapp-float-tooltip {
  position: absolute;
  right: 68px;
  background: #1B130F;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  border: 1px solid #4A3426;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.whatsapp-float-tooltip::before {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #4A3426;
}

.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.08); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1rem;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float i { font-size: 1.5rem; }
  .whatsapp-float-tooltip { display: none; }
}

/* ══════════════════════════════════════════════════
   ORDER MODAL
   ══════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 6, 4, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

.modal-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 620px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--border-dark) transparent;
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dark);
  color: var(--text-muted-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
}
.modal-close:hover {
  background: rgba(255,255,255,0.12);
  color: var(--text-heading-light);
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--brand-gold-light);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.modal-icon i { font-size: 1.4rem; color: var(--brand-gold); }

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-heading-light);
  margin-bottom: 0.4rem;
}

.modal-header p {
  font-size: 0.88rem;
  color: var(--text-muted-light);
}

/* Form Styles */
.order-form { display: flex; flex-direction: column; gap: 1.1rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted-light);
}

.req { color: var(--brand-amber); }
.optional { color: var(--text-muted-light); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 0.78rem; }

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  color: var(--text-heading-light);
  font-size: 0.92rem;
  font-family: var(--font-body);
  transition: var(--transition);
  outline: none;
  resize: none;
  width: 100%;
}

.form-group select option {
  background: var(--bg-secondary);
  color: var(--text-heading-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand-amber);
  background: rgba(180,110,44,0.06);
  box-shadow: 0 0 0 3px rgba(180,110,44,0.12);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #e05050;
}

.field-error {
  font-size: 0.75rem;
  color: #e05050;
  min-height: 14px;
}

/* ── Referral Code Field ── */
.referral-group { position: relative; }

.referral-input-wrap {
  display: flex;
  gap: 0.5rem;
}

.referral-input-wrap input {
  flex: 1;
  padding: 0.7rem 1rem;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-md);
  color: var(--text-heading-light);
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  transition: border-color 0.2s;
}
.referral-input-wrap input:focus { border-color: var(--brand-gold); }
.referral-input-wrap input.valid   { border-color: #25D366; background: rgba(37,211,102,0.06); }
.referral-input-wrap input.invalid { border-color: #E85A4A; }
.referral-input-wrap input::placeholder { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--text-muted-light); }

.referral-apply-btn {
  padding: 0.7rem 1.25rem;
  background: var(--brand-gold-light);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-md);
  color: var(--brand-gold);
  font-size: 0.88rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.referral-apply-btn:hover { background: rgba(201,164,74,0.25); }
.referral-apply-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.referral-status {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.referral-status.success { background: rgba(37,211,102,0.1); color: #1aab52; border: 1px solid rgba(37,211,102,0.25); }
.referral-status.error   { background: rgba(232,90,74,0.08); color: #E85A4A; border: 1px solid rgba(232,90,74,0.2); }
.referral-status.hidden  { display: none; }

/* Summary lines with discount */
.summary-lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.summary-discount {
  font-size: 0.82rem;
  color: #1aab52;
  font-weight: 600;
}
.summary-discount.hidden { display: none; }
.summary-final {
  font-size: 0.92rem;
  color: var(--brand-gold);
}
.summary-final.hidden { display: none; }

/* ── Payment Options ── */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.payment-option {
  display: block;
  cursor: pointer;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-dark);
  background: var(--bg-secondary);
  transition: var(--transition);
  overflow: hidden;
}

.payment-option input[type="radio"] {
  display: none;
}

.payment-option-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
}

.payment-option-inner > i {
  font-size: 1.3rem;
  color: var(--brand-gold);
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}

.payment-option-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.payment-option-text strong {
  font-size: 0.92rem;
  color: var(--text-heading-light);
  font-weight: 700;
}

.payment-option-text small {
  font-size: 0.78rem;
  color: var(--text-muted-light);
}

.payment-check {
  color: transparent;
  font-size: 1.1rem;
  transition: color 0.2s;
  flex-shrink: 0;
}

.payment-option.selected {
  border-color: var(--brand-gold);
  background: var(--brand-gold-light);
}

.payment-option.selected .payment-check {
  color: var(--brand-gold);
}

.payment-option.selected .payment-option-text strong {
  color: var(--brand-gold);
}

.form-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-gold-light);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--brand-gold);
  font-weight: 500;
}
.form-summary i { flex-shrink: 0; }

.full-width { width: 100%; justify-content: center; }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 0.25rem;
}
.form-note i { color: var(--brand-green); }

/* Success State */
/* ── Order Success Screen ─────────────────────── */
.order-success {
  display: none;
  text-align: center;
  padding: 0.5rem 0 1rem;
  animation: fadeInUp 0.4s ease;
}
.order-success.show { display: block; }
.order-form.hidden { display: none; }

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

/* Animated check circle */
.success-check-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.success-check-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a6b3c, #2ecc71);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(46, 204, 113, 0.35);
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-check-circle i {
  color: #fff;
  font-size: 2rem;
}

@keyframes popIn {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Title */
.success-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--text-heading-light);
  margin-bottom: 0.7rem;
  line-height: 1.35;
}

/* Sub message */
.success-sub {
  font-size: 0.92rem;
  color: var(--text-body-light);
  line-height: 1.75;
  margin-bottom: 1.6rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* Info Cards Row */
.success-info-cards {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.success-info-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f7f7f7;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 140px;
  flex: 1;
  max-width: 180px;
  text-align: left;
  transition: box-shadow 0.2s;
}

.success-info-card.highlight {
  background: linear-gradient(135deg, #fffbf0, #fff5dc);
  border-color: #c8a84b;
}

.sic-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201,164,74,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #c8a84b;
  font-size: 0.9rem;
}

.success-info-card.highlight .sic-icon {
  background: rgba(201,164,74,0.2);
  color: #b8940f;
}

.sic-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sic-label {
  font-size: 0.72rem;
  color: #888;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sic-value {
  font-size: 0.88rem;
  font-weight: 700;
  color: #222;
}

/* Note */
.success-note {
  font-size: 0.82rem;
  color: #666;
  background: #f0f4ff;
  border: 1px solid #d8e3ff;
  border-radius: 8px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 440px;
}

.success-note i {
  color: #4a7bff;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Close button */
.success-close-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid #ccc;
  color: #666;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.success-close-btn:hover {
  border-color: #999;
  color: #333;
  background: #f5f5f5;
}

.whatsapp-redirect-info {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: pulse 1.5s ease-in-out infinite;
}

.whatsapp-redirect-info i { font-size: 1.1rem; }

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

/* Modal responsive */
@media (max-width: 600px) {
  .modal-box { padding: 1.75rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   SCROLL TO TOP
   ══════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-amber);
  color: #FFF8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: var(--shadow-amber);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--brand-amber-hover);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-cta-nav { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(18,11,8,0.97);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-dark);
    backdrop-filter: blur(12px);
    gap: 0.25rem;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
    padding: 2rem 1.5rem;
  }

  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-content { max-width: 100%; }

  .section-container {
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 2.5rem;
  }

  .about-badge-float { bottom: auto; right: -0.5rem; top: -0.5rem; }

  .benefits-grid { grid-template-columns: 1fr; }

  .how-grid { flex-direction: column; }
  .how-divider { flex-direction: row; }
  .how-divider::before, .how-divider::after {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-dark), transparent);
  }

  .product-container {
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 2rem;
  }

  .product-image-col {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .product-details-col {
    flex: none;
    width: 100%;
  }

  .product-img-wrap {
    max-height: 320px;
    overflow: hidden;
  }

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

  .product-alt-images {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .product-alt-images::-webkit-scrollbar { display: none; }

  .product-thumb {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    object-fit: cover;
  }

  .product-price-wrap {
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .product-options { gap: 1rem; }

  .option-pills { flex-wrap: wrap; }

  .product-cta-wrap {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-primary-large,
  .btn-outline-large,
  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .product-guarantees {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .guarantee-item {
    font-size: 0.78rem;
  }

  .reviews-grid { grid-template-columns: 1fr; }

  .trust-container { gap: 0.5rem; }
  .trust-divider { display: none; }
  .trust-item { padding: 0.4rem 0.8rem; }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.5rem 1.5rem;
  }

  .scroll-top { bottom: 1.25rem; right: 1.25rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .hero-stats { flex-direction: column; gap: 0.8rem; }
  .stat-divider { width: 40px; height: 1px; }

  .product-container { padding: 2rem 1rem; }

  .product-img-wrap { max-height: 260px; }

  .product-thumb {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
  }

  .product-title { font-size: 1.6rem; }

  .product-price { font-size: 1.6rem; }

  .option-pill { padding: 7px 14px; font-size: 0.82rem; }

  .product-guarantees { grid-template-columns: 1fr; }

  .order-options-label { font-size: 0.72rem; }
}
