/* ===================================================================
   LouiseFlores — stylesheet
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  /* --- color tokens --- */
  --cream:        #FBF6EE;
  --cream-deep:   #F3EBDC;
  --forest:       #1E3D2F;
  --forest-deep:  #14291F;
  --forest-soft:  #E7EEE8;
  --rose:         #D64B5E;
  --rose-deep:    #B23A4C;
  --rose-soft:    #FCE9EA;
  --gold:         #BE9A47;
  --ink:          #241F1B;
  --ink-soft:     #5C554D;
  --paper:        #FFFFFF;
  --whatsapp:     #25D366;
  --whatsapp-deep:#1DA851;
  --line:         #E7DFD0;

  /* --- type --- */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* --- misc --- */
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 28px;
  --shadow-card: 0 2px 8px rgba(30,20,10,.06), 0 1px 2px rgba(30,20,10,.05);
  --shadow-lift: 0 18px 40px -14px rgba(20,41,31,.35);
  --container: 1240px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family:var(--font-display); margin:0; color:var(--forest-deep); font-weight:600; }
p{ margin:0; }

.wrap{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

:focus-visible{
  outline:2.5px solid var(--rose);
  outline-offset:2px;
  border-radius:4px;
}

/* =========================== TOP TRUST BAR =========================== */
.topbar{
  background:var(--forest-deep);
  color:#F1EDE2;
  font-size:13.5px;
  font-weight:500;
  letter-spacing:.01em;
  overflow:hidden;
  padding:9px 0;
}
.topbar-marquee{
  width:100%;
  overflow:hidden;
}
.topbar-track{
  display:flex;
  gap:28px;
  animation:marquee 25s linear infinite;
  width:max-content;
}
@keyframes marquee{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}
.topbar span{ display:flex; align-items:center; gap:7px; opacity:.95; white-space:nowrap; }
.topbar svg{ width:15px; height:15px; flex:none; color:#D9C994; }

/* =========================== HEADER =========================== */
header.site-header{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(251,246,238,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 24px;
}
.logo{
  display:flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:20px;
  color:var(--forest-deep);
  flex:none;
}
.logo .mark{
  width:38px; height:38px;
  border-radius:50%;
  background:var(--rose);
  display:flex; align-items:center; justify-content:center;
  color:#fff;
  font-size:18px;
  flex:none;
}
.logo small{
  display:block;
  font-family:var(--font-body);
  font-weight:600;
  font-size:10px;
  letter-spacing:.14em;
  color:var(--rose);
  margin-top:1px;
}

.nav-cats{
  display:flex;
  gap:22px;
  flex:1;
  justify-content:center;
}
.nav-cats a{
  font-size:14px;
  font-weight:600;
  color:var(--ink-soft);
  padding:8px 2px;
  border-bottom:2px solid transparent;
  transition:color .15s ease, border-color .15s ease;
  white-space:nowrap;
}
.nav-cats a:hover{ color:var(--forest-deep); border-color:var(--rose); }

.header-cta{
  display:flex;
  align-items:center;
  gap:10px;
  flex:none;
}
.header-phone{
  display:flex;
  flex-direction:column;
  line-height:1.2;
  font-size:12.5px;
  color:var(--ink-soft);
  text-align:right;
}
.header-phone strong{ color:var(--forest-deep); font-size:14.5px; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:12px;
  font-weight:600;
  font-size:14px;
  padding:12px 20px;
  border:none;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease;
  white-space:nowrap;
}
.btn svg{ width:18px; height:18px; flex:none; }
.btn-primary{
  background:var(--whatsapp);
  color:#fff;
  box-shadow:0 6px 16px -6px rgba(37,211,102,.4);
}
.btn-primary:hover{ background:var(--whatsapp-deep); transform:translateY(-1px); }
.btn-outline{
  background:transparent;
  border:1.5px solid var(--forest-deep);
  color:var(--forest-deep);
}
.btn-outline:hover{ background:var(--forest-deep); color:#fff; }
.btn-sm{ padding:9px 16px; font-size:13px; }
.btn-block{ width:100%; }

.header-burger{
  display:none;
  width:42px; height:42px;
  border-radius:50%;
  border:1.5px solid var(--line);
  background:#fff;
  align-items:center;
  justify-content:center;
  flex:none;
}
.header-burger svg{ width:20px; height:20px; }

/* =========================== HERO =========================== */
.hero{
  position:relative;
  overflow:hidden;
  padding:64px 0 30px;
  background:var(--cream);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse 46% 60% at 88% 8%, rgba(214,75,94,.12), transparent 62%),
    radial-gradient(ellipse 40% 50% at -4% 96%, rgba(30,61,47,.14), transparent 60%);
  pointer-events:none;
}
.hero-grain{
  position:absolute;
  inset:0;
  opacity:.5;
  mix-blend-mode:multiply;
  pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.hero .wrap{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1fr .92fr;
  gap:56px;
  align-items:center;
}
.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--rose-deep);
  font-weight:600;
  font-size:12px;
  padding:6px 12px 6px 8px;
  border-radius:10px;
  margin-bottom:18px;
  box-shadow:0 2px 6px -3px rgba(30,20,10,.1);
}
.hero-eyebrow .stars{ display:inline-flex; gap:1px; color:var(--gold); }
.hero-eyebrow svg{ width:13px; height:13px; }
.hero h1{
  font-size:clamp(32px, 4.2vw, 52px);
  line-height:1.08;
  letter-spacing:-.01em;
  max-width:14ch;
}
.hero h1 em{
  font-style:italic;
  color:var(--rose);
  position:relative;
  white-space:nowrap;
}
.hero h1 em svg{
  position:absolute;
  left:0; bottom:-.14em;
  width:100%;
  height:.28em;
  color:var(--rose);
  opacity:.55;
}
.hero-sub{
  margin-top:18px;
  font-size:16px;
  color:var(--ink-soft);
  max-width:46ch;
  line-height:1.58;
}
.hero-ctas{
  display:flex;
  gap:14px;
  margin-top:32px;
  flex-wrap:wrap;
  align-items:center;
}
.hero-ctas .btn{ padding:16px 28px; font-size:15.5px; }
.hero-urgency{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:22px;
  font-size:13.5px;
  font-weight:600;
  color:var(--forest-deep);
  background:var(--forest-soft);
  border:1px solid #D7E3D9;
  padding:9px 16px 9px 12px;
  border-radius:999px;
}
.hero-urgency .live-dot{
  width:8px; height:8px; border-radius:50%;
  background:#33B36A;
  flex:none;
  position:relative;
}
.hero-urgency .live-dot::after{
  content:"";
  position:absolute; inset:-4px;
  border-radius:50%;
  border:1.5px solid #33B36A;
  animation:wa-ring 2.2s ease-out infinite;
}

.hero-trust{
  display:flex;
  gap:0;
  margin-top:38px;
  flex-wrap:wrap;
  border-top:1px solid var(--line);
  padding-top:26px;
}
.hero-trust div{
  display:flex; align-items:center; gap:10px;
  padding-right:26px; margin-right:26px;
  border-right:1px solid var(--line);
}
.hero-trust div:last-child{ border-right:none; margin-right:0; padding-right:0; }
.hero-trust svg{ width:19px; height:19px; color:var(--rose-deep); flex:none; }
.hero-trust strong{ display:block; font-size:14.5px; color:var(--forest-deep); }
.hero-trust span{ display:block; font-size:11.5px; color:var(--ink-soft); }

/* --- editorial photo collage --- */
.hero-art{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  height:520px;
}
.hero-photo-main{
  position:relative;
  z-index:2;
  width:78%;
  aspect-ratio:1.24/1;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 30px 60px -20px rgba(20,41,31,.4);
  border:7px solid #fff;
  transform:rotate(3deg);
}
.hero-photo-main img{ width:100%; height:100%; object-fit:cover; }
.hero-photo-accent{
  position:absolute;
  z-index:3;
  bottom:2%;
  left:-2%;
  width:46%;
  aspect-ratio:1.24/1;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 24px 46px -16px rgba(20,41,31,.45);
  border:6px solid #fff;
  transform:rotate(-7deg);
}
.hero-photo-accent img{ width:100%; height:100%; object-fit:cover; }
.hero-ring{
  position:absolute;
  z-index:1;
  width:88%; height:88%;
  border-radius:50%;
  border:1.5px dashed #C9BBA3;
  opacity:.6;
}
.hero-dot-field{
  position:absolute;
  z-index:0;
  right:-6%; top:2%;
  width:120px; height:120px;
  background-image:radial-gradient(var(--gold) 1.6px, transparent 1.6px);
  background-size:14px 14px;
  opacity:.35;
}
.hero-tag{
  position:absolute;
  z-index:4;
  background:#fff;
  border-radius:16px;
  box-shadow:0 18px 34px -14px rgba(20,41,31,.35);
  padding:13px 17px;
  display:flex;
  align-items:center;
  gap:10px;
}
.hero-tag.tag-price{
  top:6%;
  right:0%;
}
.hero-tag.tag-price .dot{
  width:36px;height:36px;border-radius:50%;
  background:var(--rose-soft); color:var(--rose-deep);
  display:flex;align-items:center;justify-content:center;
  font-size:16px;
  flex:none;
}
.hero-tag.tag-price strong{ display:block; font-size:14.5px; color:var(--forest-deep); }
.hero-tag.tag-price span{ display:block; font-size:11px; color:var(--ink-soft); }

.hero-tag.tag-rating{
  bottom:10%;
  right:-4%;
  flex-direction:column;
  align-items:flex-start;
  gap:4px;
}
.hero-tag.tag-rating .stars{ display:flex; gap:2px; color:var(--gold); }
.hero-tag.tag-rating .stars svg{ width:13px; height:13px; }
.hero-tag.tag-rating strong{ font-size:13px; color:var(--forest-deep); }
.hero-tag.tag-rating span{ font-size:10.5px; color:var(--ink-soft); }

/* =========================== SEARCH BAR =========================== */
.search-section{
  padding:0 0 8px;
}
.search-box{
  max-width:640px;
  margin:-28px auto 0;
  position:relative;
  z-index:5;
  background:#fff;
  border-radius:16px;
  box-shadow:0 12px 28px -12px rgba(20,41,31,.25);
  padding:6px 6px 6px 20px;
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid var(--line);
}
.search-box svg{ width:19px; height:19px; color:var(--ink-soft); flex:none; }
.search-box input{
  border:none;
  outline:none;
  flex:1;
  font-size:15px;
  font-family:inherit;
  padding:10px 0;
  background:transparent;
  color:var(--ink);
}
.search-box input::placeholder{ color:#9C9284; }
.search-box button{
  background:var(--forest-deep);
  color:#fff;
  border-radius:999px;
  padding:11px 22px;
  font-weight:700;
  font-size:14px;
  border:none;
  flex:none;
}

/* =========================== SECTION HEADERS =========================== */
.section{ padding:64px 0; }
.section-tight{ padding:36px 0 64px; }
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:34px;
  flex-wrap:wrap;
}
.section-head h2{
  font-size:clamp(26px,3vw,36px);
  letter-spacing:-.01em;
}
.section-kicker{
  display:inline-block;
  font-size:12.5px;
  font-weight:700;
  letter-spacing:.06em;
  color:var(--rose-deep);
  margin-bottom:8px;
}
.section-desc{
  color:var(--ink-soft);
  font-size:15.5px;
  max-width:52ch;
  margin-top:8px;
}

/* =========================== CATEGORY TABS =========================== */
.cat-tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:36px;
}
.cat-tab{
  border:1.5px solid var(--line);
  background:#fff;
  color:var(--ink-soft);
  font-weight:600;
  font-size:13px;
  padding:10px 18px;
  border-radius:12px;
  transition:all .15s ease;
}
.cat-tab .count{
  opacity:.6;
  font-weight:600;
  margin-left:4px;
}
.cat-tab:hover{ border-color:var(--forest); color:var(--forest-deep); }
.cat-tab.active{
  background:var(--forest-deep);
  border-color:var(--forest-deep);
  color:#fff;
}
.cat-tab.active .count{ opacity:.75; }

/* =========================== PRODUCT GRID =========================== */
.product-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
}
.product-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 2px 6px rgba(30,20,10,.04);
  border:1px solid var(--line);
  display:flex;
  flex-direction:column;
  transition:transform .15s ease, box-shadow .15s ease;
}
.product-card:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 20px -8px rgba(20,41,31,.15);
}
.product-media{
  position:relative;
  aspect-ratio:1.24/1;
  overflow:hidden;
  background:#EDECE7;
}
.product-media img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .5s cubic-bezier(.2,.7,.2,1);
}
.product-card:hover .product-media img{ transform:scale(1.06); }
.product-badge{
  position:absolute;
  top:12px; left:12px;
  background:var(--rose);
  color:#fff;
  font-size:10.5px;
  font-weight:700;
  padding:5px 11px;
  border-radius:999px;
  letter-spacing:.02em;
  box-shadow:0 4px 10px -3px rgba(214,75,94,.5);
}
.product-quick{
  position:absolute;
  inset:0;
  background:linear-gradient(0deg, rgba(20,41,31,.55) 0%, rgba(20,41,31,0) 42%);
  opacity:0;
  transition:opacity .25s ease;
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
  padding:12px;
}
.product-card:hover .product-quick{ opacity:1; }
.product-eta{
  position:absolute;
  bottom:10px; left:10px;
  background:rgba(255,255,255,.94);
  color:var(--forest-deep);
  font-size:10.5px;
  font-weight:700;
  padding:5px 10px;
  border-radius:999px;
  display:flex;
  align-items:center;
  gap:5px;
  opacity:0;
  transform:translateY(4px);
  transition:opacity .2s ease, transform .2s ease;
}
.product-card:hover .product-eta{ opacity:1; transform:translateY(0); }
.product-eta svg{ width:11px; height:11px; }
.product-body{
  padding:16px 16px 18px;
  display:flex;
  flex-direction:column;
  gap:9px;
  flex:1;
}
.product-eyebrow{
  font-size:10.5px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--rose-deep);
  opacity:.85;
}
.product-name{
  font-family:var(--font-display);
  font-weight:600;
  font-size:16px;
  color:var(--forest-deep);
  line-height:1.28;
  min-height:41px;
}
.product-price-row{
  display:flex;
  align-items:baseline;
  gap:8px;
  margin-top:auto;
}
.product-price{
  font-family:var(--font-display);
  font-weight:700;
  font-size:21px;
  color:var(--forest-deep);
}
.product-price span{ font-size:13px; font-weight:600; }
.product-old{
  font-size:12.5px;
  color:#A79B8A;
  text-decoration:line-through;
}
.product-buy{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:var(--whatsapp);
  color:#fff;
  font-weight:700;
  font-size:13.5px;
  padding:11px 12px;
  border-radius:10px;
  border:none;
  margin-top:2px;
  transition:background .15s ease, transform .12s ease;
}
.product-buy svg{ width:16px; height:16px; flex:none; }
.product-buy:hover{ background:var(--whatsapp-deep); transform:translateY(-1px); }

.grid-empty{
  text-align:center;
  padding:60px 20px;
  color:var(--ink-soft);
  display:none;
}

.load-more-wrap{
  display:flex;
  justify-content:center;
  margin-top:38px;
}

/* =========================== WHY US =========================== */
.why{
  background:var(--forest-deep);
  color:#F3EEE1;
  padding:70px 0;
  position:relative;
  overflow:hidden;
}
.why::before{
  content:"";
  position:absolute;
  width:520px; height:520px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(214,75,94,.16), transparent 70%);
  top:-220px; right:-160px;
}
.why .section-head h2{ color:#fff; }
.why .section-desc{ color:#C9C2B1; }
.why .section-kicker{ color:#E6A9B1; }
.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  position:relative;
  z-index:1;
}
.why-card{
  position:relative;
  border-radius:var(--radius-m);
  padding:22px 20px;
  min-height:230px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  overflow:hidden;
  isolation:isolate;
  border:1px solid rgba(255,255,255,.14);
}
.why-card .why-bg{
  position:absolute;
  inset:0;
  z-index:-2;
}
.why-card .why-bg img{
  width:100%; height:100%; object-fit:cover;
  filter:saturate(1.05);
}
.why-card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(190deg, rgba(20,41,31,.15) 0%, rgba(15,28,21,.92) 88%);
}
.why-card .ic{
  width:42px; height:42px;
  border-radius:11px;
  background:rgba(255,255,255,.14);
  backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.25);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:14px;
}
.why-card .ic svg{ width:20px; height:20px; color:#fff; }
.why-card h3{
  font-family:var(--font-display);
  color:#fff;
  font-size:18px;
  font-weight:600;
  margin-bottom:7px;
}
.why-card p{
  font-size:13.5px;
  color:#D9D3C4;
  line-height:1.55;
}

/* =========================== STEPS (how it works) =========================== */
.steps{ padding:70px 0; }
.steps-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  position:relative;
}
.step{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  padding:30px 26px;
  position:relative;
}
.step .num{
  font-family:var(--font-display);
  font-size:40px;
  font-weight:700;
  color:var(--rose-soft);
  -webkit-text-stroke:1.5px var(--rose);
  color:transparent;
  line-height:1;
  margin-bottom:14px;
  display:block;
}
.step h3{ font-size:18px; margin-bottom:8px; }
.step p{ color:var(--ink-soft); font-size:14.5px; line-height:1.55; }

/* =========================== TRUST STRIP =========================== */
.trust-strip{
  background:var(--forest-soft);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:26px 0;
}
.trust-strip .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.trust-item{
  display:flex;
  align-items:center;
  gap:12px;
}
.trust-item strong{
  font-family:var(--font-display);
  font-size:26px;
  color:var(--forest-deep);
  display:block;
  line-height:1;
}
.trust-item span{
  font-size:12.5px;
  color:var(--ink-soft);
  font-weight:600;
}

/* =========================== TESTIMONIALS =========================== */
.testimonials{ padding:70px 0; background:var(--cream-deep); }
.testi-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.testi-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  padding:26px 24px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.testi-stars{ display:flex; gap:3px; color:var(--gold); }
.testi-stars svg{ width:15px; height:15px; }
.testi-quote{
  font-size:14.5px;
  color:var(--ink);
  line-height:1.62;
  flex:1;
}
.testi-person{
  display:flex;
  align-items:center;
  gap:11px;
  padding-top:10px;
  border-top:1px solid var(--line);
}
.testi-avatar{
  width:38px; height:38px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:#fff;
  font-family:var(--font-display);
  font-weight:700;
  font-size:15px;
  flex:none;
}
.testi-person strong{ display:block; font-size:13.5px; color:var(--forest-deep); }
.testi-person span:not(.testi-avatar){ display:block; font-size:11.5px; color:var(--ink-soft); }

/* =========================== SCROLL REVEAL =========================== */
.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in-view{ opacity:1; transform:translateY(0); }

/* =========================== FAQ =========================== */
.faq{ padding:70px 0; }
.faq-list{
  max-width:820px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.faq-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  overflow:hidden;
}
.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:20px 22px;
  background:none;
  border:none;
  text-align:left;
  font-family:var(--font-body);
  font-weight:700;
  font-size:15.5px;
  color:var(--forest-deep);
}
.faq-q .chevron{
  width:22px; height:22px;
  flex:none;
  border-radius:50%;
  background:var(--forest-soft);
  display:flex; align-items:center; justify-content:center;
  transition:transform .2s ease, background .2s ease;
}
.faq-q .chevron svg{ width:12px; height:12px; color:var(--forest-deep); }
.faq-item.open .chevron{ transform:rotate(45deg); background:var(--rose); }
.faq-item.open .chevron svg{ color:#fff; }
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.faq-a p{
  padding:0 22px 20px;
  color:var(--ink-soft);
  font-size:14.5px;
  line-height:1.6;
}

/* =========================== FINAL CTA =========================== */
.final-cta{
  padding:70px 0;
}
.final-cta-box{
  background:linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  border-radius:32px;
  padding:56px 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
  color:#fff;
  position:relative;
  overflow:hidden;
}
.final-cta-box::after{
  content:"";
  position:absolute;
  width:340px; height:340px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  right:-100px; bottom:-140px;
}
.final-cta-box h2{ color:#fff; font-size:clamp(24px,3vw,34px); max-width:16ch; }
.final-cta-box p{ color:rgba(255,255,255,.88); margin-top:10px; font-size:15px; max-width:42ch; }
.final-cta-box .btn-primary{
  background:#fff;
  color:var(--rose-deep);
  box-shadow:0 12px 26px -10px rgba(0,0,0,.35);
}
.final-cta-box .btn-primary:hover{ background:#FFF3F0; }

/* =========================== FOOTER =========================== */
footer{
  background:var(--forest-deep);
  color:#C9C2B1;
  padding:56px 0 22px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.1fr;
  gap:36px;
  padding-bottom:36px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:22px;
  color:#fff;
  margin-bottom:14px;
}
.footer-logo .mark{
  width:34px;height:34px;border-radius:50%;
  background:var(--rose);
  display:flex;align-items:center;justify-content:center;
  color:#fff; font-size:16px; flex:none;
}
.footer-col p{ font-size:13.5px; line-height:1.7; color:#B2ABA0; }
.footer-col h4{
  font-family:var(--font-body);
  color:#fff;
  font-size:13.5px;
  font-weight:700;
  letter-spacing:.03em;
  margin-bottom:16px;
}
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:13.5px; color:#B2ABA0; transition:color .15s; }
.footer-col a:hover{ color:#fff; }
.footer-social{ display:flex; gap:10px; margin-top:16px; }
.footer-social a{
  width:36px; height:36px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
}
.footer-social svg{ width:16px; height:16px; color:#fff; }
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:22px;
  font-size:12.5px;
  color:#8B8478;
  flex-wrap:wrap;
  gap:10px;
}

/* =========================== FLOATING WHATSAPP =========================== */
.wa-float{
  position:fixed;
  left:22px;
  bottom:22px;
  z-index:80;
  width:60px;
  height:60px;
  border-radius:50%;
  background:var(--whatsapp);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 26px -6px rgba(37,211,102,.6), 0 2px 8px rgba(0,0,0,.2);
  animation:wa-pulse 2.6s ease-in-out infinite;
}
.wa-float svg{ width:30px; height:30px; color:#fff; }
.wa-float::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  border:2px solid var(--whatsapp);
  animation:wa-ring 2.6s ease-out infinite;
}
@keyframes wa-pulse{
  0%,100%{ transform:scale(1); }
  50%{ transform:scale(1.06); }
}
@keyframes wa-ring{
  0%{ transform:scale(1); opacity:.6; }
  100%{ transform:scale(1.9); opacity:0; }
}

/* =========================== TOAST =========================== */
.toast{
  position:fixed;
  left:50%;
  bottom:28px;
  transform:translate(-50%, 20px);
  background:var(--forest-deep);
  color:#fff;
  padding:14px 22px;
  border-radius:12px;
  font-size:14px;
  font-weight:600;
  box-shadow:var(--shadow-lift);
  z-index:120;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
  display:flex;
  align-items:center;
  gap:10px;
}
.toast.show{ opacity:1; transform:translate(-50%, 0); }
.toast svg{ width:18px; height:18px; color:var(--whatsapp); flex:none; }

/* =========================== MOBILE NAV DRAWER =========================== */
.mobile-drawer{
  position:fixed;
  inset:0;
  z-index:100;
  visibility:hidden;
}
.mobile-drawer .scrim{
  position:absolute; inset:0;
  background:rgba(20,15,10,.4);
  opacity:0;
  transition:opacity .2s ease;
}
.mobile-drawer .panel{
  position:absolute;
  top:0; right:0;
  height:100%;
  width:min(78vw, 320px);
  background:#fff;
  transform:translateX(100%);
  transition:transform .25s ease;
  padding:24px 22px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.mobile-drawer.open{ visibility:visible; }
.mobile-drawer.open .scrim{ opacity:1; }
.mobile-drawer.open .panel{ transform:translateX(0); }
.mobile-drawer a{
  padding:14px 6px;
  font-weight:700;
  font-size:15.5px;
  color:var(--forest-deep);
  border-bottom:1px solid var(--line);
}
.mobile-drawer .close-drawer{
  align-self:flex-end;
  width:38px;height:38px;
  border-radius:50%;
  background:var(--cream-deep);
  display:flex;align-items:center;justify-content:center;
  border:none;
  margin-bottom:10px;
}
.mobile-drawer .close-drawer svg{ width:18px; height:18px; }
.mobile-drawer a.btn-primary{ color:#fff; border-bottom:none; padding:15px 22px; }

/* =========================== RESPONSIVE =========================== */
@media (max-width: 1080px){
  .product-grid{ grid-template-columns:repeat(3,1fr); gap:18px; }
  .why-grid{ grid-template-columns:repeat(2,1fr); }
  .hero .wrap{ gap:40px; }
}

@media (max-width: 900px){
  .nav-cats{ display:none; }
  .header-burger{ display:flex; }
  .hero .wrap{ grid-template-columns:1fr; }
  .hero-art{ order:-1; height:280px; margin-bottom:8px; }
  .hero h1{ max-width:none; }
  .steps-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .header-phone{ display:none; }
  .testi-grid{ grid-template-columns:1fr; }
  .why-grid{ grid-template-columns:repeat(2,1fr); }
  .section{ padding:52px 0; }
}

@media (max-width: 640px){
  .topbar{ font-size:11px; padding:7px 0; }
  .topbar-track{ gap:18px; animation-duration:18s; }
  .product-grid{ grid-template-columns:repeat(2,1fr); gap:12px; }
  .product-name{ font-size:13px; min-height:34px; }
  .product-price{ font-size:17px; }
  .section{ padding:40px 0; }
  .why{ padding:44px 0; }
  .why-grid{ grid-template-columns:1fr; }
  .final-cta-box{ padding:32px 20px; flex-direction:column; text-align:center; align-items:center; }
  .footer-grid{ grid-template-columns:1fr; gap:24px; }
  .hero{ padding:28px 0 24px; }
  .hero-ctas{ flex-direction:column; }
  .hero-ctas .btn{ width:100%; }
  .hero-trust{ gap:12px 18px; }
  .cat-tabs{ flex-wrap:nowrap; overflow-x:auto; padding-bottom:6px; margin-left:-20px; margin-right:-20px; padding-left:20px; padding-right:20px; }
  .cat-tabs::-webkit-scrollbar{ display:none; }
  .search-box{ margin:-20px 12px 0; padding:5px 5px 5px 18px; }
  .search-box input{ font-size:14px; }
  .search-box button{ padding:10px 18px; font-size:13px; }
  .wa-float{ width:52px; height:52px; left:14px; bottom:14px; }
  .wa-float svg{ width:24px; height:24px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .hero-tag{ display:none; }
  .hero-ring, .hero-dot-field{ display:none; }
  .hero-photo-main{ width:85%; transform:rotate(2deg); }
  .hero-photo-accent{ width:52%; left:-4%; bottom:0%; }
  .hero-urgency{ font-size:12px; padding:8px 14px 8px 10px; }
  .hero-trust{ padding-top:18px; }
  .hero-trust div{ padding-right:12px; margin-right:12px; }
  .hero-trust strong{ font-size:12px; }
  .hero-trust span{ font-size:10px; }
  .logo{ font-size:18px; }
  .logo .mark{ width:34px; height:34px; font-size:16px; }
  .header-inner{ padding:12px 20px; }
  .wrap{ padding:0 20px; }
  .section-head{ margin-bottom:28px; }
  .section-head h2{ font-size:22px; }
  .section-desc{ font-size:14px; }
}
