/* ============================================================
   LUMINA BOTOX · Premium Botox Landing Page
   Archetype: Glassmorphism Modern (Rose Poudré Premium)
   Palette: Blush · Dusty Rose · Rose Gold · Deep Plum
   ============================================================ */

/* ---- TOKENS ---- */
:root {
  --bg:          #fdf9fb;
  --bg-2:        #f8eef4;
  --bg-3:        #fde5ef;
  --glass:       rgba(255,248,252,0.72);
  --glass-2:     rgba(255,242,250,0.45);
  --ink:         #2c1825;
  --ink-soft:    #6b384f;
  --ink-mute:    #a87890;
  --accent:      #d4769a;
  --accent-2:    #f0c0d5;
  --gold:        #c47890;
  --gold-light:  #e8aec0;
  --pink:        #f5cce0;
  --pink-deep:   #e090b0;
  --wa:          #25d366;
  --wa-dark:     #128c7e;
  --line:        rgba(200,120,155,0.15);
  --shadow-sm:   0 2px 16px rgba(212,118,154,0.10);
  --shadow-md:   0 8px 40px rgba(212,118,154,0.16);
  --shadow-lg:   0 24px 80px rgba(212,118,154,0.22);
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   32px;
  --ease-out:    cubic-bezier(0.16,1,0.3,1);
  --ease-in-out: cubic-bezier(0.45,0,0.15,1);
  --nav-h:       72px;
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 400; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 500; }

em { font-style: italic; color: var(--accent); }

p { color: var(--ink-soft); line-height: 1.7; }

/* ---- CONTAINER ---- */
.container {
  width: min(1200px, calc(100% - 3rem));
  margin-inline: auto;
}

/* ---- SECTION SHARED ---- */
.section { padding-block: clamp(5rem, 10vw, 9rem); }

.section-kicker {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title { margin-bottom: 1.2rem; }

.section-sub {
  font-size: 1.05rem;
  max-width: 52ch;
  color: var(--ink-mute);
}

.section-header {
  text-align: center;
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-header .section-sub { margin-inline: auto; }

/* ---- GLASS CARD ---- */
.glass-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
@supports (backdrop-filter: blur(20px)) {
  .glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
  }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.03em;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(180,130,80,0.30);
}
@media (hover: hover) {
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(180,130,80,0.40);
  }
}

.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.28);
}
@media (hover: hover) {
  .btn-wa:hover {
    background: var(--wa-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,211,102,0.35);
  }
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
@media (hover: hover) {
  .btn-outline:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
  }
}

.btn-large { padding: 1.1rem 2.6rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- FLOATING WHATSAPP ---- */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--wa);
  color: #fff;
  padding: 0.85rem 1.4rem 0.85rem 1.1rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 8px 32px rgba(37,211,102,0.40);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
@media (hover: hover) {
  .wa-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(37,211,102,0.50);
  }
}
@media (max-width: 540px) {
  .wa-float span { display: none; }
  .wa-float { padding: 1rem; border-radius: 50%; }
}

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.is-solid {
  background: rgba(250,248,246,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
}
.nav-logo-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  transition: color 0.2s;
}
@media (hover: hover) { .nav-link:hover { color: var(--accent); } }
.nav-link--cta {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  box-shadow: 0 3px 14px rgba(180,130,80,0.25);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(250,248,246,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-link { font-size: 1.2rem; }
  .nav-link--cta { padding: 0.9rem 2.4rem; }
}

/* ---- REVEAL ANIMATION ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
/* Safety: elements with data-split never hide */
[data-reveal][data-split] { opacity: 1; transform: none; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  inset: -20% -10%;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 30%, rgba(245,150,192,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 70%, rgba(212,118,154,0.38) 0%, transparent 60%),
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(245,204,224,0.50) 0%, transparent 70%);
  filter: blur(60px) saturate(130%);
  animation: meshDrift 20s ease-in-out infinite;
}
@keyframes meshDrift {
  0%,100% { transform: scale(1) rotate(0deg); }
  33%      { transform: scale(1.08) rotate(3deg); }
  66%      { transform: scale(0.96) rotate(-2deg); }
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  mix-blend-mode: overlay;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 4rem;
}

/* Hero content: always visible by default; GSAP animates from 0→1 */
.hero-kicker,
.hero-title,
.hero-sub,
.hero-actions,
.hero-badges,
.hero-img-wrap { opacity: 1 !important; transform: none !important; }

.hero-kicker {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero-title { margin-bottom: 1.4rem; }
.hero-sub {
  font-size: 1.1rem;
  max-width: 44ch;
  color: var(--ink-soft);
  margin-bottom: 2.4rem;
  line-height: 1.65;
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: var(--ink-mute);
}
.badge-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Hero visual */
.hero-visual { display: flex; justify-content: center; }

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Floating glass cards on hero image */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.2rem;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  animation: floatY 4s ease-in-out infinite;
}
.hero-float-card--1 { bottom: 6rem; left: -2.5rem; animation-delay: 0s; }
.hero-float-card--2 { top: 3.5rem; right: -2rem; animation-delay: 1.8s; }

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

.hfc-icon { font-size: 1.4rem; }
.hfc-text { display: flex; flex-direction: column; line-height: 1.25; }
.hfc-text strong { font-size: 0.92rem; color: var(--ink); }
.hfc-text span { font-size: 0.72rem; color: var(--ink-mute); font-family: "Montserrat", sans-serif; }

/* ---- TRUST / DOCTOR ---- */
.trust-section { background: var(--bg-2); }

.trust-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.trust-img-wrap {
  position: relative;
  max-width: 480px;
}
.trust-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.trust-img-badge {
  position: absolute;
  bottom: 2.5rem;
  right: -1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 1.4rem;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
  box-shadow: 0 8px 28px rgba(180,130,80,0.35);
}

.trust-intro {
  font-size: 1.08rem;
  margin-bottom: 2.4rem;
  line-height: 1.7;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 2.8rem;
}
.trust-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.trust-icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.3rem;
}
.trust-item strong { display: block; font-size: 0.98rem; color: var(--ink); margin-bottom: 0.3rem; }
.trust-item p { font-size: 0.92rem; color: var(--ink-mute); margin: 0; }

/* ---- BENEFITS ---- */
.benefits-section { position: relative; overflow: hidden; padding-block: clamp(3rem, 6vw, 5rem) 2.5rem; }
.benefits-section .section-header { margin-bottom: 2rem; }
.benefits-mesh {
  position: absolute;
  inset: -10%;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(240,192,220,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(212,118,154,0.28) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.benefits-section .container { position: relative; z-index: 1; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  padding: 2rem 1.8rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
@media (hover: hover) {
  .benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
  }
}
.benefit-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.benefit-card p { font-size: 0.9rem; color: var(--ink-mute); margin: 0; }

/* ---- EXPERIENCE ---- */
.experience-section { background: var(--bg-3); }
.experience-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.experience-desc {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}
.experience-items { display: flex; flex-direction: column; gap: 1.8rem; }
.exp-item { display: flex; gap: 1.4rem; align-items: flex-start; }
.exp-number {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent-2);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}
.exp-text strong { display: block; font-size: 0.98rem; color: var(--ink); margin-bottom: 0.3rem; }
.exp-text p { font-size: 0.9rem; color: var(--ink-mute); margin: 0; }

.exp-img-wrap {
  position: relative;
  max-width: 460px;
  margin-left: auto;
}
.exp-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ---- EXPERIENCE CAROUSEL ---- */
.exp-carousel {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #f0f0f0;
}
.exp-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.exp-carousel-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.exp-carousel-img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
}
.exp-car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  transition: background 0.2s;
}
.exp-car-btn:hover { background: #fff; }
.exp-car-btn--prev { left: 0.6rem; }
.exp-car-btn--next { right: 0.6rem; }
.exp-car-dots {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
}
.exp-car-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: background 0.2s;
}
.exp-car-dot.is-active { background: var(--accent); }
.exp-overlay-card {
  position: absolute;
  bottom: -1.5rem;
  left: -2rem;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.6rem;
  max-width: 260px;
  box-shadow: var(--shadow-md);
}
.exp-overlay-card p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.exp-overlay-card span {
  font-size: 0.75rem;
  font-family: "Montserrat", sans-serif;
  color: var(--gold);
  font-weight: 500;
}
.exp-img-secondary {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
}
.exp-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

/* ---- BEFORE & AFTER ---- */
.ba-section { background: var(--bg-2); }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.ba-grid--5 {
  grid-template-columns: repeat(6, 1fr);
}
.ba-grid--5 .ba-card { grid-column: span 2; }
.ba-grid--5 .ba-card:nth-child(4) { grid-column: 2 / 4; }
.ba-grid--5 .ba-card:nth-child(5) { grid-column: 4 / 6; }
.ba-card { overflow: hidden; }

/* Composite single-image layout */
.ba-composite {
  position: relative;
  overflow: hidden;
}
.ba-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s var(--ease-out);
}
@media (hover: hover) {
  .ba-card:hover .ba-img { transform: scale(1.04); }
}

/* Split labels overlay */
.ba-split-labels {
  position: absolute;
  top: 0.9rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}
.ba-split-label {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.68rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
}
.ba-split-label--after {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #fff;
}

/* Vertical divider line on composite */
.ba-composite::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,0.80);
  pointer-events: none;
}

.ba-info {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.6rem;
  gap: 0.2rem;
}
.ba-info strong { font-size: 0.95rem; color: var(--ink); }
.ba-info span { font-size: 0.82rem; color: var(--ink-mute); font-family: "Montserrat", sans-serif; }
.ba-disclaimer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--ink-mute);
  font-style: italic;
}

/* ---- OFFER ---- */
/* ---- FAQ ---- */
.faq-section { background: var(--bg); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.faq-item {
  padding: 2rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.faq-icon {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.faq-item h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}
.faq-item p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.faq-riesgo-label {
  display: inline-block;
  background: linear-gradient(135deg, #d4769a, #c45a82);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2em 0.75em;
  border-radius: 0.4rem;
}
.faq-item--riesgo {
  border: 1.5px solid rgba(212,118,154,0.4);
}

.faq-quote {
  position: relative;
  text-align: center;
  margin: 3rem auto 0;
  max-width: 720px;
  padding: 2.5rem 2rem 2rem;
  background: linear-gradient(135deg, rgba(212,118,154,0.1) 0%, rgba(240,192,213,0.15) 100%);
  border: 1.5px solid rgba(212,118,154,0.35);
  border-radius: 1.25rem;
  box-shadow: 0 4px 24px rgba(212,118,154,0.1);
}
.faq-quote-mark {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
  pointer-events: none;
}
.faq-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  background: linear-gradient(135deg, var(--accent), #9b3a6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- POSTOP SECTION ---- */
.posop-section { background: var(--bg-2); }
.posop-container {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}
.posop-desc {
  font-size: 1rem;
  color: var(--ink-mute);
  margin-bottom: 2.5rem;
  max-width: 52ch;
}
.posop-tips {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.posop-tip {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.posop-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 600;
  min-width: 2.2rem;
  line-height: 1;
  padding-top: 0.1rem;
}
.posop-tip strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.posop-tip p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
.posop-img-reveal {
  border-radius: 1.5rem;
  overflow: hidden;
  opacity: 0;
  transform: translateX(40px) scale(0.96);
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.55s cubic-bezier(0.22,1,0.36,1);
  box-shadow: var(--shadow-lg);
}
.posop-section:hover .posop-img-reveal {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.posop-img { width: 100%; height: auto; display: block; }
@media (max-width: 860px) {
  .posop-container {
    grid-template-columns: 1fr;
  }
  .posop-img-reveal {
    opacity: 1;
    transform: none;
    order: -1;
  }
}

.offer-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2c1825 0%, #3e1f33 60%, #2a1b2e 100%);
}
.offer-mesh {
  position: absolute;
  inset: -20%;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(196,120,144,0.40) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(232,174,192,0.32) 0%, transparent 60%);
  filter: blur(70px);
  pointer-events: none;
}
.offer-container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}
.offer-badge-top {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.offer-title {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.8rem);
  margin-bottom: 1.2rem;
}
.offer-title em { color: var(--gold-light); }
.offer-desc {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 50ch;
  margin: 0 auto 2.4rem;
}
.offer-perks {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
  max-width: 360px;
  margin: 0 auto 2.8rem;
  text-align: left;
}
.offer-perks li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
}
.perk-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  flex-shrink: 0;
}
.offer-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 2rem; }
.offer-urgency {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.60);
  font-family: "Montserrat", sans-serif;
}
.offer-urgency strong { color: var(--gold-light); }

/* ---- LOCATIONS ---- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.locations-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) { .locations-grid--3 { grid-template-columns: 1fr; } }
.location-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.location-card { overflow: hidden; }
.location-map-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.location-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s var(--ease-out);
}
@media (hover: hover) {
  .location-card:hover .location-map-img { transform: scale(1.04); }
}
.location-map-label {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
}
.location-info { padding: 2rem; }
.location-city {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  font-weight: 400;
}
.location-detail {
  font-size: 0.82rem;
  color: var(--ink-mute);
  font-style: italic;
  margin-bottom: 0.8rem;
  line-height: 1.45;
}
.location-address, .location-schedule {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--ink-mute);
  margin-bottom: 0.6rem;
}
.location-info .btn { margin-top: 1.4rem; }

/* ---- BOOKING ---- */
.booking-section { background: var(--bg-2); }
.booking-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.booking-desc {
  font-size: 1.02rem;
  margin-bottom: 2.5rem;
}
.booking-wa-alt {
  padding: 1.8rem;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.20);
  border-radius: var(--radius-md);
}
.booking-wa-alt p {
  font-size: 0.9rem;
  color: var(--ink-mute);
  margin-bottom: 1rem;
}

/* Form */
.booking-form-wrap { padding: 2.4rem; position: relative; }

.form-title {
  font-size: 1.5rem;
  margin-bottom: 1.8rem;
  font-weight: 400;
}
.form-row { margin-bottom: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.82rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.form-field input,
.form-field select {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.80);
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239c7e72' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,149,106,0.15);
}
.form-privacy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin-top: 1rem;
}

/* Form success */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 0;
}
.form-success.is-active { display: flex; }
.success-icon { animation: successPop 0.5s var(--ease-out) both; }
@keyframes successPop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.form-success h3 { font-size: 1.6rem; }
.form-success p { color: var(--ink-mute); }

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-bottom: 4rem;
}
.testimonials-grid--5 {
  grid-template-columns: repeat(6, 1fr);
}
.testimonials-grid--5 .testimonial-card { grid-column: span 2; }
.testimonials-grid--5 .testimonial-card:nth-child(4) { grid-column: 2 / 4; }
.testimonials-grid--5 .testimonial-card:nth-child(5) { grid-column: 4 / 6; }

.testimonial-card { padding: 0; overflow: hidden; }
.tc-photo {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: var(--bg-2);
}
.tc-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s var(--ease-out);
}
.testimonial-card:hover .tc-photo-img { transform: scale(1.04); }
.tc-photo-labels {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 0.6rem;
}
.tc-photo-labels span {
  font-family: "Montserrat", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  backdrop-filter: blur(4px);
}
.tc-photo-labels span:last-child {
  background: linear-gradient(135deg, var(--accent), var(--gold));
}
.tc-body { padding: 1.4rem; }
.tc-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.tc-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.tc-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}
.tc-author strong { display: block; font-size: 0.92rem; color: var(--ink); }
.tc-author span { font-size: 0.78rem; color: var(--ink-mute); font-family: "Montserrat", sans-serif; }

.testimonials-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2.5rem;
  background: var(--bg-2);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
}
.trust-stat { text-align: center; }
.trust-stat strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.trust-stat span {
  font-size: 0.8rem;
  font-family: "Montserrat", sans-serif;
  color: var(--ink-mute);
}
.trust-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--line);
}

/* ---- FINAL CTA ---- */
.finalcta-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
}
.finalcta-mesh {
  position: absolute;
  inset: -20%;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(245,150,192,0.52) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(212,118,154,0.32) 0%, transparent 60%);
  filter: blur(70px) saturate(120%);
  pointer-events: none;
}
.finalcta-container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 740px;
  margin-inline: auto;
}
.finalcta-title {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  margin-bottom: 1.2rem;
}
.finalcta-sub {
  font-size: 1.1rem;
  color: var(--ink-mute);
  max-width: 48ch;
  margin: 0 auto 2.8rem;
}
.finalcta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--ink);
  padding-block: 3rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.3rem; }
.footer-logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.90);
}
.footer-tag {
  font-size: 0.72rem;
  font-family: "Montserrat", sans-serif;
  color: var(--gold-light);
  letter-spacing: 0.1em;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-family: "Montserrat", sans-serif;
  transition: color 0.2s;
}
@media (hover: hover) { .footer-links a:hover { color: var(--gold-light); } }
.footer-legal { width: 100%; border-top: 1px solid rgba(255,255,255,0.10); padding-top: 1.5rem; }
.footer-legal p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.3rem;
}

/* ============================================================
   RESPONSIVE — TABLET (≤960px)
   ============================================================ */
@media (max-width: 960px) {
  .hero-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .hero-img { height: 380px; object-fit: cover; }
  .hero-float-card--1 { left: 0; bottom: 3rem; }
  .hero-float-card--2 { right: 0; top: 1.5rem; }

  .trust-container { grid-template-columns: 1fr; }
  .trust-img-wrap { max-width: 100%; }
  .trust-img { height: 360px; }
  .trust-img-badge { right: 0; }

  .experience-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .experience-visual { order: -1; }
  .exp-img { height: 380px; }
  .exp-carousel { max-width: 100%; }

  .booking-container { grid-template-columns: 1fr; }

  .posop-container { grid-template-columns: 1fr; }
  .posop-img-reveal { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤640px)
   ============================================================ */
@media (max-width: 640px) {
  :root { --nav-h: 60px; }

  /* --- Global --- */
  .section { padding-block: clamp(3rem, 8vw, 5rem); }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .section-sub { font-size: 0.95rem; }

  /* --- Nav --- */
  .nav-logo-name { font-size: 1.1rem; }

  /* --- Hero --- */
  .hero { padding-block: calc(var(--nav-h) + 2rem) 3rem; }
  .hero-kicker { font-size: 0.62rem; }
  .hero-title { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-img { height: 280px; border-radius: var(--radius-md); }
  .hero-actions { flex-direction: column; gap: 0.8rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-badges { flex-wrap: wrap; gap: 0.5rem; }
  .hero-float-card { padding: 0.6rem 0.9rem; gap: 0.5rem; }
  .hero-float-card--1 { left: 0.5rem; bottom: 1rem; }
  .hero-float-card--2 { right: 0.5rem; top: 0.8rem; }
  .hfc-text strong { font-size: 0.85rem; }
  .hfc-text span { font-size: 0.68rem; }

  /* --- Quiénes somos --- */
  .trust-img { height: 280px; border-radius: var(--radius-md); }
  .trust-list { gap: 1.2rem; }
  .trust-item { gap: 0.7rem; }

  /* --- Benefits --- */
  .benefits-grid { grid-template-columns: 1fr 1fr !important; gap: 0.8rem; }
  .benefit-card { padding: 1.2rem; }
  .benefit-card h3 { font-size: 0.9rem; }
  .benefit-card p { font-size: 0.78rem; }

  /* --- Experience --- */
  .exp-carousel { border-radius: var(--radius-md); }
  .exp-carousel-img { max-height: 260px; }
  .experience-items { gap: 1.4rem; }
  .exp-number { font-size: 2rem; }
  .exp-trust-badge { padding: 0.75rem 1rem; }
  .exp-address-link { font-size: 0.78rem; }

  /* --- Before & After --- */
  .ba-grid,
  .ba-grid--5 { grid-template-columns: 1fr !important; }
  .ba-grid--5 .ba-card,
  .ba-grid--5 .ba-card:nth-child(4),
  .ba-grid--5 .ba-card:nth-child(5) { grid-column: auto !important; }
  .ba-img { height: 260px; object-fit: cover; width: 100%; }

  /* --- FAQ --- */
  .faq-grid { grid-template-columns: 1fr; gap: 1rem; }
  .toxina-info-block { padding: 1.4rem; }
  .tib-title { font-size: 1.3rem; }
  .faq-quote { padding: 2rem 1.2rem 1.6rem; margin-top: 2rem; }
  .faq-quote p { font-size: 1.1rem; }
  .faq-quote-mark { font-size: 3.5rem; }

  /* --- Postop --- */
  .posop-tips { gap: 1rem; }
  .posop-tip { gap: 0.8rem; align-items: flex-start; }
  .posop-num { font-size: 1.2rem; min-width: 32px; }

  /* --- Testimonials --- */
  .testimonials-grid,
  .testimonials-grid--5 { grid-template-columns: 1fr !important; }
  .testimonials-grid--5 .testimonial-card,
  .testimonials-grid--5 .testimonial-card:nth-child(4),
  .testimonials-grid--5 .testimonial-card:nth-child(5) { grid-column: auto !important; }
  .testimonials-trust { flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
  .trust-stat-divider { display: none; }

  /* --- Products --- */
  .products-grid { grid-template-columns: 1fr; }
  .product-img-wrap { min-height: 200px; }
  .product-body { padding: 1.2rem; }
  .product-price-row { flex-wrap: wrap; gap: 0.6rem; }

  /* --- Locations --- */
  .locations-grid--3 { grid-template-columns: 1fr !important; }
  .location-card { border-radius: var(--radius-md); }
  .location-map-img { height: 180px; }

  /* --- Booking / Agenda --- */
  .booking-container { gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  /* --- Final CTA --- */
  .finalcta-title { font-size: clamp(1.7rem, 7vw, 2.5rem); }
  .finalcta-sub { font-size: 0.95rem; }
  .finalcta-actions { flex-direction: column; align-items: center; }
  .finalcta-actions .btn { width: 100%; max-width: 340px; justify-content: center; }

  /* --- Offer --- */
  .offer-actions { flex-direction: column; align-items: center; }
  .offer-actions .btn { width: 100%; max-width: 340px; justify-content: center; }

  /* --- Footer --- */
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-links { gap: 1rem; }
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section { background: var(--bg-2); }

.products-trust-banner {
  background: linear-gradient(90deg, var(--accent) 0%, var(--pink-deep) 100%);
  color: #fff;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0;
}
.ptb-icon { font-size: 0.65rem; opacity: 0.75; }

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

/* ---- Product Carousel ---- */
.product-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.pc-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: center;
}
.pc-slide {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
}
.pc-slide--video {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  max-height: 420px;
  min-height: 260px;
  overflow: hidden;
}
/* Before/after portrait slides — cream background fills letterbox area */
.pc-slide--ba {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  height: 420px;
  overflow: hidden;
}
.pc-slide--ba img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 640px) {
  .pc-slide--ba { height: 300px; }
}
.pc-video {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
  display: block;
  background: #000;
}
.pc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,248,252,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 3;
  padding: 0;
}
.pc-btn:hover { background: rgba(255,255,255,0.98); transform: translateY(-50%) scale(1.08); }
.pc-btn--prev { left: 0.6rem; }
.pc-btn--next { right: 0.6rem; }
.pc-dots {
  position: absolute;
  bottom: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 3;
}
.pc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: background 0.25s, transform 0.25s;
  cursor: pointer;
}
.pc-dot.is-active { background: #fff; transform: scale(1.35); }

/* ---- Product Card ---- */
.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Image */
.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img { transform: scale(1.03); }

.product-badge-discount {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.7rem;
  border-radius: 99px;
}
.product-badge-invima {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(44, 24, 37, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--accent-2);
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.7rem;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Body */
.product-body {
  padding: 1.8rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.85rem;
}

.product-category {
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}

.product-tagline {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

.product-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.product-benefits li {
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding-left: 1.2rem;
  position: relative;
}
.product-benefits li::before {
  content: "✦";
  position: absolute;
  left: 0;
  font-size: 0.55rem;
  color: var(--accent);
  top: 0.18em;
}

/* Instructions accordion */
.product-instructions {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.6rem 0;
}
.product-instructions summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.3rem 0;
  user-select: none;
}
.product-instructions summary::-webkit-details-marker { display: none; }
.product-instructions .pi-arrow {
  transition: transform 0.25s ease;
  color: var(--accent);
  flex-shrink: 0;
}
.product-instructions[open] .pi-arrow { transform: rotate(180deg); }
.product-instructions p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0.8rem 0 0.3rem;
}

/* Pricing */
.product-pricing {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}
.product-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}
.product-price-old {
  font-size: 1rem;
  color: var(--ink-mute);
  text-decoration: line-through;
  opacity: 0.7;
}
.product-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.product-savings {
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wa-dark);
  background: rgba(37, 211, 102, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  align-self: center;
}

.product-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  margin-top: 0.3rem;
}

/* ---- Mobile ---- */
@media (max-width: 700px) {
  .products-grid { grid-template-columns: 1fr; }
  .product-img-wrap { min-height: 180px; }
  .product-body { padding: 1.4rem 1.4rem 1.8rem; }
}

/* ============================================================
   TOXINA INFO BLOCK
   ============================================================ */
.toxina-info-block {
  margin-bottom: 3rem;
  padding: 2.4rem 2.8rem;
}
.tib-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.tib-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.tib-kicker {
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.tib-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.tib-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tib-body p {
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0;
}
.tib-body strong { color: var(--ink); }
.tib-alert {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(212, 118, 154, 0.08);
  border: 1px solid rgba(212, 118, 154, 0.25);
  border-left: 3px solid var(--accent);
  border-radius: 0.75rem;
  padding: 1.1rem 1.3rem;
  margin-top: 0.5rem;
}
.tib-alert svg { color: var(--accent); flex-shrink: 0; margin-top: 0.15rem; }
.tib-alert p { margin: 0; font-size: 0.9rem; }

@media (max-width: 700px) {
  .toxina-info-block { padding: 1.6rem; }
  .tib-header { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .tib-alert { flex-direction: column; gap: 0.6rem; }
}

/* ============================================================
   EXPERIENCE TRUST BADGE
   ============================================================ */
.exp-trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid var(--accent);
  border-radius: 0.85rem;
  padding: 0.95rem 1.2rem;
  margin-top: 1rem;
  box-shadow: 0 0 0 4px rgba(212,118,154,0.12), var(--shadow-sm);
}
.exp-trust-badge svg { color: var(--accent); flex-shrink: 0; margin-top: 0.1rem; }
.exp-trust-badge span { font-size: 0.82rem; color: var(--ink); font-weight: 500; line-height: 1.5; }
.exp-trust-badge--inline { margin-top: 1.4rem; }

.exp-address-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--accent);
  text-decoration: none;
  margin-top: 0.7rem;
  font-style: italic;
  transition: opacity 0.2s;
}
.exp-address-link:hover { opacity: 0.75; text-decoration: underline; }

.location-address-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-style: italic;
  transition: opacity 0.2s;
}
.location-address-link:hover { opacity: 0.75; text-decoration: underline; }
.location-address-link svg { flex-shrink: 0; }

.location-note {
  font-size: 0.78rem;
  color: var(--ink-mute);
  font-style: italic;
  margin-bottom: 0.8rem;
  line-height: 1.45;
}

.location-wip-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-mute);
  background: rgba(0,0,0,0.05);
  border: 1.5px dashed rgba(0,0,0,0.18);
  border-radius: 2rem;
  padding: 0.45em 1em;
  letter-spacing: 0.04em;
}

/* ============================================================
   REDUCED MOTION (only gate intrusive)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .hero-float-card { animation: none; }
  .meshDrift { animation: none; }
}
