/* =============================================================
   1. Tokens
   ============================================================= */
@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --mesh-x     { syntax: "<percentage>"; inherits: false; initial-value: 30%; }
@property --mesh-y     { syntax: "<percentage>"; inherits: false; initial-value: 40%; }

:root {
  --bg:        #071613;
  --bg-2:      #0b201c;
  --bg-3:      #102b26;
  --bg-4:      #163a33;
  --cream:     #EAF3EE;
  --cream-2:   #C7D8CE;
  --cream-3:   #7E9690;
  --accent:    #2FBF8F;
  --accent-2:  #1E8A6A;
  --blue:      #3F8FB0;
  --blue-2:    #1F4A5C;
  --line:      rgba(234,243,238,.12);
  --line-2:    rgba(234,243,238,.22);

  --serif: "Sora", "Inter", sans-serif;
  --sans:  "Inter", "Sora", sans-serif;
  --mono:  "JetBrains Mono", monospace;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 76px;
  --radius: 18px;
  --radius-sm: 10px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { font-family: var(--serif); text-wrap: balance; line-height: 1.05; letter-spacing: -0.02em; font-weight: 700; }
em { font-style: normal; color: var(--accent); }
::selection { background: var(--accent); color: var(--bg); }

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

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .6rem 1rem; background: var(--cream); color: var(--bg);
  border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: min(1240px, 92%); margin-inline: auto; }
.container-narrow { width: min(760px, 92%); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.eyebrow {
  display: inline-block; font-family: var(--mono); font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
  margin-bottom: .9rem;
}
.section-title { font-size: clamp(1.9rem, 3.4vw, 2.9rem); max-width: 20ch; margin-bottom: .9rem; }
.section-sub { color: var(--cream-3); max-width: 56ch; font-size: 1.05rem; }

.section { padding-block: clamp(4rem, 8vw, 7rem); position: relative; }
.section-alt { background: var(--bg-2); }

[data-reveal] {
  opacity: 0; transform: translateY(32px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Placeholders (imágenes pendientes)
   ============================================================= */
.ph {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .6rem; text-align: center; border-radius: var(--radius);
  background: linear-gradient(155deg, var(--bg-4), var(--bg-3));
  border: 1px dashed var(--line-2);
  color: var(--cream-3);
  font-size: .82rem; line-height: 1.4;
  overflow: hidden;
}
.ph svg { width: 34px; height: 34px; opacity: .55; }
.ph--square { aspect-ratio: 1; }
.ph--wide { aspect-ratio: 16/8; }
.ph--card { aspect-ratio: 4/3; }
.ph--avatar { width: 46px; height: 46px; border-radius: 50%; font-size: .9rem; font-weight: 700; color: var(--cream-2); }
.ph--map { margin-top: 1.6rem; }
.ph--glow::after {
  content: ""; position: absolute; inset: -40%; z-index: -1;
  background: radial-gradient(circle, rgba(47,191,143,.35), transparent 65%);
  filter: blur(50px);
}

/* =============================================================
   5. Buttons & components
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1rem; }
.btn-sm { padding: .55rem 1.1rem; font-size: .82rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #05130f;
  box-shadow: 0 12px 30px -8px rgba(47,191,143,.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -10px rgba(47,191,143,.6); }
.btn-primary:active { transform: translateY(-1px); }
.btn-ghost { border: 1px solid var(--line-2); color: var(--cream); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: rgba(47,191,143,.08); }
.btn-outline { border: 1px solid var(--line-2); color: var(--cream); background: transparent; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner { display: inline-flex; align-items: center; justify-content: center; gap: inherit; will-change: transform; transition: transform .8s var(--ease-soft); }

.icon-btn {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--line); color: var(--cream); position: relative;
  transition: border-color .3s, color .3s, background .3s;
}
.icon-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(47,191,143,.08); }
.icon-btn svg { width: 19px; height: 19px; }
.cart-badge {
  position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 4px;
  border-radius: 999px; background: var(--accent); color: #05130f; font-size: .68rem; font-weight: 700;
  display: grid; place-items: center; font-family: var(--mono);
}

.chips { display: flex; gap: .55rem; flex-wrap: wrap; }
.chip {
  padding: .5rem 1.05rem; border-radius: 999px; border: 1px solid var(--line); font-size: .85rem;
  color: var(--cream-3); transition: all .3s var(--ease-out);
}
.chip:hover { border-color: var(--line-2); color: var(--cream); }
.chip.is-active { background: var(--accent); border-color: var(--accent); color: #05130f; font-weight: 600; }

/* =============================================================
   6. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 200; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(7,22,19,.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--serif); font-weight: 700; font-size: 1.15rem; }
.brand-mark { width: 34px; height: 34px; color: var(--accent); }
.brand-mark svg { width: 100%; height: 100%; }
.brand-name em { color: var(--cream); }
.brand-name { color: var(--accent); }

.nav-links { display: none; gap: 2rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link { position: relative; font-size: .92rem; color: var(--cream-2); padding-block: .3rem; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: .7rem; }
.nav-actions .btn-sm { display: none; }
@media (min-width: 720px) { .nav-actions .btn-sm { display: inline-flex; } }

.hamburger { width: 42px; height: 42px; display: grid; place-items: center; gap: 4px; }
@media (min-width: 960px) { .hamburger { display: none; } }
.hamburger span { width: 20px; height: 2px; background: currentColor; transition: transform .3s, opacity .3s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 190; background: var(--bg);
  clip-path: inset(0 0 100% 0); transition: clip-path .55s var(--ease-soft);
  display: grid; place-items: center;
}
.mobile-menu[data-open] { clip-path: inset(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.6rem; text-align: center; }
.mobile-link { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; }

/* =============================================================
   7. Hero
   ============================================================= */
.hero { position: relative; padding-top: calc(var(--nav-h) + 3.5rem); padding-bottom: 3rem; overflow: clip; }
.section-with-mesh { isolation: isolate; }
.hero-mesh {
  position: absolute; inset: -10%; z-index: -1;
  background:
    radial-gradient(55% 45% at var(--mesh-x) var(--mesh-y), rgba(47,191,143,.38), transparent 62%),
    conic-gradient(from var(--mesh-angle), rgba(63,143,176,.28), rgba(30,138,106,.14), rgba(47,191,143,.24), rgba(63,143,176,.28)),
    var(--bg);
  filter: blur(90px) saturate(130%);
  animation: meshShift 24s linear infinite;
}
@keyframes meshShift {
  0%   { --mesh-angle: 0deg;   --mesh-x: 25%; --mesh-y: 35%; }
  50%  { --mesh-angle: 180deg; --mesh-x: 72%; --mesh-y: 55%; }
  100% { --mesh-angle: 360deg; --mesh-x: 25%; --mesh-y: 35%; }
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1; opacity: .12; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

.hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.15fr .85fr; gap: 4rem; } }

.kicker { font-family: var(--mono); font-size: .82rem; letter-spacing: .1em; color: var(--accent); text-transform: uppercase; margin-bottom: 1.2rem; }
.hero-title { font-size: clamp(2.6rem, 6.4vw, 4.6rem); max-width: 14ch; margin-bottom: 1.4rem; }
.hero-sub { color: var(--cream-2); font-size: 1.1rem; max-width: 46ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.2rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1.6rem; list-style: none; padding: 0; }
.hero-badges li { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--cream-3); }
.hero-badges svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

.hero-visual { display: flex; justify-content: center; }
.hero-product-float { width: min(360px, 100%); animation: floatY 6s ease-in-out infinite; filter: drop-shadow(0 40px 60px rgba(0,0,0,.45)); }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.hero-product-float .ph { width: 100%; height: 100%; }

.hero-stats {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem;
  width: min(1240px, 92%); margin-inline: auto;
  border-top: 1px solid var(--line); padding-top: 2.2rem;
}
@media (min-width: 720px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat-value { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--accent); display: block; }
.stat-label { font-size: .82rem; color: var(--cream-3); margin-top: .3rem; }

/* =============================================================
   8. Ventajas
   ============================================================= */
.advantages-grid { display: grid; gap: 1.4rem; margin-top: 3rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .advantages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .advantages-grid { grid-template-columns: repeat(3, 1fr); } }

.adv-card {
  position: relative; padding: 2rem 1.7rem; border-radius: var(--radius); background: var(--bg-3);
  border: 1px solid var(--line); isolation: isolate; overflow: hidden;
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft), border-color .3s, box-shadow .3s;
}
.adv-card:hover { transition-duration: .15s; border-color: var(--line-2); box-shadow: 0 30px 60px -20px rgba(0,0,0,.5); }
.adv-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(47,191,143,.22), transparent 60%);
  opacity: 0; transition: opacity .35s;
}
.adv-card:hover::before { opacity: 1; }
.adv-icon {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 1.2rem;
  background: linear-gradient(135deg, rgba(47,191,143,.22), rgba(63,143,176,.14)); color: var(--accent);
  transform: translateZ(30px);
}
.adv-icon svg { width: 24px; height: 24px; }
.adv-card h3 { font-size: 1.12rem; margin-bottom: .5rem; transform: translateZ(20px); }
.adv-card p { color: var(--cream-3); font-size: .92rem; transform: translateZ(10px); }

/* =============================================================
   9. Showcase (pinned horizontal)
   ============================================================= */
.showcase { padding-block: clamp(4rem, 8vw, 6rem) clamp(2rem, 5vw, 3rem); position: relative; }
.showcase-head { margin-bottom: 2.6rem; }
.showcase.is-pinned { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; }
.showcase-viewport { overflow-x: auto; overflow-y: visible; padding-block: 1rem 2rem; scrollbar-width: thin; }
.showcase-track { display: flex; flex-wrap: nowrap; gap: 1.4rem; padding-inline: max(4vw, calc((100% - 1240px)/2 + 4%)); width: max-content; }

/* =============================================================
   10. Product cards (showcase + catálogo comparten estilo)
   ============================================================= */
.product-card {
  position: relative; width: 270px; flex: 0 0 auto; background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.1rem; display: flex; flex-direction: column; gap: .8rem;
  isolation: isolate; --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft), border-color .3s, box-shadow .3s;
}
.products-grid .product-card { width: auto; }
.product-card:hover { transition-duration: .15s; border-color: var(--line-2); box-shadow: 0 30px 60px -18px rgba(0,0,0,.55); }
.product-card .ph { width: 100%; }
.product-badge {
  position: absolute; top: .9rem; left: .9rem; z-index: 2; padding: .3rem .7rem; border-radius: 999px;
  font-size: .68rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  background: var(--accent); color: #05130f;
}
.product-badge.is-agotado { background: var(--cream-3); color: var(--bg); }
.product-name { font-size: .98rem; font-weight: 600; line-height: 1.3; min-height: 2.5em; transform: translateZ(15px); }
.product-meta { display: flex; align-items: center; justify-content: space-between; transform: translateZ(15px); }
.product-price { font-family: var(--mono); font-weight: 700; font-size: 1.15rem; color: var(--accent); }
.product-stock { font-size: .76rem; color: var(--cream-3); }
.product-stock.is-low { color: var(--blue); }
.product-stock.is-out { color: #d17b6b; }
.product-actions { display: flex; align-items: center; gap: .6rem; transform: translateZ(15px); }
.qty-stepper { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty-stepper button { width: 30px; height: 32px; display: grid; place-items: center; color: var(--cream); }
.qty-stepper button:hover { background: var(--bg-4); color: var(--accent); }
.qty-stepper span { width: 28px; text-align: center; font-family: var(--mono); font-size: .85rem; }
.product-add {
  flex: 1; padding: .55rem .8rem; border-radius: 999px; background: var(--accent); color: #05130f;
  font-weight: 600; font-size: .84rem; text-align: center; transition: transform .3s var(--ease-soft), opacity .3s;
}
.product-add:hover { transform: translateY(-2px); }
.product-add[disabled] { opacity: .4; pointer-events: none; background: var(--cream-3); }

/* =============================================================
   11. Catálogo
   ============================================================= */
.catalog-controls { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; justify-content: space-between; margin: 2.6rem 0 2.2rem; }
.field-search { position: relative; flex: 1; min-width: 220px; max-width: 340px; }
.field-search input {
  width: 100%; padding: .75rem 1rem .75rem 2.6rem; border-radius: 999px; border: 1px solid var(--line);
  background: var(--bg-3); color: var(--cream); font-size: .9rem;
}
.field-search input::placeholder { color: var(--cream-3); }
.field-icon { position: absolute; left: .9rem; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--cream-3); }

.products-grid { display: grid; gap: 1.3rem; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.catalog-empty { text-align: center; color: var(--cream-3); padding: 3rem 0; }

/* =============================================================
   12. Testimonios / reseñas
   ============================================================= */
.testimonials-head { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-end; margin-bottom: 2.6rem; }
.rating-summary { text-align: right; }
.rating-summary .stars { color: var(--accent); font-size: 1.3rem; letter-spacing: .1em; }
.rating-summary .rating-value { font-family: var(--serif); font-size: 1.8rem; font-weight: 800; }
.rating-summary .rating-count { color: var(--cream-3); font-size: .82rem; }

.reviews-grid { display: grid; gap: 1.3rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1180px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; display: flex; flex-direction: column; gap: 1rem; }
.review-stars { color: var(--accent); letter-spacing: .08em; }
.review-text { color: var(--cream-2); font-size: .95rem; flex: 1; }
.review-footer { display: flex; align-items: center; gap: .8rem; }
.review-photo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.review-name { font-weight: 600; font-size: .92rem; }
.review-loc { font-size: .78rem; color: var(--cream-3); }

.reviews-cta { text-align: center; margin-top: 2.6rem; display: flex; flex-direction: column; align-items: center; gap: .9rem; }
.reviews-disclaimer { max-width: 52ch; font-size: .8rem; color: var(--cream-3); }

/* =============================================================
   13. FAQ
   ============================================================= */
.faq-list { margin-top: 2.4rem; display: flex; flex-direction: column; gap: .8rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-3); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.4rem; font-weight: 600; text-align: left;
}
.faq-q .plus { font-family: var(--mono); color: var(--accent); transition: transform .3s var(--ease-out); flex-shrink: 0; }
.faq-item.is-open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-soft); }
.faq-a p { padding: 0 1.4rem 1.2rem; color: var(--cream-3); font-size: .92rem; }

/* =============================================================
   14. Contacto
   ============================================================= */
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.contact-list { list-style: none; padding: 0; margin: 2rem 0; display: flex; flex-direction: column; gap: 1rem; }
.contact-list li { display: flex; align-items: flex-start; gap: .8rem; font-size: .95rem; color: var(--cream-2); }
.contact-list svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.contact-form {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem); position: relative;
}
.contact-form h3 { font-size: 1.3rem; margin-bottom: 1.6rem; }
.field { position: relative; margin-bottom: 1.2rem; }
.field input, .field textarea {
  width: 100%; padding: 1.3rem 1rem .55rem; border-radius: 10px; border: 1px solid var(--line);
  background: var(--bg-2); color: var(--cream); font-size: .95rem; resize: vertical;
}
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.field label {
  position: absolute; left: 1rem; top: 1rem; pointer-events: none; transition: all .25s var(--ease-out);
  color: var(--cream-3); font-size: .95rem;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: .4rem; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent);
}
.form-note { font-size: .78rem; color: var(--cream-3); margin-bottom: 1.3rem; }
.cta-submit { width: 100%; position: relative; }
.cta-form-spinner { position: absolute; inset: 0; display: none; place-items: center; }
.contact-form.is-sending .cta-form-label { visibility: hidden; }
.contact-form.is-sending .cta-form-spinner { display: grid; }
.cta-form-spinner::after {
  content: ""; width: 18px; height: 18px; border: 2px solid rgba(5,19,15,.35); border-top-color: #05130f;
  border-radius: 50%; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =============================================================
   15. Footer
   ============================================================= */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-block: 3.4rem 1.6rem; }
.footer-grid { display: grid; gap: 2.4rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand p { color: var(--cream-3); margin-top: 1rem; font-size: .9rem; max-width: 32ch; }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--cream-3); margin-bottom: 1rem; }
.footer-col a, .footer-col li { display: block; margin-bottom: .7rem; font-size: .9rem; color: var(--cream-2); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line); font-size: .8rem; color: var(--cream-3); }

/* =============================================================
   16. Cart drawer & modals
   ============================================================= */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 300; background: rgba(4,12,10,.6); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity .35s var(--ease-out);
}
.drawer-overlay[data-visible] { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 310; width: min(400px, 100%);
  background: var(--bg-2); border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .5s var(--ease-soft);
}
.cart-drawer[data-open] { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.6rem; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-size: 1.15rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 1.2rem 1.6rem; display: flex; flex-direction: column; gap: 1rem; }
.cart-item { display: flex; gap: 1rem; align-items: center; }
.cart-item .ph { width: 60px; height: 60px; flex-shrink: 0; border-radius: 12px; }
.cart-item .ph svg { width: 20px; height: 20px; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: .9rem; font-weight: 600; }
.cart-item-price { font-family: var(--mono); font-size: .82rem; color: var(--accent); }
.cart-item-remove { font-size: .76rem; color: var(--cream-3); text-decoration: underline; margin-top: .2rem; }
.cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; color: var(--cream-3); text-align: center; padding: 2rem; }
.cart-foot { padding: 1.4rem 1.6rem 1.8rem; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }
.cart-total strong { font-family: var(--mono); font-size: 1.4rem; color: var(--accent); }

.review-modal {
  position: fixed; top: 50%; left: 50%; z-index: 320; width: min(460px, 92%);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; transform: translate(-50%, -46%) scale(.96); opacity: 0; pointer-events: none;
  transition: transform .4s var(--ease-soft), opacity .35s var(--ease-out); max-height: 88vh; overflow-y: auto;
}
.review-modal[data-open] { transform: translate(-50%, -50%) scale(1); opacity: 1; pointer-events: auto; }
.review-modal h3 { margin-bottom: 1.4rem; font-size: 1.2rem; }
.review-close { position: absolute; top: 1rem; right: 1rem; }
.star-picker { display: flex; gap: .3rem; font-size: 1.8rem; margin-bottom: 1.2rem; }
.star-picker button { color: var(--line-2); transition: color .2s; }
.star-picker button.is-active, .star-picker button:hover { color: var(--accent); }
.field-file { margin-bottom: 1.3rem; }
.field-file label { display: block; font-size: .82rem; color: var(--cream-3); margin-bottom: .5rem; }
.field-file input[type="file"] { font-size: .82rem; color: var(--cream-3); }
.review-photo-preview { margin-top: .8rem; }
.review-photo-preview img { width: 70px; height: 70px; object-fit: cover; border-radius: 12px; }

/* =============================================================
   17. WhatsApp floating button
   ============================================================= */
.wa-float {
  position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 150;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #06130f;
  display: grid; place-items: center; box-shadow: 0 14px 30px -8px rgba(37,211,102,.6);
  transition: transform .35s var(--ease-soft);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* =============================================================
   18. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 10000; background: var(--bg);
  display: grid; place-items: center; transition: opacity .9s, clip-path 1.1s;
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
.splash-inner { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.splash-mark { width: 56px; height: 56px; color: var(--accent); animation: pulseMark 1.6s ease-in-out infinite; }
.splash-mark svg { width: 100%; height: 100%; }
@keyframes pulseMark { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: .7; } }
.splash-line { width: 120px; height: 2px; background: var(--line); position: relative; overflow: hidden; border-radius: 2px; }
.splash-line::after {
  content: ""; position: absolute; inset: 0; background: var(--accent);
  animation: splashLoad 1.4s ease-in-out infinite;
}
@keyframes splashLoad { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* =============================================================
   19. Responsive tweaks
   ============================================================= */
@media (max-width: 539px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .testimonials-head { flex-direction: column; align-items: flex-start; }
  .rating-summary { text-align: left; }
}

/* =============================================================
   20. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .hero-product-float { animation: none; }
  .splash-mark { animation: none; }
}
