/* ========================================
   AENDRA — Interior Mood by Alejandra Vasquez
   Complete Redesign v2.0
   ======================================== */

/* ----------------------------------------
   1. DESIGN TOKENS
   ---------------------------------------- */
:root {
  --cream: #F5EFE6;
  --cream-dark: #EDE4D6;
  --white: #FDFBF8;
  --brown: #7C4A1E;
  --brown-light: #A0622A;
  --brown-dark: #3D2010;
  --black: #1A1208;
  --gold: #B89A6A;
  --text: #2C1810;
  --text-light: #8B6A50;
  --beige: #E8DDD0;
  --brown-medium: #8B5E3C;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Jost', sans-serif;
}

/* ----------------------------------------
   2. RESET + BASE
   ---------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

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

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--brown-light); }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ----------------------------------------
   3. CUSTOM CURSOR
   ---------------------------------------- */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  opacity: 0;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
}

/* ----------------------------------------
   4. NAVBAR
   ---------------------------------------- */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.5s;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 28px; font-weight: 500;
  letter-spacing: 6px;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}
nav.scrolled {
  background: rgba(253,251,248,0.95);
  backdrop-filter: blur(12px);
  padding: 14px 60px;
  box-shadow: 0 1px 30px rgba(60,20,0,0.08);
}
nav.scrolled .nav-logo { color: var(--brown-dark); }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
nav.scrolled .nav-links a { color: var(--text-light); }
nav.scrolled .nav-links a:hover { color: var(--brown-dark); }

.nav-cta {
  padding: 10px 28px;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  font-family: var(--sans);
}
.nav-cta:hover { background: var(--gold); border-color: var(--gold); }
nav.scrolled .nav-cta { border-color: var(--gold); color: var(--brown); }
nav.scrolled .nav-cta:hover { background: var(--gold); color: var(--white); }

/* Auth + Cart buttons in navbar */
.nav-auth-group { display: flex; align-items: center; gap: 12px; }
#nav-cart-btn {
  background: none; border: none;
  color: var(--white); font-size: 1.1rem;
  cursor: pointer; position: relative;
}
nav.scrolled #nav-cart-btn { color: var(--brown-dark); }
#cart-badge {
  position: absolute; top: -6px; right: -8px;
  background: var(--gold); color: var(--white);
  font-size: 0.6rem; min-width: 16px; height: 16px;
  border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 600;
}
#nav-login-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 8px 18px; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; font-family: var(--sans);
  transition: all 0.3s;
}
#nav-login-btn:hover { border-color: var(--gold); color: var(--gold); }
nav.scrolled #nav-login-btn { border-color: var(--gold); color: var(--brown); }

/* User dropdown (logged in) */
.user-dropdown { display: none; position: relative; }
.user-dropdown-toggle {
  background: none; border: none;
  color: var(--white); cursor: pointer;
  font-family: var(--sans); font-size: 0.8rem;
  letter-spacing: 1px;
}
nav.scrolled .user-dropdown-toggle { color: var(--brown-dark); }
.user-dropdown-menu {
  position: absolute; top: 100%; right: 0;
  background: var(--white); min-width: 150px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: none; padding: 0.5rem 0;
  z-index: 10;
}
.user-dropdown-menu a,
.user-dropdown-menu button {
  display: block; width: 100%;
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem; color: var(--text);
  background: none; border: none;
  text-align: left; cursor: pointer;
  font-family: var(--sans);
}
.user-dropdown-menu a:hover,
.user-dropdown-menu button:hover { background: var(--cream); }

/* ----------------------------------------
   5. HAMBURGER + MOBILE MENU
   ---------------------------------------- */
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; z-index: 1001;
  background: none; border: none; padding: 0;
}
.hamburger span {
  width: 28px; height: 2px;
  background: var(--gold); transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(26,15,5,0.98);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  color: var(--cream); text-decoration: none;
  font-family: var(--serif); font-size: 1.3rem;
  letter-spacing: 3px; text-transform: uppercase;
}
.mobile-menu a:hover { color: var(--gold); }

/* ----------------------------------------
   6. HERO
   ---------------------------------------- */
#hero, .hero {
  height: 100vh; position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #2C1810 0%, #4A2810 30%, #6B3A1A 60%, #3D2010 100%);
}
.hero-canvas { position: absolute; inset: 0; opacity: 0.4; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(26,18,8,0.6));
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 900px;
  padding: 0 2rem;
}
.hero-tag {
  font-size: 13px; letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 10vw, 140px);
  font-weight: 300; color: var(--white);
  letter-spacing: 8px; line-height: 1.05;
  margin-bottom: 20px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-sub {
  font-size: 14px; letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 48px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}
.hero-btns {
  display: flex; gap: 20px;
  justify-content: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 1.1s forwards;
}
.btn-primary {
  background: var(--gold); color: var(--white);
  padding: 16px 44px; font-size: 13px;
  letter-spacing: 3px; text-transform: uppercase;
  border: none; cursor: pointer;
  font-family: var(--sans);
  transition: background 0.3s, transform 0.3s;
}
.btn-primary:hover { background: var(--brown-light); transform: translateY(-2px); }
.btn-outline {
  padding: 16px 44px;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white); background: none;
  font-size: 13px; letter-spacing: 3px;
  text-transform: uppercase; cursor: pointer;
  font-family: var(--sans);
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 40px;
  left: 50%; transform: translateX(-50%);
  z-index: 2; text-align: center;
}
.scroll-line {
  width: 1px; height: 50px; margin: 0 auto 10px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
.scroll-text {
  font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* Decorative orbs */
.orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,154,106,0.15), transparent 70%);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.orb-1 { width: 400px; height: 400px; top: 10%; left: -5%; animation-delay: 0s; }
.orb-2 { width: 300px; height: 300px; bottom: 15%; right: -3%; animation-delay: 3s; }
.orb-3 { width: 200px; height: 200px; top: 40%; right: 20%; animation-delay: 5s; }

/* ----------------------------------------
   7. MARQUEE
   ---------------------------------------- */
.marquee-section { background: var(--brown-dark); padding: 18px 0; overflow: hidden; }
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: 30px;
  font-size: 13px; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold);
  padding: 0 40px; flex-shrink: 0;
}
.marquee-dot {
  width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%;
  opacity: 0.5;
}

/* ----------------------------------------
   8. SECTIONS — SHARED
   ---------------------------------------- */
section { padding: 100px 60px; }
.container { max-width: 1600px; margin: 0 auto; padding: 0 3rem; }

.section-label {
  font-size: 14px; color: var(--gold);
  text-transform: uppercase; letter-spacing: 5px;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::before {
  content: ''; display: block;
  width: 30px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300; color: var(--brown-dark);
  line-height: 1.15; margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--brown-light);
}

/* ----------------------------------------
   9. ABOUT
   ---------------------------------------- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-text p {
  font-size: 18px; line-height: 1.9;
  color: var(--text-light); font-weight: 300;
  margin-bottom: 1.2rem;
}
.about-quote {
  border-left: 2px solid var(--gold);
  padding-left: 20px; margin: 2rem 0;
  font-family: var(--serif);
  font-size: 20px; font-style: italic;
  color: var(--brown); line-height: 1.6;
}
.about-visual { position: relative; height: 580px; }
.about-img-main {
  position: absolute; top: 0; left: 0;
  width: 75%; height: 85%;
  background-size: cover; background-position: center;
  border-radius: 4px;
}
.about-img-main::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(26,18,8,0.3));
}
.about-img-accent {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 50%;
  background-size: cover; background-position: center;
  border-radius: 4px;
  border: 4px solid var(--cream);
}
.about-stat {
  position: absolute; top: 50%; right: 10%;
  background: var(--white);
  padding: 20px 28px;
  box-shadow: 0 8px 32px rgba(61,31,13,0.1);
  text-align: center; z-index: 2;
}
.about-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 32px; color: var(--gold);
}
.about-stat span {
  font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-light);
}

/* ----------------------------------------
   10. MOOD GALLERY
   ---------------------------------------- */
.mood-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 3px;
}
.mood-card {
  position: relative; overflow: hidden;
  cursor: pointer;
}
.mood-card:first-child { grid-row: 1 / 3; }
.mood-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s;
}
.mood-card:hover .mood-bg { transform: scale(1.05); }
.mood-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,0.6), transparent 50%);
}
.mood-label {
  position: absolute; bottom: 20px; left: 20px;
  color: var(--white);
  font-size: 14px; letter-spacing: 3px;
  text-transform: uppercase;
}

/* Gallery items (original mood gallery lightbox) */
.gallery-item {
  position: relative; overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ----------------------------------------
   11. KITS (DARK THEME)
   ---------------------------------------- */
#kits, .kits { background: var(--brown-dark); }
#kits .section-label { color: var(--gold); }
#kits .section-title { color: rgba(255,255,255,0.9); }
#kits .section-title em { color: var(--gold); }

.kits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 50px;
}
.kit-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 36px;
  transition: all 0.4s;
  overflow: hidden;
}
.kit-card:hover {
  background: rgba(184,154,106,0.06);
  border-color: rgba(184,154,106,0.3);
  transform: translateY(-4px);
}
.kit-card.featured {
  background: rgba(184,154,106,0.08);
  border-color: rgba(184,154,106,0.3);
}
.kit-badge {
  display: inline-block;
  font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.kit-name {
  font-family: var(--serif);
  font-size: 28px; font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
.kit-items { list-style: none; margin-bottom: 20px; }
.kit-items li {
  font-size: 15px; color: rgba(255,255,255,0.5);
  padding: 7px 0;
  border-bottom: 1px dotted rgba(255,255,255,0.1);
  padding-left: 14px; position: relative;
}
.kit-items li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%;
  transform: translateY(-50%);
}
.kit-price {
  font-family: var(--serif);
  font-size: 38px; color: var(--gold);
}

/* Kit collage — 2x2 grid of product photos */
.kit-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 16px;
}
.kit-collage-img {
  background-size: cover; background-position: center;
  transition: transform 0.5s;
}
.kit-card:hover .kit-collage-img { transform: scale(1.06); }

.kit-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}
.kit-btn {
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  padding: 12px 28px; border: none;
  font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  font-family: var(--sans);
  transition: background 0.3s;
}
.kit-btn:hover { background: rgba(255,255,255,0.15); }
.kit-cta {
  padding: 12px 28px;
  border: 1px solid var(--gold);
  color: var(--gold); background: none;
  font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  font-family: var(--sans);
  transition: all 0.3s;
}
.kit-cta:hover { background: var(--gold); color: var(--white); }
.btn-add-cart {
  background: var(--gold); color: var(--white);
  padding: 10px 20px; border: none;
  font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  font-family: var(--sans);
  transition: background 0.3s;
}
.btn-add-cart:hover { background: var(--brown-light); }

.kit-glow {
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(184,154,106,0.12), transparent 70%);
  pointer-events: none;
  opacity: 0; transition: opacity 0.4s;
}
.kit-card:hover .kit-glow { opacity: 1; }

/* Service cards: light-bg overrides for kit-card used in #services */
#services .kit-card {
  background: var(--white);
  border: 1px solid var(--beige);
}
#services .kit-card:hover {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(61,31,13,0.1);
}
#services .kit-badge {
  background: var(--gold);
  color: var(--brown-dark);
  padding: 4px 12px;
  border-radius: 3px;
}
#services .kit-name {
  color: var(--brown-dark);
}
#services .kit-items li {
  color: var(--text-light);
  border-bottom-color: var(--cream-dark);
}
#services .kit-price {
  color: var(--brown-dark);
}
#services .kit-btn {
  background: var(--gold);
  color: var(--brown-dark);
  font-weight: 500;
}
#services .kit-btn:hover {
  background: var(--brown-dark);
  color: var(--cream);
}

/* ----------------------------------------
   12. PRODUCTS OVERVIEW
   ---------------------------------------- */
#productos, .productos { background: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

/* ----------------------------------------
   13. PRODUCT DETAIL SECTIONS + CAROUSEL
   ---------------------------------------- */
.catalogo-section { padding: 100px 60px; }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }

.fundas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2rem;
}

/* Product card */
.funda-card {
  background: var(--white);
  overflow: hidden; cursor: pointer;
  border: 1px solid rgba(184,154,106,0.15);
  transition: box-shadow 0.3s, transform 0.3s;
}
.funda-card:hover {
  box-shadow: 0 12px 32px rgba(61,31,13,0.15);
  transform: translateY(-3px);
}

/* Card carousel gallery */
.card-gallery {
  position: relative; width: 100%;
  height: 280px; overflow: hidden;
  border-radius: 4px 4px 0 0;
  background: var(--cream-dark);
}
.gallery-slides {
  display: flex; height: 100%;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.gallery-slide {
  flex-shrink: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.gallery-arrow {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.85);
  border: none; border-radius: 50%;
  font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  z-index: 2; color: var(--brown-dark);
}
.gallery-arrow.prev { left: 8px; }
.gallery-arrow.next { right: 8px; }
.card-gallery:hover .gallery-arrow { opacity: 1; }
.gallery-arrow:hover { background: var(--white); }

.gallery-dots {
  position: absolute; bottom: 8px;
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 2;
}
.gallery-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none; cursor: pointer;
  transition: all 0.3s;
}
.gallery-dot.active {
  background: #fff;
  transform: scale(1.25);
}

/* Card body */
.funda-body { padding: 1.5rem; }
.funda-name {
  font-family: var(--serif);
  font-size: 1.3rem; color: var(--brown-dark);
  margin-bottom: 0.4rem; font-weight: 400;
}
.funda-desc {
  font-size: 0.95rem; color: var(--text-light);
  line-height: 1.5; margin-bottom: 1rem;
}
.funda-footer {
  display: flex; align-items: center;
  justify-content: space-between;
}
.funda-price {
  font-family: var(--serif);
  font-size: 1.8rem; color: var(--gold);
}
.funda-btn {
  background: var(--brown-dark); color: var(--cream);
  padding: 10px 22px; border: none;
  font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  font-family: var(--sans);
  transition: background 0.3s;
}
.funda-btn:hover { background: var(--gold); }
.product-link {
  color: var(--gold); font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}
.product-link:hover { color: var(--brown-light); }

/* ----------------------------------------
   14. SERVICES
   ---------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1300px;
  margin: 50px auto 0;
}
.service-card {
  background: var(--white);
  padding: 48px 36px; position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(61,31,13,0.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-emoji { font-size: 32px; margin-bottom: 20px; }
.service-name {
  font-family: var(--serif);
  font-size: 28px; font-weight: 300;
  color: var(--brown-dark);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 16px; color: var(--text-light);
  line-height: 1.7; margin-bottom: 24px;
}
.service-meta {
  display: flex; justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--cream-dark);
  padding-top: 20px;
}
.service-price {
  font-family: var(--serif);
  font-size: 32px; color: var(--gold);
}
.service-btn {
  padding: 14px 32px;
  border: 1px solid var(--gold);
  color: var(--gold); background: none;
  font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  font-family: var(--sans);
  transition: all 0.3s;
}
.service-btn:hover { background: var(--gold); color: var(--white); }

/* ----------------------------------------
   15. PROCESS / HOW IT WORKS
   ---------------------------------------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px; max-width: 900px;
  margin: 60px auto 0;
  position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 28px; left: 15%; right: 15%;
  height: 1px; background: var(--gold);
  opacity: 0.3;
}
.process-step { text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 22px; color: var(--gold);
  margin: 0 auto 20px;
  transition: all 0.3s;
  position: relative; z-index: 1;
}
.process-step:hover .step-num {
  background: var(--gold); color: var(--white);
  box-shadow: 0 4px 20px rgba(184,154,106,0.4);
}
.step-title {
  font-family: var(--serif);
  font-size: 22px; font-weight: 400;
  color: var(--brown-dark);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 16px; color: var(--text-light);
  line-height: 1.7;
}

/* Progress line for GSAP scrub (from original) */
.progress-line {
  width: 100%; height: 2px;
  background: var(--cream-dark);
  margin-top: 40px; position: relative;
}
.progress-fill {
  height: 100%; width: 0;
  background: var(--gold);
}

/* ----------------------------------------
   16. TESTIMONIALS
   ---------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1300px;
  margin: 50px auto 0;
}
.testimonial-card {
  background: var(--white);
  padding: 36px; position: relative;
  transition: transform 0.3s;
  border-top: 3px solid transparent;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--gold);
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: 48px; color: var(--gold);
  opacity: 0.5; line-height: 1;
  margin-bottom: 12px;
}
.stars {
  color: var(--gold); font-size: 14px;
  letter-spacing: 2px; margin-bottom: 16px;
}
.testimonial-text {
  font-family: var(--serif);
  font-size: 20px; font-style: italic;
  color: var(--text); line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author {
  font-size: 14px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-light);
}
.testimonial-location {
  font-size: 13px; color: var(--gold);
  margin-top: 4px;
}

/* ----------------------------------------
   17. CONTACT (DARK THEME)
   ---------------------------------------- */
#contacto, #contact { background: var(--brown-dark); }
#contacto .section-label,
#contact .section-label { color: var(--gold); }
#contacto .section-title,
#contact .section-title { color: rgba(255,255,255,0.9); }

.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 900px;
  margin: 50px auto 0;
}
.contact-channel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 36px; text-align: center;
  transition: all 0.3s;
}
.contact-channel:hover {
  border-color: rgba(184,154,106,0.3);
  background: rgba(184,154,106,0.06);
}
.channel-icon { font-size: 28px; margin-bottom: 16px; }
.channel-name {
  font-size: 13px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.channel-value {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  word-break: break-word;
}
.channel-value a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
}
.channel-value a:hover { color: var(--gold); }

/* ----------------------------------------
   18. FOOTER
   ---------------------------------------- */
footer {
  background: #0F0805;
  padding: 40px 60px;
  display: flex; justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 22px; letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}

/* ----------------------------------------
   19. TOAST
   ---------------------------------------- */
.toast {
  position: fixed; bottom: -60px;
  left: 50%; transform: translateX(-50%);
  background: var(--brown-dark);
  color: var(--cream);
  padding: 1rem 2rem; font-size: 0.85rem;
  z-index: 2000; transition: bottom 0.4s;
  border-radius: 4px; white-space: nowrap;
}
.toast.show { bottom: 2rem; }

/* ----------------------------------------
   20. FLOATING WHATSAPP
   ---------------------------------------- */
.floating-wa {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 50px; height: 50px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1.5rem;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  opacity: 0; transform: scale(0);
  transition: all 0.3s;
}
.floating-wa.visible { opacity: 1; transform: scale(1); }
.floating-wa:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,0.3); }

/* ----------------------------------------
   21. AUTH MODAL
   ---------------------------------------- */
.auth-overlay {
  position: fixed; inset: 0;
  background: rgba(26,15,5,0.6);
  z-index: 1100;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.auth-overlay.open { opacity: 1; pointer-events: all; }
.auth-modal {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: var(--white);
  width: 420px; max-width: 90vw;
  z-index: 1101; padding: 2.5rem;
  opacity: 0; pointer-events: none;
  transition: all 0.3s;
}
.auth-modal.open {
  opacity: 1; pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.auth-modal h2 {
  font-family: var(--serif);
  font-size: 2rem; text-align: center;
  color: var(--brown-dark);
  letter-spacing: 4px; margin-bottom: 0.3rem;
}
.auth-sub {
  text-align: center; color: var(--text-light);
  font-size: 0.85rem; margin-bottom: 1.5rem;
}
.auth-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none;
  font-size: 1.2rem; cursor: pointer;
  color: var(--text-light);
}
.auth-tabs {
  display: flex; gap: 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
}
.auth-tab {
  flex: 1; padding: 0.8rem;
  text-align: center; background: none; border: none;
  font-family: var(--sans);
  font-size: 0.85rem; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}
.auth-tab.active { color: var(--brown); border-bottom-color: var(--gold); }
.auth-form { display: none; }
.auth-form.active { display: block; }
.auth-form .field { margin-bottom: 1rem; }
.auth-form label {
  display: block; font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.auth-form input {
  width: 100%; padding: 0.8rem;
  border: 1px solid var(--cream-dark);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 0.9rem; color: var(--text);
}
.auth-form input:focus { outline: none; border-color: var(--gold); }
.auth-form button[type=submit] {
  width: 100%; padding: 0.9rem;
  background: var(--gold); color: var(--white);
  border: none; font-family: var(--sans);
  font-size: 0.85rem; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  margin-top: 0.5rem; transition: background 0.3s;
}
.auth-form button[type=submit]:hover { background: var(--brown-light); }
.auth-form button[type=submit]:disabled { opacity: 0.6; cursor: not-allowed; }
.auth-error { color: #c0392b; font-size: 0.8rem; min-height: 1rem; }

/* ----------------------------------------
   22. CART SIDEBAR
   ---------------------------------------- */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(26,15,5,0.5);
  z-index: 1200;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed; top: 0; right: -420px;
  width: 400px; max-width: 90vw; height: 100vh;
  background: var(--white);
  z-index: 1201;
  display: flex; flex-direction: column;
  transition: right 0.4s;
  box-shadow: -8px 0 30px rgba(0,0,0,0.15);
}
.cart-sidebar.open { right: 0; }
.cart-header {
  display: flex; justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
}
.cart-header h3 {
  font-family: var(--serif);
  font-size: 1.3rem; color: var(--brown-dark);
  font-weight: 400;
}
.cart-header button {
  background: none; border: none;
  font-size: 1.2rem; cursor: pointer;
  color: var(--text-light);
}
#cart-items-list { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
#cart-empty { text-align: center; padding: 3rem 1rem; color: var(--text-light); }
.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 12px; align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.cart-item-img {
  width: 70px; height: 70px;
  border-radius: 4px;
  object-fit: cover;
}
.cart-item-name {
  font-size: 0.85rem; font-weight: 500;
  color: var(--brown-dark);
}
.cart-item-price {
  font-size: 0.8rem; color: var(--gold);
  margin-top: 2px;
}
.cart-item-qty {
  display: flex; align-items: center;
  gap: 8px; margin-top: 6px;
}
.cart-item-qty button {
  width: 24px; height: 24px;
  border: 1px solid var(--cream-dark);
  background: var(--cream); cursor: pointer;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.cart-item-qty span {
  font-size: 0.85rem; min-width: 20px;
  text-align: center;
}
.cart-item-remove {
  background: none; border: none;
  cursor: pointer; color: var(--text-light);
  font-size: 1rem;
}
.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--cream-dark);
}
.cart-total {
  display: flex; justify-content: space-between;
  font-size: 1.1rem; margin-bottom: 1rem;
}
.cart-total span:last-child {
  font-family: var(--serif);
  font-size: 1.3rem; color: var(--gold);
}
#cart-actions { display: none; }
#cart-checkout-btn {
  width: 100%; padding: 0.9rem;
  background: var(--gold); color: var(--white);
  border: none; font-family: var(--sans);
  font-size: 0.85rem; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  transition: background 0.3s;
}
#cart-checkout-btn:hover { background: var(--brown-light); }

/* ----------------------------------------
   23. CHECKOUT MODAL
   ---------------------------------------- */
.checkout-overlay {
  position: fixed; inset: 0;
  background: rgba(26,15,5,0.5);
  z-index: 1300;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.checkout-overlay.open { opacity: 1; pointer-events: all; }
.checkout-modal {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 560px; max-width: 94vw;
  max-height: 90vh; overflow-y: auto;
  background: var(--white);
  z-index: 1301;
  opacity: 0; pointer-events: none;
  transition: all 0.3s;
}
.checkout-modal.open { opacity: 1; pointer-events: all; }
.checkout-header {
  display: flex; justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--cream-dark);
}
.checkout-header h2 {
  font-family: var(--serif);
  font-size: 1.4rem; color: var(--brown-dark);
  font-weight: 400;
}
.checkout-header button {
  background: none; border: none;
  font-size: 1.2rem; cursor: pointer;
  color: var(--text-light);
}
.checkout-steps-bar {
  display: flex; gap: 0;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--cream-dark);
}
.step-dot {
  flex: 1; text-align: center;
  font-size: 0.75rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-light);
  padding: 0.5rem;
  border-bottom: 2px solid transparent;
}
.step-dot.active { color: var(--gold); border-bottom-color: var(--gold); }
.checkout-body { padding: 1.5rem 2rem; }
.checkout-step { display: none; }
.checkout-step.active { display: block; }
.checkout-field { margin-bottom: 1rem; }
.checkout-field label {
  display: block; font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.checkout-field input {
  width: 100%; padding: 0.8rem;
  border: 1px solid var(--cream-dark);
  background: var(--cream);
  font-family: var(--sans); font-size: 0.9rem;
}
.checkout-field input:focus { outline: none; border-color: var(--gold); }
.checkout-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.checkout-btn {
  width: 100%; padding: 0.9rem;
  background: var(--gold); color: var(--white);
  border: none; font-family: var(--sans);
  font-size: 0.85rem; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  margin-top: 1rem; transition: background 0.3s;
}
.checkout-btn:hover { background: var(--brown-light); }
.checkout-btn.secondary {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--cream-dark);
}
.checkout-btn.secondary:hover { border-color: var(--gold); color: var(--gold); background: transparent; }
.checkout-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.order-summary-box {
  background: var(--cream);
  padding: 1.2rem; margin-bottom: 1rem;
}
.order-summary-box h4 {
  font-family: var(--serif); font-size: 1rem;
  margin-bottom: 0.8rem; color: var(--brown-dark);
}
.summary-item {
  display: flex; justify-content: space-between;
  font-size: 0.85rem; padding: 0.3rem 0;
  color: var(--text-light);
}
.summary-total {
  display: flex; justify-content: space-between;
  font-size: 1rem; padding-top: 0.8rem;
  border-top: 1px solid var(--cream-dark);
  margin-top: 0.5rem; color: var(--brown-dark);
  font-weight: 500;
}
.card-icons {
  display: flex; align-items: center;
  gap: 0.5rem; font-size: 0.75rem;
  margin-bottom: 1rem; color: var(--text-light);
}
.card-icon {
  border: 1px solid var(--cream-dark);
  padding: 4px 8px; font-weight: 600;
  font-size: 0.7rem;
}
#payment-processing {
  display: none; text-align: center; padding: 2rem;
}
.processing-spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--cream-dark);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}
#payment-error { color: #c0392b; font-size: 0.8rem; }

.confirm-success { text-align: center; padding: 2rem 0; }
.confirm-check { font-size: 3rem; margin-bottom: 1rem; }
.confirm-order-num {
  background: var(--cream);
  padding: 0.8rem 1.5rem;
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.3rem; color: var(--gold);
  margin: 1rem 0;
}

/* ----------------------------------------
   24. ANIMATIONS / KEYFRAMES
   ---------------------------------------- */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; height: 50px; }
  50% { opacity: 1; height: 70px; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ----------------------------------------
   25. REVEAL ON SCROLL
   ---------------------------------------- */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ----------------------------------------
   26. RESPONSIVE
   ---------------------------------------- */

/* Tablet landscape */
@media (max-width: 1024px) {
  nav { padding: 16px 30px; }
  nav.scrolled { padding: 12px 30px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 60px 30px; }
  .catalogo-section { padding: 60px 30px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { height: 350px; }

  .mood-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .mood-card:first-child { grid-row: auto; }

  .kits-grid { grid-template-columns: repeat(2, 1fr); }
  .fundas-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .services-grid,
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; }
  .contact-channels { grid-template-columns: 1fr; max-width: 400px; margin: 50px auto 0; }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .kits-grid {
    grid-template-columns: 1fr;
    max-width: 400px; margin: 50px auto 0;
  }
  .products-grid { grid-template-columns: 1fr; }
  .fundas-grid { grid-template-columns: repeat(2, 1fr); }

  .mood-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 200px repeat(4, 160px);
  }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }

  footer {
    flex-direction: column; gap: 16px;
    text-align: center; padding: 30px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  section { padding: 50px 20px; }
  .catalogo-section { padding: 50px 20px; }
  .container { padding: 0 1rem; }

  .fundas-grid {
    grid-template-columns: 1fr;
    max-width: 340px; margin: 0 auto;
  }
  .hero-title { letter-spacing: 4px; }
  .hero-btns { flex-direction: column; align-items: center; }

  .about-img-main { width: 100%; height: 60%; }
  .about-img-accent { width: 70%; height: 40%; }
  .about-stat { right: 5%; top: auto; bottom: 20%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-tag, .hero-title, .hero-tagline,
  .hero-sub, .hero-btns { opacity: 1; transform: none; }
}

/* =============================================================================
   WAITLIST MODAL STYLES
   ============================================================================= */

/* Overlay */
.waitlist-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.waitlist-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Modal container */
.waitlist-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 520px;
  max-height: 90vh;
  background: linear-gradient(135deg, rgba(61, 31, 13, 0.95) 0%, rgba(61, 31, 13, 0.98) 100%);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(184, 154, 106, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(184, 154, 106, 0.1);
  padding: 40px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.waitlist-modal.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* Close button */
.waitlist-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(184, 154, 106, 0.1);
  border: 1px solid rgba(184, 154, 106, 0.3);
  border-radius: 50%;
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.waitlist-close-btn:hover {
  background: rgba(184, 154, 106, 0.2);
  transform: rotate(90deg);
}

/* Icon */
.waitlist-icon {
  font-size: 64px;
  text-align: center;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.waitlist-icon.success {
  font-size: 72px;
  animation: successPop 0.6s ease-out;
}

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

@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

/* Title */
.waitlist-title {
  font-family: var(--font-secondary);
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

/* Subtitle */
.waitlist-subtitle {
  font-family: var(--font-primary);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 24px;
}

.waitlist-subtitle strong {
  color: var(--gold);
  font-weight: 600;
}

/* Benefits list */
.waitlist-benefits {
  background: rgba(184, 154, 106, 0.08);
  border: 1px solid rgba(184, 154, 106, 0.2);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
}

.benefit-item {
  font-family: var(--font-primary);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 0;
  border-bottom: 1px solid rgba(184, 154, 106, 0.1);
}

.benefit-item:last-child {
  border-bottom: none;
}

/* Form fields */
.waitlist-field {
  margin-bottom: 20px;
}

.waitlist-field label {
  display: block;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.waitlist-field input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(184, 154, 106, 0.3);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 15px;
  transition: all 0.2s ease;
}

.waitlist-field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.waitlist-field input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(184, 154, 106, 0.2);
}

/* Error message */
.waitlist-error {
  display: none;
  background: rgba(255, 45, 85, 0.15);
  border: 1px solid rgba(255, 45, 85, 0.4);
  border-radius: 8px;
  padding: 12px;
  font-family: var(--font-primary);
  font-size: 13px;
  color: #ff6b8a;
  text-align: center;
  margin-bottom: 16px;
}

/* Submit button */
.waitlist-submit-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--gold) 0%, rgba(184, 154, 106, 0.8) 100%);
  border: none;
  border-radius: 10px;
  color: var(--brown-dark);
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(184, 154, 106, 0.3);
}

.waitlist-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(184, 154, 106, 0.5);
}

.waitlist-submit-btn:active {
  transform: translateY(0);
}

.waitlist-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Privacy note */
.waitlist-privacy {
  font-family: var(--font-primary);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 20px;
}

/* Referral box (success message) */
.referral-box {
  background: rgba(0, 255, 156, 0.08);
  border: 1px solid rgba(0, 255, 156, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin-top: 24px;
  text-align: center;
}

.referral-box h3 {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 500;
  color: #00ff9c;
  margin-bottom: 8px;
}

.referral-description {
  font-family: var(--font-primary);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

/* Referral code display */
.referral-code-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 156, 0.4);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
}

.referral-code-display code {
  font-family: 'Courier New', monospace;
  font-size: 24px;
  font-weight: 700;
  color: #00ff9c;
  letter-spacing: 3px;
}

.copy-btn {
  padding: 10px 20px;
  background: rgba(0, 255, 156, 0.15);
  border: 1px solid rgba(0, 255, 156, 0.4);
  border-radius: 8px;
  color: #00ff9c;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.copy-btn:hover {
  background: rgba(0, 255, 156, 0.25);
  transform: scale(1.05);
}

.copy-btn:active {
  transform: scale(0.95);
}

/* Referral share link */
.referral-share-link {
  font-family: var(--font-primary);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.referral-share-link strong {
  color: var(--gold);
  font-size: 14px;
  word-break: break-all;
}

/* Close success button */
.waitlist-close-success-btn {
  width: 100%;
  padding: 16px 24px;
  background: rgba(184, 154, 106, 0.15);
  border: 1px solid rgba(184, 154, 106, 0.4);
  border-radius: 10px;
  color: var(--gold);
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 20px;
}

.waitlist-close-success-btn:hover {
  background: rgba(184, 154, 106, 0.25);
}

/* Hero waitlist button */
.btn-waitlist {
  padding: 14px 28px;
  background: linear-gradient(135deg, #00ff9c 0%, #00cc7a 100%);
  border: none;
  border-radius: 30px;
  color: var(--brown-dark);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 255, 156, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.btn-waitlist:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 255, 156, 0.6);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0, 255, 156, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(0, 255, 156, 0.7); }
}

/* Responsive styles for waitlist modal */
@media (max-width: 768px) {
  .waitlist-modal {
    width: 95%;
    padding: 30px 24px;
  }

  .waitlist-title {
    font-size: 24px;
  }

  .waitlist-icon {
    font-size: 48px;
  }

  .waitlist-icon.success {
    font-size: 56px;
  }

  .referral-code-display {
    flex-direction: column;
    gap: 12px;
  }

  .referral-code-display code {
    font-size: 20px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }

  .btn-waitlist {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .waitlist-modal {
    padding: 24px 20px;
  }

  .waitlist-title {
    font-size: 20px;
  }

  .waitlist-subtitle {
    font-size: 14px;
  }

  .referral-code-display code {
    font-size: 16px;
    letter-spacing: 2px;
  }
}
