/* ══════════════════════════════════════════════
   FLEXI PRO — Stylesheet
   Mobile-first, desktop breakpoint at 900px
══════════════════════════════════════════════ */

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

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 10px 18px;
  background: var(--red, #a72526);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top .15s;
}

.skip-link:focus { top: 0; }

html {
  scroll-behavior: smooth;
}

:root {
  --red:     #a72526;
  --dark:    #111111;
  --charcoal:#2d2929;
  --mid:     #1c1818;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--dark);
  color: #fff;
  overflow-x: hidden;
}

img { width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
p   { font-size: 1.2rem; }

.container {
  width: 95%;
  max-width: 1200px;
  margin: auto;
}

/* ── HEADER ──────────────────────────────────── */

#header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  font-size: 1.8rem;
  color: var(--red);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -1px;
}

/* Nav logo (image or text fallback) */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 100px;
  height: auto;
  display: block;
}

.nav-logo--mujer              { display: none; }
body.theme-mujer .nav-logo--hombre { display: none; }
body.theme-mujer .nav-logo--mujer  { display: flex; }

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(10,10,10,.96);
  backdrop-filter: blur(18px);
  z-index: 998;
  padding: 16px 0 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}

.nav-links a {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .5px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .3s;
}

.nav-links a:hover { color: var(--red); }

.nav-links.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Hamburger button */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1000;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .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 (min-width: 900px) {
  .nav-hamburger { display: none; }
}

.nav-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-icons span {
  width: 14px;
  height: 14px;
  background: #fff;
  display: block;
}

/* ── HERO ────────────────────────────────────── */

.hero-wrapper {
  position: relative;
}

.hero {
  min-height: calc(100vh - 40px);
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.2) 0%, rgba(0,0,0,.72) 100%),
    url("/static/images/hero-bg.01df4199bf7b.jpg") center / cover no-repeat;
}

.hero-left {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 40px);
  padding: 90px 8% 180px 12%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
}

@media (min-width: 900px) {
  .hero-left {
    justify-content: center;
    padding-bottom: 60px;
  }
}

/* Floats at seam: absolute so it leaves no gap in the document flow */
.hero-form-float {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(50%);
  z-index: 30;
  padding: 0 5%;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.hero-form-float .hero-contact-card {
  pointer-events: auto;
  box-shadow: 0 12px 48px rgba(0,0,0,.22);
  width: 100%;
  max-width: 540px;
}

.hero-tagline {
  margin-top: 3rem;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 5px;
  line-height: 1.4;
  color: #fff;
}

.hero-title {
  font-size: clamp(4.5rem, 20vw, 15rem);
  font-weight: 900;
  line-height: .88;
  text-transform: uppercase;
  letter-spacing: -3px;
}

.hero-title .t-red {
  color: var(--red);
  font-style: italic;
}

/* ── HERO LOGO BAND ── */
.hero-logo-band {
  display: flex;
  align-items: center;
}

.logo-hombre,
.logo-mujer {
  display: flex;
  align-items: center;
  width: 100%;
}

.logo-mujer                   { display: none; }
body.theme-mujer .logo-hombre { display: none; }
body.theme-mujer .logo-mujer  { display: flex; }

.hero-logo-img {
  width: 100%;
  max-width: 720px;
  height: auto;
  filter: drop-shadow(0 6px 28px rgba(0,0,0,.55));
}

.hero-logo-text {
  font-size: clamp(6rem, 30vw, 22rem);
  font-weight: 900;
  line-height: .85;
  text-transform: uppercase;
  letter-spacing: -4px;
}

/* ── HERO CONTACT CARD ── */
.hero-contact-card {
  background: #fff;
  color: #111;
  border-radius: 0;
  padding: 36px 32px;
  width: 100%;
  max-width: 480px;
}

.hero-contact-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 4px;
}

.hero-contact-card > .card-subtitle {
  font-size: .78rem;
  color: #555;
  margin-bottom: 20px;
}

.hero-contact-card .cf-field label {
  color: #555;
}

.hero-contact-card .cf-field input,
.hero-contact-card .cf-field textarea {
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 0;
  color: #111;
}

.hero-contact-card .cf-field input:focus,
.hero-contact-card .cf-field textarea:focus {
  border-color: var(--red);
  background: #fff;
}

.hero-contact-card .cf-checkbox {
  color: #444;
}

.hero-contact-card .cf-error {
  color: #a72526;
}

.hero-contact-card .btn {
  width: 100%;
  text-align: center;
}

/* ── FEATURES (pinned scroll section) ────────── */

.features {
  height: 100svh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 899px) {
  .features {
    height: auto;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 420px; /* fallback until JS measures card */
  }

  /* These only exist for desktop animation — hide on mobile */
  .feat-footer,
  .feat-pag,
  .bg-word {
    display: none;
  }
}


/* Huge watermark background word */
.bg-word {
  position: absolute;
  font-size: clamp(9rem, 28vw, 26rem);
  font-weight: 900;
  color: #fff;
  opacity: .04;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  letter-spacing: -4px;
}

/* Phase 1: intro overlay */
.feat-intro {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
  padding: 20px;
}

@media (max-width: 899px) {
  .feat-intro {
    position: relative;
    inset: auto;
    width: 100%;
    flex-shrink: 0;
  }
}

.feat-intro h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 18px;
  font-style: italic;
}

.feat-intro p {
  color: #bbb;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.2rem;
}

/* Phase 2: shoe + specs */
.feat-main {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

@media (max-width: 899px) {
  .feat-main {
    position: relative;
    inset: auto;
    width: 100%;
    flex-direction: column;
    padding: 40px 0 0;
  }
}

/* Shoe */
.shoe-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shoe-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--red), transparent 65%);
  border-radius: 50%;
  filter: blur(55px);
  opacity: .55;
}

.shoe-img {
  max-width: 280px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.7));
}

/* Mobile specs (shown on mobile, hidden on desktop) */
/* ── Featured product toggles (all breakpoints) ── */
.shoe-img--mujer                        { display: none; }
body.theme-mujer .shoe-img--hombre      { display: none; }
body.theme-mujer .shoe-img--mujer       { display: block; }

.feat-specs--mujer                      { opacity: 0; pointer-events: none; }
body.theme-mujer .feat-specs--hombre    { opacity: 0; pointer-events: none; }
body.theme-mujer .feat-specs--mujer     { opacity: 1; pointer-events: auto; }

.specs-mobile {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 60px;
  padding: 0 24px;
  z-index: 4;
}

.specs-mobile--mujer                    { display: none; }
body.theme-mujer .specs-mobile--hombre  { display: none; }

@media (max-width: 899px) {
  .specs-mobile {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 24px 24px 40px;
  }
  body.theme-mujer .specs-mobile--mujer { display: grid; }
}

.sm-spec {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.sm-icon {
  font-size: 1.1rem;
  line-height: 1.2;
  flex-shrink: 0;
}

.sm-icon-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  object-position: left bottom;
  filter: brightness(0) invert(1);
}

.sm-spec small {
  font-size: .65rem;
  color: #888;
  display: block;
  line-height: 1.4;
}

.sm-spec h3 {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

/* Desktop floating specs (hidden on mobile) */
.spec-abs {
  display: none;
  position: absolute;
  z-index: 4;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.spec-abs .sa-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.spec-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-abs small {
  font-size: clamp(1.2rem, 1.6vw, 1.3rem);
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1.2;
}

.spec-abs h3 {
  font-size: .68rem;
  font-weight: 400;
  line-height: 1;
}

/* Right-aligned specs (positions 2 and 3) */
.s-right {
  text-align: right;
  align-items: flex-end;
}

.sa-icon-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  object-position: left bottom;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

/* Features footer: CTA (bottom center) */
.feat-footer {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 6;
}

@media (max-width: 899px) {
  .feat-footer {
    display: flex;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 40px;
    padding-bottom: 48px;
  }
}

/* ── BUTTONS ─────────────────────────────────── */

.btn {
  display: inline-block;
  border: 2px solid var(--red);
  padding: 13px 34px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  color: inherit;
  transition: background .3s, color .3s, transform .25s;
}

.btn:hover {
  background: var(--red);
  transform: translateY(-3px);
}

.btn-dark {
  border-color: #222;
  color: #222;
}

.btn-dark:hover {
  background: #222;
  color: #fff;
}

.btn-outline-white {
  border-color: #fff;
}

.btn-outline-white:hover {
  background: #fff;
  color: #222;
}

/* ── INFO BLOCKS ─────────────────────────────── */

.info-section {
  background: #fff;
  color: #222;
}

.info-block {
  display: flex;
  flex-direction: column;
}

.info-left {
  background: #322d2d;
  color: #fff;
  padding: 50px 40px;
}

.info-left ul {
  list-style: none;
  font-style: italic;
  line-height: 2.5;
  color: #888;
  font-size: .9rem;
}

.info-right {
  background: #fff;
  padding: 50px 40px;
}

.info-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.info-badge .badge-icon {
  font-size: 2rem;
}

.info-badge-img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

.info-right h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 900;
  margin-bottom: 14px;
}

.info-right p {
  line-height: 1.8;
  color: #555;
  font-size: 1.2rem;
}

/* ── RED PROMO ───────────────────────────────── */

.promo {
  background: var(--red);
  padding: 80px 0;
  text-align: center;
}

.promo h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.promo p {
  max-width: 600px;
  margin: auto;
  line-height: 1.8;
  opacity: .9;
  font-size: 1.2rem;
}

.promo-img-title {
  width: 100px;
  height: auto;
  object-fit: contain;
}

/* ── CATALOG ─────────────────────────────────── */

.catalog {
  background: var(--dark);
  padding: 80px 0 0;
}

.catalog-header {
  text-align: center;
  padding-bottom: 50px;
}

.catalog-header h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.catalog-title-img {
  max-height: 80px;
  width: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto 12px;
}

.catalog-header p {
  color: #bbb;
  max-width: 580px;
  margin: auto;
  line-height: 1.8;
  font-size: 1.2rem;
}

/* Gender selector */
.gender-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.gender-box {
  position: relative;
  height: 420px;       /* taller than before */
  overflow: hidden;
  cursor: pointer;
}

.gender-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.gender-box:hover img,
.gender-box.active img {
  transform: scale(1.06);
}

.gender-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 30%, rgba(0,0,0,.1));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.gender-overlay h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  font-style: italic;
}

.gender-arrow {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 1.6rem;
  transition: transform .3s;
}

.gender-box:hover .gender-arrow { transform: translate(3px,-3px); }

.gender-box.active::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}

/* ── PRODUCT SLIDER ──────────────────────────── */

.slider-section { background: var(--mid); position: relative; }

.slider-overflow { overflow: hidden; cursor: grab; touch-action: pan-y; user-select: none; }
.slider-overflow:active { cursor: grabbing; }

.slider-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.product-card {
  flex-shrink: 0;
  width: 100%;
  padding: 50px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.product-card img {
  max-width: 190px;
  margin: auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.5));
}

.product-card h3 {
  font-size: 1.4rem;
  font-weight: 900;
  font-style: italic;
  margin-top: 22px;
}

.product-card .btn { margin-top: 14px; font-size: .8rem; padding: 10px 22px; }

.card-red   { background: var(--red); }
.card-white { background: #fff; color: #222; }
.card-dark  { background: #2e2929; }

.card-white .btn { border-color: #222; color: #222; }
.card-white .btn:hover { background: #222; color: #fff; }

/* Slider controls */
.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 30px;
  background: var(--dark);
}

.slider-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 8px;
  transition: color .2s;
}

.slider-btn:hover { color: var(--red); }

.slider-dots { display: flex; gap: 10px; }

.dot {
  width: 38px;
  height: 4px;
  background: #444;
  transition: background .3s;
}

.dot.active { background: var(--red); }

/* ── FOOTER ──────────────────────────────────── */

/* ── FOOTER ── */
.site-footer {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.08);
  color: #111;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 56px 0 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-flexi-logo {
  width: 90px;
  height: auto;
}

.footer-tagline {
  font-size: .75rem;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: .82rem;
  color: #888;
  transition: color .2s;
}

.footer-col a:hover { color: #111; }

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 1.2rem;
  color: #aaa;
  letter-spacing: .5px;
}

@media (min-width: 900px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-brand { max-width: 200px; }
}

/* ══════════════════════════════════════════════
   DESKTOP  ≥ 900px
══════════════════════════════════════════════ */

@media (min-width: 900px) {

  .nav-links {
    position: static;
    flex-direction: row;
    gap: 30px;
    background: none;
    backdrop-filter: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .nav-links a {
    padding: 0;
    border-bottom: none;
    font-size: .85rem;
  }

  .hero-left {
    max-width: 50%;
    justify-content: center;
    padding: 100px 8% 80px 12%;
  }

  .hero-form-float {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 4%;
    left: auto;
    bottom: auto;
    width: 44%;
    padding: 0;
    justify-content: center;
  }

  .hero-form-float .hero-contact-card {
    box-shadow: 0 12px 48px rgba(0,0,0,.22);
    max-width: 100%;
    width: 100%;
  }

  .hero-tagline { font-size: 2.3rem; letter-spacing: 4px; }

  /* Features: show floating specs, hide mobile grid */
  .specs-mobile { display: none; }

  .spec-abs {
    display: flex;
    opacity: 0;
    transform: translateX(-90px);
  }
  .s-pos-2, .s-pos-3 { transform: translateX(90px); }

  /* Spec positions — generic */
  .s-pos-1  { top: 16%;  left: 9%; }
  .s-pos-2  { top: 16%;  right: 9%; }
  .s-pos-3  { top: 44%;  right: 9%; }
  .s-pos-4  { top: 62%;  left: 9%; }
  .s-pos-5  { top: 74%;  left: 9%; }


  .shoe-glow  { width: 420px; height: 420px; }
  .shoe-img   { max-width: 440px; }

  .info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .info-block {
    display: grid;
    grid-template-columns: 1fr 3fr;
  }

  .info-left {
    position: relative;
    padding-right: 72px;
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
  }

  .info-right {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* Slider: 3 cards */
  .product-card { width: 33.333%; }

  /* Taller gender images on desktop */
  .gender-box { height: 500px; }
}

@media (min-width: 1200px) {
  .hero-tagline { font-size: 2.3rem; letter-spacing: 4px; }
  .shoe-img     { max-width: 520px; }
}

/* ── SECTION IMAGES ── */
.section-img {
  display: block;
  border-radius: 8px;
  object-fit: cover;
  margin: 20px 0;
}
.section-img--icon   { width: 120px; height: auto; }
.section-img--small  { width: 280px; height: 175px; }
.section-img--medium { width: 400px; height: 250px; }
.section-img--large  { width: 600px; height: 375px; }

/* compound selectors (0,2,0) beat .section-img margin (0,1,0) */
.section-img.promo-img-title,
.section-img.section-img--icon { display: block; margin: 0 auto 24px; height: auto; }

/* ── CONTACT SECTION ── */
.contact-section {
  background: #111;
  padding: 80px 20px;
  color: #fff;
}
.contact-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 10px;
}
.contact-section > .container > p {
  color: rgba(255,255,255,.6);
  margin-bottom: 40px;
}

.contact-form { max-width: 800px; }

.cf-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .cf-row { grid-template-columns: 1fr 1fr; }
}

.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-full  { margin-bottom: 20px; }

.cf-field label {
  font-size: .75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.cf-field input,
.cf-field textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  color: #fff;
  padding: 12px 14px;
  font-size: .95rem;
  font-family: inherit;
  transition: border-color .2s;
  resize: vertical;
}
.cf-field input:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(167,37,38,.35);
}

.cf-error {
  font-size: .78rem;
  color: #ef9a9a;
}

.cf-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.7);
  font-size: .88rem;
}
.cf-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  cursor: pointer;
  flex-shrink: 0;
}

.contact-success {
  background: rgba(76, 175, 80, .12);
  border: 1px solid rgba(76, 175, 80, .4);
  border-radius: 8px;
  padding: 20px 24px;
  color: #a5d6a7;
  font-size: 1rem;
  max-width: 480px;
}

/* ── GENDER THEME TOGGLE ── */
body.theme-mujer {
  --red: #8EC5C5;
}

.theme-toggle {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.tt-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.6);
  border-radius: 100px;
  padding: 8px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s;
}

.tt-btn:hover {
  border-color: rgba(255,255,255,.8);
  color: #fff;
}

.tt-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ── SCROLL TO TOP ───────────────────────────── */

.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover { background: #8b1e1f; }
