:root {
  --gold: #9A6F00;
  --gold-light: #C48F00;
  --gold-dim: rgba(154, 111, 0, 0.08);
  --orange: #C8450A; /* Burnt Sienna / Brick Red */
  --orange-dim: rgba(200, 69, 10, 0.12);
  --bg: #F7F3EE; /* Warm Cream */
  --bg2: #EDE7DF; /* Ivory */
  --bg3: #E4DDD4; /* Natural Parchment */
  --card-bg: #FFFFFF;
  --border: rgba(154, 111, 0, 0.15);
  --text: #1C1409; /* Near-black espresso */
  --text-muted: #7A6A54; /* Warm Taupe */
  --red: #C8450A;
  --card-shadow: 0 12px 34px rgba(154, 111, 0, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  cursor: default;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  /* Natural parchment feel noise */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35; /* Lowered opacity for light theme */
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ══════════════════════════════════════
   TOP URGENCY BAR
══════════════════════════════════════ */
#urgency-bar {
  background: linear-gradient(90deg, #D35400 0%, #C8450A 100%);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  overflow: hidden;
}
#urgency-bar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: shimmer-bar 2.8s infinite;
}
@keyframes shimmer-bar { to { left: 160%; } }

/* ══════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════ */
#main-header {
  background: rgba(247, 243, 238, 0.9); /* var(--bg) with opacity */
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  flex-wrap: wrap;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(1.2rem, 3.5vw, 1.7rem);
  letter-spacing: 0.05em;
  /* Deep espresso brown -> amber gold */
  background: linear-gradient(135deg, #1C1409 0%, var(--gold) 50%, #9A6F00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  white-space: nowrap;
}
.logo span {
  font-style: italic;
  font-weight: 400;
}

/* Countdown */
#countdown-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  flex-shrink: 0;
}
.countdown-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
#timer {
  font-family: 'Montserrat', monospace;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Lang toggle */
#lang-btn {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
#lang-btn:hover {
  background: var(--gold);
  color: #fff;
}

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
#hero {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 10vw, 100px) 0 clamp(50px, 8vw, 80px);
  text-align: center;
}

/* Radial glow */
#hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(154, 111, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: var(--orange-dim);
  border: 1px solid rgba(200, 69, 10, 0.2);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 22px;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%,100% { box-shadow: 0 0 0 0 rgba(200, 69, 10, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(200, 69, 10, 0); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  line-height: 1.08;
  margin-bottom: 18px;
  /* Deep espresso brown -> amber gold */
  background: linear-gradient(160deg, #1C1409 0%, #4A3000 30%, var(--gold) 70%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange) 0%, #A03308 100%); /* Brick Red Gradient */
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 30px rgba(200, 69, 10, 0.25);
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(200, 69, 10, 0.4);
  color: #fff;
}

/* Stats strip */
.stats-strip {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 60px);
  flex-wrap: wrap;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ══════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════ */
.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 10px;
}
.section-title em {
  color: var(--gold);
  font-style: italic;
}
.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 16px auto 0;
}

/* ══════════════════════════════════════
   PRODUCT GRID
══════════════════════════════════════ */
#products { padding: clamp(50px, 8vw, 90px) 0; }

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(154, 111, 0, 0.15);
  border-color: rgba(154, 111, 0, 0.3);
}

/* Badge */
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}

/* Image container */
.card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg3);
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.product-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

/* Shimmer overlay on image */
.card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(154, 111, 0, 0.04), transparent 60%);
  pointer-events: none;
}

.card-body-custom {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-category {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.card-title-product {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 12px;
  flex: 1;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}
.price-now {
  font-size: clamp(1.4rem, 3vw, 1.7rem);
  font-weight: 900;
  color: var(--text);
  font-family: 'Playfair Display', serif;
}
.price-was {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: line-through;
}

.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, var(--orange) 0%, #A03308 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 48px;
  position: relative;
  overflow: hidden;
}
.btn-buy::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.4s ease;
}
.btn-buy:hover { transform: scale(1.02); box-shadow: 0 6px 24px rgba(200, 69, 10, 0.3); }
.btn-buy:hover::before { left: 160%; }
.btn-buy:active { transform: scale(0.98); }

/* ══════════════════════════════════════
   TRUST SECTION
══════════════════════════════════════ */
#trust {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.trust-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 50px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.trust-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}
.trust-text span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
#testimonials { padding: clamp(50px, 8vw, 90px) 0; }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: var(--card-shadow);
}
.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 18px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
}
.author-name { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.author-loc { font-size: 0.68rem; color: var(--text-muted); }

/* ══════════════════════════════════════
   FINAL CTA BAND
══════════════════════════════════════ */
#final-cta {
  background: linear-gradient(135deg, #FBF9F6 0%, #F1ECE6 50%, #E8E1D8 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(50px, 8vw, 90px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#final-cta::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(154, 111, 0, 0.05), transparent 70%);
  pointer-events: none;
}
.final-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--text);
}
.final-cta-title em { color: var(--gold); font-style: italic; }
.final-cta-sub { color: var(--text-muted); font-size: 1rem; max-width: 500px; margin: 0 auto 34px; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: #F1ECE6;
  border-top: 1px solid var(--border);
  padding: 40px 20px;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.footer-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-links { margin-top: 16px; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-decoration: none;
  margin: 0 12px;
  transition: color 0.2s;
  font-weight: 600;
}
.footer-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   TOAST
══════════════════════════════════════ */
#toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #fff;
  border: 1.5px solid var(--gold);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 16px 28px;
  border-radius: 8px;
  z-index: 9998;
  white-space: nowrap;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), opacity 0.35s;
  opacity: 0;
  pointer-events: none;
}
#toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE TWEAKS
══════════════════════════════════════ */
@media (max-width: 768px) {
  .header-inner { padding: 10px 14px; gap: 8px; }
  #countdown-wrap { padding: 6px 10px; }
  .countdown-label { display: none; }
}
@media (max-width: 576px) {
  .header-inner { justify-content: space-between; }
  .logo { font-size: 1.1rem; }
  #timer { font-size: 0.9rem; }
  #lang-btn { font-size: 0.65rem; padding: 6px 10px; }
}
