:root {
  --brand: #ff3f02;
  --brand-soft: #ff6a3d;
  --brand-deep: #c93200;
}

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

html {
  scroll-behavior: smooth;
  /* Compensa el top-nav fijo al ir a #comprar / #contenido */
  scroll-padding-top: 5.75rem;
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 0.75rem;
    scroll-padding-bottom: 6.5rem;
  }
}

body {
  margin: 0;
  min-height: 100%;
  font-family: "Poppins", ui-sans-serif, sans-serif;
}

/* Desktop top navigation */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.top-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.85rem 1.75rem;
}

.top-nav__brand {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border-radius: 10px;
  background: var(--brand);
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.top-nav__brand:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
}

.top-nav__brand:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
}

.top-nav__logo {
  display: block;
  height: 22px;
  width: auto;
}

.top-nav__tabs {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 9999px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.top-nav__link:hover {
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 8%, transparent);
}

.top-nav__link:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Product switcher D3 | EBD */
.product-switch {
  position: sticky;
  top: 0;
  z-index: 55;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
  .product-switch {
    /* Despeja el top-nav fixed para que el padding superior se vea */
    margin-top: 3.65rem;
    top: 3.65rem;
  }

  html {
    scroll-padding-top: 8.75rem;
  }
}

.product-switch__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.15rem 1rem 0.9rem;
}

.product-switch__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #5c5652;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  transition: background 0.2s ease, color 0.2s ease;
}

@media (min-width: 640px) {
  .product-switch__tab {
    font-size: 0.875rem;
    padding: 0.4rem 1.1rem;
  }
}

.product-switch__tab:hover {
  color: #1d1d1f;
  background: rgba(0, 0, 0, 0.04);
}

.product-switch__tab.is-active,
.product-switch__tab[aria-current="page"] {
  color: #fff;
  background: var(--brand);
}

.product-switch__tab:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

/* Soft continuous wash — no hard layer edges */
.hero {
  background:
    radial-gradient(
      120% 90% at 50% 12%,
      #ffffff 0%,
      color-mix(in srgb, var(--brand) 8%, #fff) 35%,
      color-mix(in srgb, var(--brand) 18%, #fff8f5) 68%,
      color-mix(in srgb, var(--brand) 24%, #ffeae2) 100%
    );
}

.hero__glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 55% at 50% 58%,
    color-mix(in srgb, var(--brand) 18%, transparent) 0%,
    transparent 72%
  );
}

.hero__accent {
  color: color-mix(in srgb, var(--brand) 78%, #ff9a7a);
}

.hero__brand {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6560;
}

/* Mismo tamaño para los 3 H1; “Pantalla para tu mostrador.” en una línea */
.hero__title {
  font-size: clamp(1.2rem, 4.6vw, 2.85rem);
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin-top: 0.15em;
  padding-top: 0.15em;
  padding-bottom: 0.35em;
  overflow: visible;
  min-height: 1.7em;
  max-width: min(100%, 36ch);
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}

.hero__title-text {
  display: inline-block;
  white-space: nowrap;
  padding: 0.08em 0.04em 0.22em;
  line-height: 1.3;
  background-image: linear-gradient(
    180deg,
    #9a2200 0%,
    #ff3f02 42%,
    #ff7a4d 78%,
    #ff9a70 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero__title-text.is-out {
  opacity: 0;
  transform: translateY(0.12em);
}

.hero__product-name {
  position: relative;
  z-index: 2;
  margin: 0;
  line-height: 1.2;
}

.hero__stage {
  width: 100%;
  overflow: visible;
}

.hero__copy {
  position: relative;
  z-index: 3;
  overflow: visible;
  animation: hero-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__figure {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  /* Menos overlap: los H1 largos tienen descendentes (g, p) */
  margin-top: -1.75rem;
}

.hero__screen-stack {
  position: relative;
  width: min(78vw, 560px);
  max-height: min(58vh, 520px);
  aspect-ratio: 1200 / 800;
  filter: drop-shadow(0 22px 40px rgba(20, 10, 5, 0.16));
  opacity: 0;
  transform: translateY(36px) scale(0.9);
  animation: hero-image-in 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.hero__screen-stack .hero__image {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  margin: 0;
  object-fit: contain;
  opacity: 1;
  transform: none;
  animation: none;
  filter: none;
}

@media (min-width: 640px) {
  .hero__figure {
    margin-top: -2.5rem;
  }

  .hero__screen-stack {
    width: min(70vw, 600px);
    max-height: min(62vh, 560px);
  }
}

@media (min-width: 768px) {
  .hero__figure {
    margin-top: -3.25rem;
  }

  .hero__screen-stack {
    width: min(58vw, 640px);
    max-height: min(64vh, 580px);
  }
}

/* EBD: dispositivo superpuesto a la izquierda del hero */
.hero__figure--ebd .hero__screen-stack {
  overflow: visible;
}

.hero__ebd-overlay {
  position: absolute;
  z-index: 3;
  left: 4%;
  bottom: 18%;
  width: min(42%, 11.5rem);
  height: auto;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 18px 28px rgba(20, 10, 5, 0.28));
  opacity: 0;
  transform: translateY(24px) scale(0.92);
  animation: hero-image-in 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

@media (min-width: 640px) {
  .hero__ebd-overlay {
    left: 2%;
    bottom: 20%;
    width: min(40%, 13.5rem);
  }
}

@media (min-width: 768px) {
  .hero__ebd-overlay {
    left: 0%;
    bottom: 22%;
    width: min(38%, 15rem);
  }
}

.hero__image {
  width: min(52vw, 380px);
  max-height: min(42vh, 400px);
  filter: drop-shadow(0 22px 40px rgba(20, 10, 5, 0.16));
  opacity: 0;
  transform: translateY(36px) scale(0.9);
  animation: hero-image-in 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.hero__actions {
  animation: hero-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

.hero__typewriter {
  min-height: 1.5em;
}

.hero__typewriter-text {
  white-space: pre-wrap;
}

.hero__caret {
  display: inline-block;
  width: 0.08em;
  height: 1.05em;
  margin-left: 0.08em;
  vertical-align: -0.12em;
  background: var(--brand);
  border-radius: 1px;
  animation: caret-blink 0.9s steps(1) infinite;
}

.hero__typewriter.is-done .hero__caret {
  opacity: 0;
  animation: none;
}

.hero__trust {
  margin: 0.15rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0.4rem;
  max-width: 34rem;
  text-align: center;
}

.hero__trust li {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #8a837c;
  line-height: 1.3;
}

.hero__trust li:not(:last-child)::after {
  content: "·";
  margin-left: 0.4rem;
  color: #c4bbb4;
  font-weight: 400;
}

.hero__cta {
  letter-spacing: -0.01em;
  min-width: 5.5rem;
}

.hero__price {
  margin: 0;
  font-weight: 500;
}

/* Mobile bottom navigation */
.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 0 10px calc(8px + env(safe-area-inset-bottom));
  pointer-events: none;
}

.bottom-nav__inner {
  pointer-events: auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.15rem;
  max-width: 420px;
  min-height: 64px;
  margin: 0 auto;
  padding: 0.45rem 0.35rem 0.5rem;
  border-radius: 22px;
  background: rgba(20, 16, 14, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  overflow: visible;
}

.bottom-nav__item {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  min-height: 52px;
  padding: 0.35rem 0.1rem;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.bottom-nav__item > span:not(.cart-badge) {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

.bottom-nav__item:hover,
.bottom-nav__item:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.bottom-nav__icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.bottom-nav__home {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  text-decoration: none;
  margin: 0 0.15rem;
  transform: translateY(-18px);
}

.bottom-nav__home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow:
    0 10px 28px rgba(255, 63, 2, 0.45),
    0 0 0 5px rgba(20, 16, 14, 0.94);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.bottom-nav__home:hover .bottom-nav__home-btn,
.bottom-nav__home:focus-visible .bottom-nav__home-btn {
  background: var(--brand-deep);
  transform: scale(1.04);
}

.bottom-nav__home:focus-visible {
  outline: none;
}

.bottom-nav__home:focus-visible .bottom-nav__home-btn {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.bottom-nav__logo {
  display: block;
  width: 32px;
  height: auto;
  object-fit: contain;
}

/* —— Nuestro producto / highlights carousel —— */
.highlights {
  background: #f5f5f7;
  padding: 4.5rem 0 5.5rem;
}

.highlights__intro {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}

.highlights__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #1d1d1f;
}

.highlights__carousel {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 0 0 1.5rem;
}

.highlights__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 1.5rem;
  padding: 0 1.5rem 1.25rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.highlights__track.is-auto-scrolling {
  scroll-snap-type: none;
}

.highlights__track::-webkit-scrollbar {
  display: none;
}

.highlights__slide {
  position: relative;
  flex: 0 0 min(78vw, 340px);
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #e8e8ed;
  isolation: isolate;
}

.highlights__media {
  position: absolute;
  inset: 0;
}

.highlights__poster,
.highlights__player,
.highlights__player iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 0;
}

.highlights__player {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #000;
}

.highlights__player[hidden] {
  display: none;
}

.highlights__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.15rem 1.15rem 1.35rem;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(12, 8, 6, 0.72) 0%,
      rgba(12, 8, 6, 0.28) 34%,
      transparent 58%
    ),
    linear-gradient(
      0deg,
      rgba(12, 8, 6, 0.45) 0%,
      transparent 32%
    );
}

.highlights__slide.is-playing .highlights__overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.highlights__caption-wrap {
  position: relative;
  align-self: flex-start;
  max-width: min(100%, 17rem);
  padding: 0.95rem 1.05rem 1.05rem;
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.16) 0%,
      rgba(255, 255, 255, 0.05) 48%,
      rgba(255, 63, 2, 0.12) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  overflow: hidden;
}

.highlights__caption-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  bottom: 0.85rem;
  width: 3px;
  border-radius: 9999px;
  background: linear-gradient(
    180deg,
    #ffb08a 0%,
    var(--brand) 45%,
    #c93200 100%
  );
  box-shadow: 0 0 16px rgba(255, 63, 2, 0.35);
}

.highlights__caption {
  position: relative;
  margin: 0;
  padding-left: 0.7rem;
  font-size: clamp(1.2rem, 3.2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.035em;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.highlights__slide-play {
  pointer-events: auto;
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.28) 0%,
      rgba(255, 255, 255, 0.08) 100%
    );
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.highlights__slide-play svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

.highlights__slide-play:hover {
  border-color: rgba(255, 63, 2, 0.65);
  background:
    linear-gradient(
      145deg,
      rgba(255, 63, 2, 0.95) 0%,
      rgba(201, 50, 0, 0.92) 100%
    );
  transform: scale(1.05);
}

.highlights__slide-play:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.highlights__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
  padding-right: 1.5rem;
}

.highlights__pager {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border-radius: 9999px;
  background: rgba(210, 210, 215, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.highlights__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  background: rgba(29, 29, 31, 0.35);
  cursor: pointer;
  transition: width 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.highlights__dot.is-active {
  width: 22px;
  background: transparent;
  box-shadow: inset 0 0 0 1.5px var(--brand);
}

.highlights__dot:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .highlights {
    padding-bottom: 7rem;
  }
}

@media (min-width: 768px) {
  .highlights {
    padding: 5.5rem 0 6.5rem;
  }

  .highlights__intro {
    padding: 0 2rem 2.5rem;
  }

  .highlights__carousel {
    padding-left: 2rem;
  }

  .highlights__track {
    gap: 1.15rem;
    scroll-padding-left: 2rem;
    padding-right: 2rem;
  }

  .highlights__slide {
    flex-basis: min(42vw, 420px);
    border-radius: 32px;
  }

  .highlights__overlay {
    padding: 1.75rem 1.75rem 1.75rem;
  }

  .highlights__controls {
    padding-right: 2rem;
  }
}

/* —— Conocelo a fondo —— */
.closer {
  background: #0f0d0c;
  color: #f5f5f7;
  padding: 4.5rem 0 5.5rem;
}

.closer__intro {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem 2.25rem;
}

.closer__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}

.closer__lead {
  margin: 0.75rem 0 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.05rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.closer__carousel {
  max-width: 72rem;
  margin: 0 auto;
}

.closer__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1.5rem;
  padding: 0 1.5rem 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.closer__track::-webkit-scrollbar {
  display: none;
}

.closer__slide {
  flex: 0 0 min(88vw, 820px);
  scroll-snap-align: center;
  display: grid;
  gap: 1.25rem;
  opacity: 0.45;
  transform: scale(0.97);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.closer__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.closer__figure {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.closer__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.closer__figure--icon {
  background:
    radial-gradient(circle at 30% 25%, color-mix(in srgb, var(--brand) 16%, #fff) 0%, transparent 55%),
    linear-gradient(160deg, #fff 0%, #f7f4f2 100%);
}

.closer__icon {
  width: min(42%, 11rem);
  height: auto;
  color: var(--brand);
  display: block;
}

.closer__icon--muted {
  color: #1a1a1a;
}

.closer__icon--muted [data-accent] {
  color: var(--brand);
  stroke: var(--brand);
}

.closer__info {
  padding: 0 0.15rem;
}

.closer__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-soft);
}

.closer__headline {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 3.5vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.closer__specs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.closer__specs li {
  display: grid;
  grid-template-columns: minmax(7rem, 34%) 1fr;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.closer__specs li span {
  color: rgba(255, 255, 255, 0.5);
}

.closer__specs li strong {
  color: #fff;
  font-weight: 600;
}

.closer__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.25rem 1.5rem 0;
}

.closer__pager {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
}

.closer__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.closer__dot.is-active {
  width: 22px;
  background: transparent;
  box-shadow: inset 0 0 0 1.5px var(--brand);
}

.closer__dot:focus-visible,
.closer__nav:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.closer__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.closer__nav svg {
  width: 18px;
  height: 18px;
}

.closer__nav:hover {
  background: rgba(255, 63, 2, 0.18);
  border-color: rgba(255, 63, 2, 0.55);
  transform: scale(1.04);
}

@media (max-width: 767px) {
  .closer {
    padding-bottom: 7rem;
  }
}

@media (min-width: 768px) {
  .closer {
    padding: 5.5rem 0 6.5rem;
  }

  .closer__intro {
    padding: 0 2rem 2.75rem;
  }

  .closer__track {
    gap: 1.75rem;
    scroll-padding-inline: 2rem;
    padding: 0 2rem 1.75rem;
  }

  .closer__slide {
    flex-basis: min(70vw, 880px);
    grid-template-columns: 1.35fr 1fr;
    align-items: center;
    gap: 2rem;
  }

  .closer__figure {
    border-radius: 28px;
    aspect-ratio: 4 / 3;
    background: #fff;
  }

  .closer__specs li {
    font-size: 0.98rem;
  }
}

/* —— Banner ON / OFF (EBD) —— */
.banner-toggle {
  background: #07080c;
  color: #f5f5f7;
  padding: 4.5rem 1.25rem 5rem;
  overflow: hidden;
}

.banner-toggle__intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.banner-toggle__spark {
  width: 1.35rem;
  height: auto;
  flex-shrink: 0;
  opacity: 0.92;
}

.banner-toggle__spark--right {
  transform: scaleX(-1);
}

.banner-toggle__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  line-height: 1.05;
}

.banner-toggle__title-kicker {
  font-size: clamp(1.15rem, 3.2vw, 1.85rem);
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
}

.banner-toggle__title-main {
  font-size: clamp(2.1rem, 7vw, 4.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
}

.banner-toggle__title-sub {
  font-size: clamp(1.2rem, 3.8vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}

.banner-toggle__body {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.banner-toggle__scene {
  position: relative;
  aspect-ratio: 9 / 5;
  width: 100%;
  max-width: 46rem;
  margin: 0 auto;
  transform: scale(1.08);
}

.banner-toggle__screens {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.banner-toggle__layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.banner-toggle__layer--base {
  opacity: 1;
  z-index: 3;
}

.banner-toggle__layer--screens {
  position: absolute;
  inset: auto;
  width: 60%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - 3%), calc(-50% - 30%));
  z-index: 0;
}

video.banner-toggle__layer--screens {
  display: block;
  background: transparent;
  object-fit: contain;
  pointer-events: none;
}

.banner-toggle[data-mode="off"] [data-banner-layer="off"],
.banner-toggle[data-mode="on"] [data-banner-layer="on"] {
  opacity: 1;
}

.banner-toggle__panel {
  width: 100%;
  max-width: 26rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.banner-toggle__brand-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.banner-toggle__brand {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}

.banner-toggle__state {
  margin: 0;
  font-size: clamp(2.6rem, 8vw, 3.75rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--brand);
  transition: transform 0.3s ease;
}

.banner-toggle[data-mode="on"] .banner-toggle__state {
  transform: rotate(-6deg);
}

.banner-toggle__lists {
  position: relative;
  min-height: 8.5rem;
}

.banner-toggle__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
  transition: opacity 0.45s ease;
}

.banner-toggle__list[hidden] {
  display: none;
}

.banner-toggle__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
  line-height: 1.35;
}

.banner-toggle__list li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.4rem;
  border-radius: 999px;
  background: var(--brand);
  flex-shrink: 0;
}

.banner-toggle__switch-wrap {
  position: relative;
}

.banner-toggle__switch {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  height: 3.5rem;
  border-radius: 999px;
  background: #2a2d36;
  padding: 0.25rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  user-select: none;
}

.banner-toggle[data-mode="on"] .banner-toggle__switch {
  box-shadow: 0 18px 40px color-mix(in srgb, var(--brand) 28%, transparent);
}

.banner-toggle__switch-thumb {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  width: calc(50% - 0.25rem);
  height: calc(100% - 0.5rem);
  border-radius: 999px;
  background: #0b0c10;
  transition: transform 0.45s ease, background 0.45s ease;
  z-index: 0;
}

.banner-toggle[data-mode="on"] .banner-toggle__switch-thumb {
  transform: translateX(100%);
  background: linear-gradient(120deg, #ff6a3d 0%, var(--brand) 55%, #ff8a5c 100%);
}

.banner-toggle__switch-btn {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  color: rgba(245, 245, 247, 0.88);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 999px;
}

.banner-toggle__switch-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.banner-toggle__hint {
  position: absolute;
  top: calc(100% - 0.35rem);
  right: 8%;
  width: 5.5rem;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.banner-toggle__hint img {
  width: 100%;
  height: auto;
  display: block;
  animation: banner-toggle-nudge 1.6s ease-in-out infinite;
}

.banner-toggle__hint.is-hidden {
  opacity: 0;
  visibility: hidden;
}

@keyframes banner-toggle-nudge {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-6px, -8px);
  }
}

@media (min-width: 900px) {
  .banner-toggle {
    padding: 5.5rem 2rem 6rem;
  }

  .banner-toggle__body {
    grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 22rem);
    gap: 1.5rem 2.5rem;
  }

  .banner-toggle__scene {
    margin: 0;
    transform: none;
    max-width: none;
  }

  .banner-toggle__panel {
    margin: 0;
  }
}

/* —— Beneficios —— */
.benefits {
  background:
    radial-gradient(
      90% 70% at 50% 0%,
      color-mix(in srgb, var(--brand) 10%, #fff) 0%,
      #f7f5f4 55%,
      #f3f1f0 100%
    );
  padding: 4.5rem 0 5.5rem;
}

.benefits__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.benefits__intro {
  max-width: 36rem;
  margin-bottom: 2.25rem;
}

.benefits__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #1d1d1f;
}

.benefits__lead {
  margin: 0.75rem 0 0;
  color: #5c5652;
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.benefits__card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.35rem 1.3rem 1.45rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 63, 2, 0.08);
  box-shadow: 0 10px 30px rgba(40, 20, 10, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefits__card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 63, 2, 0.22);
  box-shadow: 0 16px 40px rgba(255, 63, 2, 0.1);
}

.benefits__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 14px;
  color: var(--brand);
  background:
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--brand) 16%, #fff) 0%,
      color-mix(in srgb, var(--brand) 6%, #fff) 100%
    );
}

.benefits__card-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #1d1d1f;
}

.benefits__card-text {
  margin: 0;
  color: #6a635e;
  font-size: 0.95rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

@media (max-width: 767px) {
  .benefits {
    padding-bottom: 7rem;
  }
}

@media (min-width: 640px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
  }
}

@media (min-width: 768px) {
  .benefits {
    padding: 5.5rem 0 6.5rem;
  }

  .benefits__inner {
    padding: 0 2rem;
  }

  .benefits__intro {
    margin-bottom: 2.75rem;
  }

  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .benefits__card {
    padding: 1.55rem 1.45rem 1.65rem;
    border-radius: 24px;
  }
}

/* —— Showcase img + texto —— */
.showcase {
  background: #fff;
  padding: 4.5rem 0 5.5rem;
}

.showcase__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.showcase__intro {
  max-width: 36rem;
  margin-bottom: 2.75rem;
}

.showcase__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #1d1d1f;
}

.showcase__lead {
  margin: 0.75rem 0 0;
  color: #5c5652;
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.showcase__rows {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.showcase__row {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.showcase__media {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #f4f2f1;
}

.showcase__media img,
.showcase__media video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.compare {
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.25rem;
  background:
    linear-gradient(180deg, #faf8f6 0%, #ffffff 48%, #f7f4f1 100%);
}

.compare__inner {
  max-width: 68rem;
  margin: 0 auto;
}

.compare__intro {
  max-width: 40rem;
  margin: 0 0 2.25rem;
}

.compare__title {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #1d1d1f;
}

.compare__lead {
  margin: 0.75rem 0 0;
  color: #5c5652;
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.compare__grid {
  display: grid;
  gap: 1.75rem 2.5rem;
}

@media (min-width: 768px) {
  .compare__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.compare__item-title {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1d1d1f;
}

.compare__item-text {
  margin: 0;
  color: #5c5652;
  font-size: 0.98rem;
  line-height: 1.55;
}

/* —— Ficha técnica EBD / Banner Box —— */
.tech-sheet {
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.25rem;
  background: #0f0d0c;
  color: #f5f5f7;
}

.tech-sheet__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.tech-sheet__intro {
  max-width: 40rem;
  margin: 0 0 2.25rem;
}

.tech-sheet__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-soft);
}

.tech-sheet__title {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}

.tech-sheet__lead {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.05rem;
  line-height: 1.5;
}

.tech-sheet__download {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.15rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 16%, transparent);
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

.tech-sheet__download:hover {
  background: color-mix(in srgb, var(--brand) 28%, transparent);
}

.tech-sheet__download:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.tech-sheet__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .tech-sheet__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .tech-sheet__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.tech-sheet__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.15rem;
  padding: 1.25rem 1.2rem 1.35rem;
}

.tech-sheet__card--wide {
  grid-column: 1 / -1;
}

.tech-sheet__card-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.tech-sheet__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.85rem;
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 14%, transparent);
  flex-shrink: 0;
}

.tech-sheet__card-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: #fff;
}

.tech-sheet__specs {
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.tech-sheet__specs > div {
  display: grid;
  gap: 0.15rem;
}

@media (min-width: 480px) {
  .tech-sheet__specs > div {
    grid-template-columns: minmax(6.5rem, 8.5rem) minmax(0, 1fr);
    gap: 0.75rem;
    align-items: baseline;
  }
}

.tech-sheet__specs dt {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.tech-sheet__specs dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.4;
}

.tech-sheet__bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.tech-sheet__bullets li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.4;
}

.tech-sheet__bullets li::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--brand);
  flex-shrink: 0;
}

.tech-sheet__dims {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .tech-sheet__dims {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.tech-sheet__dims-label {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-soft);
}

.site-footer {
  position: relative;
  padding: 3.25rem 1.25rem 7rem;
  background:
    radial-gradient(ellipse 80% 60% at 12% 0%, rgba(255, 63, 2, 0.18), transparent 55%),
    linear-gradient(180deg, #1a1513 0%, #100e0d 100%);
  color: #cfc9c4;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-soft) 45%, transparent 100%);
}

@media (min-width: 768px) {
  .site-footer {
    padding: 3.75rem 1.75rem 3.25rem;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 2.35rem 1.15rem calc(6.75rem + env(safe-area-inset-bottom));
  }

  .site-footer__inner {
    gap: 1.35rem;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem 1.35rem;
    align-items: start;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
    max-width: none;
    gap: 0.55rem;
  }

  .site-footer__tagline {
    font-size: 0.82rem;
    line-height: 1.45;
    max-width: 28rem;
  }

  .site-footer__social {
    margin-top: 0.05rem;
    gap: 0.45rem;
  }

  .site-footer__heading {
    margin-bottom: 0.35rem;
  }

  .site-footer__nav,
  .site-footer__contact {
    gap: 0.4rem;
  }

  .site-footer__nav a,
  .site-footer__contact-link {
    font-size: 0.88rem;
  }

  .site-footer__bottom {
    gap: 0.25rem;
    padding-top: 0.85rem;
  }
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 68rem;
  margin: 0 auto;
  display: grid;
  gap: 2.25rem;
}

.site-footer__top {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .site-footer__top {
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 0.7fr));
    gap: 2.5rem 3rem;
    align-items: start;
  }
}

.site-footer__brand {
  display: grid;
  gap: 0.85rem;
  max-width: 26rem;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.45rem 0.75rem;
  border-radius: 10px;
  background: var(--brand);
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.site-footer__logo:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
}

.site-footer__logo:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.site-footer__logo img {
  display: block;
  height: 22px;
  width: auto;
}

.site-footer__product {
  margin: 0.15rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.site-footer__tagline {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #a8a29c;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.15rem;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  color: #ebe6e1;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  color: #fff;
  background: color-mix(in srgb, var(--brand) 55%, transparent);
  outline: none;
}

.site-footer__heading {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a837c;
}

.site-footer__nav,
.site-footer__contact {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.site-footer__nav a,
.site-footer__contact-link {
  color: #ebe6e1;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  width: fit-content;
  transition: color 0.15s ease;
}

.site-footer__nav a:hover,
.site-footer__contact-link:hover,
.site-footer__nav a:focus-visible,
.site-footer__contact-link:focus-visible {
  color: #fff;
  outline: none;
}

.site-footer__nav a:focus-visible,
.site-footer__contact-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.site-footer__contact-link iconify-icon {
  color: var(--brand-soft);
  flex-shrink: 0;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 640px) {
  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
}

.site-footer__legal,
.site-footer__meta {
  margin: 0;
  font-size: 0.8rem;
  color: #7a746e;
}

.site-footer__meta {
  color: #8f877f;
}

.showcase__copy {
  max-width: 32rem;
}

.showcase__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.showcase__headline {
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 3.5vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #1d1d1f;
}

.showcase__text {
  margin: 0;
  color: #6a635e;
  font-size: 1.02rem;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.showcase__cta {
  display: inline-flex;
  margin-top: 1.15rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.65rem 1.25rem;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.showcase__cta:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .showcase {
    padding: 5.5rem 0 6.5rem;
  }

  .showcase__inner {
    padding: 0 2rem;
  }

  .showcase__intro {
    margin-bottom: 3.5rem;
  }

  .showcase__rows {
    gap: 5rem;
  }

  .showcase__row {
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
  }

  .showcase__row--reverse .showcase__media {
    order: 2;
  }

  .showcase__row--reverse .showcase__copy {
    order: 1;
  }

  .showcase__media {
    border-radius: 28px;
  }
}

/* —— CTA bands —— */
.cta-band {
  background: color-mix(in srgb, var(--brand) 8%, #fff);
  border-block: 1px solid rgba(255, 63, 2, 0.1);
  padding: 1.75rem 0;
}

.cta-band--dark {
  background: #161311;
  border-block-color: rgba(255, 255, 255, 0.06);
}

.cta-band__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.cta-band__title {
  margin: 0;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #1d1d1f;
}

.cta-band--dark .cta-band__title {
  color: #fff;
}

.cta-band__price {
  margin: 0.3rem 0 0;
  font-size: 0.92rem;
  color: #6a635e;
}

.cta-band--dark .cta-band__price {
  color: rgba(255, 255, 255, 0.62);
}

.cta-band__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.75rem 1.4rem;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta-band__btn:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
}

.cta-band--dark .cta-band__btn {
  background: #fff;
  color: #1d1d1f;
}

.cta-band--dark .cta-band__btn:hover {
  background: #f2f2f2;
}

/* —— Remote story (contained explanatory image) —— */
.remote-story {
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255, 63, 2, 0.05), transparent 55%),
    #faf7f3;
  padding: clamp(2.75rem, 6vw, 4rem) 0;
}

.remote-story__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.remote-story__intro {
  max-width: 36rem;
  margin: 0 0 1.5rem;
}

.remote-story__title {
  margin: 0;
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #1d1d1f;
}

.remote-story__lead {
  margin: 0.7rem 0 0;
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #5c5652;
}

.remote-story__media {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #f4f2f1;
  line-height: 0;
}

.remote-story__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 40%;
}

@media (max-width: 767px) {
  .remote-story {
    padding: 2.25rem 0;
  }

  .remote-story__intro {
    margin-bottom: 1.15rem;
  }

  .remote-story__media {
    border-radius: 18px;
  }

  .remote-story__media img {
    aspect-ratio: 4 / 3;
  }
}

/* —— Buy section —— */
#comprar,
.buy {
  scroll-margin-top: 5.75rem;
}

@media (max-width: 767px) {
  #comprar,
  .buy {
    scroll-margin-top: 0.5rem;
  }
}

.buy {
  background:
    radial-gradient(
      90% 80% at 50% 0%,
      color-mix(in srgb, var(--brand) 18%, #fff) 0%,
      #fff 55%,
      #f7f5f4 100%
    );
  padding: 5rem 0 5.5rem;
  text-align: center;
}

.buy__inner {
  max-width: 36rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.buy__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.buy__title {
  margin: 0.5rem 0 0;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #1d1d1f;
}

.buy__lead {
  margin: 0.9rem auto 0;
  max-width: 28rem;
  color: #5c5652;
  font-size: 1.05rem;
  line-height: 1.5;
}

.buy__price {
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.buy__amount {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1d1d1f;
}

.buy__alt {
  font-size: 1.05rem;
  color: #6a635e;
}

.buy__note {
  margin: 0.55rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand);
}

.buy__chips {
  margin: 1.35rem auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.55rem;
  max-width: 34rem;
  text-align: center;
}

.buy__chips li {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #4a4541;
  line-height: 1.35;
}

.buy__chips li:not(:last-child)::after {
  content: "·";
  margin-left: 0.55rem;
  color: #b0a9a3;
  font-weight: 400;
}

.buy__trust {
  margin: 1.75rem auto 0;
  max-width: 34rem;
  text-align: center;
}

.buy__trust-lines {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.buy__trust-lines li {
  margin: 0;
  color: #4a4541;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.buy__clients {
  margin: 1.35rem 0 0;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.buy__clients-track {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.85rem;
  width: max-content;
  animation: buy-clients-marquee 28s linear infinite;
}

.buy__clients:hover .buy__clients-track,
.buy__clients:focus-within .buy__clients-track {
  animation-play-state: paused;
}

.buy__clients-track li {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 4.75rem;
  height: 3.25rem;
  opacity: 0.78;
  transition: opacity 0.2s ease;
}

.buy__clients-track li:hover {
  opacity: 1;
}

.buy__clients-track img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
}

.buy__clients-track li:hover img {
  filter: none;
}

@keyframes buy-clients-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .buy__clients {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .buy__clients::-webkit-scrollbar {
    display: none;
  }

  .buy__clients-track {
    animation: none;
    padding-inline: 0.25rem;
  }

  .buy__clients-track li[aria-hidden="true"] {
    display: none;
  }
}

.buy__inner--commerce {
  max-width: 56rem;
}

.buy__config {
  margin-top: 1.75rem;
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
  text-align: left;
}

.buy__qty-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.buy__qty-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6a635e;
}

.buy__unit {
  margin: 0;
  font-size: 0.9rem;
  color: #6a635e;
}

.buy__totals {
  padding-top: 0.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.buy__toast {
  margin: 1rem 0 0;
  padding: 0.7rem 1rem;
  border-radius: 0.85rem;
  background: color-mix(in srgb, var(--brand) 12%, #fff);
  color: var(--brand-deep);
  font-size: 0.92rem;
  font-weight: 600;
}

.buy__toast[hidden] {
  display: none;
}

.buy__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0;
}

.buy__auth-note {
  margin: 1rem auto 0;
  max-width: 28rem;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #6a635e;
}

.buy__cta,
.buy__secondary {
  appearance: none;
  cursor: pointer;
  font: inherit;
  border: 0;
}

.buy__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.9rem 1.7rem;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.buy__cta:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
}

.buy__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.9rem 1.35rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #1d1d1f;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.buy__secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.buy__cart-link {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: #6a635e;
}

.buy__cart-link a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.buy__cart-link a:hover {
  color: var(--brand);
}

/* Qty stepper */
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
}

.qty--lg .qty__btn {
  width: 2.6rem;
  height: 2.6rem;
  font-size: 1.25rem;
}

.qty--lg .qty__input {
  width: 3.2rem;
  height: 2.6rem;
  font-size: 1.1rem;
}

.qty__btn {
  appearance: none;
  border: 0;
  background: transparent;
  width: 2.2rem;
  height: 2.2rem;
  font: inherit;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1d1d1f;
  cursor: pointer;
}

.qty__btn:hover,
.qty__btn:focus-visible {
  background: color-mix(in srgb, var(--brand) 10%, #fff);
  color: var(--brand-deep);
  outline: none;
}

.qty__input {
  width: 2.6rem;
  height: 2.2rem;
  border: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  font: inherit;
  font-weight: 700;
  color: #1d1d1f;
  background: transparent;
  -moz-appearance: textfield;
}

.qty__input::-webkit-outer-spin-button,
.qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty__input:focus {
  outline: none;
  background: color-mix(in srgb, var(--brand) 6%, #fff);
}

/* Cart badge */
.top-nav__link--cart {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
}

.cart-badge[hidden] {
  display: none;
}

.cart-badge--nav {
  position: absolute;
  top: 0.15rem;
  right: max(0px, calc(50% - 1.25rem));
  min-width: 1.05rem;
  height: 1.05rem;
  padding: 0 0.25rem;
  font-size: 0.62rem;
  background: #fff;
  color: var(--brand);
}

@media (min-width: 768px) {
  .buy__config {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.35rem;
    padding: 1.35rem 1.5rem;
  }

  .buy__totals {
    border-top: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0 0 0 1.35rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .buy__price {
    margin-top: 0;
    align-items: center;
  }

  .buy__actions {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    gap: 0.55rem;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    padding-left: 1.35rem;
  }

  .buy__cta,
  .buy__secondary {
    width: 100%;
    white-space: nowrap;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .showcase {
    padding-bottom: 4.5rem;
  }

  /* Espacio para bottom nav, sin forzar hueco de viewport */
  .buy {
    padding-top: 2.75rem;
    padding-bottom: calc(6.5rem + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
  }

  .buy__inner,
  .buy__inner--commerce {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .buy__config {
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    text-align: center;
    gap: 1.35rem;
  }

  .buy__qty-block {
    align-items: center;
    width: 100%;
  }

  .buy__totals {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 0;
    padding: 1rem 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .buy__price {
    align-items: center;
    margin-top: 0;
  }

  .buy__actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    border-left: 0;
    padding-left: 0;
    padding-top: 0.25rem;
  }

  .buy__cta,
  .buy__secondary {
    width: min(100%, 20rem);
  }

  .buy__toast {
    width: 100%;
    text-align: center;
  }

  .buy__cart-link {
    text-align: center;
    width: 100%;
  }

  .cta-band {
    padding: 2.25rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cta-band__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 1.15rem;
  }

  .cta-band__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .cta-band__btn {
    display: inline-flex;
    margin-inline: auto;
    width: min(100%, 16rem);
    justify-content: center;
  }

  /* Showcase + CTAs de página: centrar en mobile */
  .showcase__intro,
  .showcase__copy {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .showcase__cta {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions,
  .hero__cta {
    margin-left: auto;
    margin-right: auto;
  }

  .faq__cta,
  .faq__cta-actions {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .account__gate,
  .account__gate-actions {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .account__btn {
    margin-left: auto;
    margin-right: auto;
  }

  .cart__empty-btn,
  .cart__checkout-btn {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px) {
  .cta-band__inner {
    padding: 0 2rem;
  }

  .buy {
    padding: 6rem 0 6.5rem;
  }
}

.top-nav__link.is-active {
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 10%, transparent);
}

.bottom-nav__item.is-active {
  color: #fff;
}

/* —— Galería promo D3 —— */
.promo-gallery {
  background:
    linear-gradient(180deg, #f7f5f4 0%, #eceae8 42%, #e8e6e4 100%);
  padding: 4.5rem 0 5.5rem;
}

.promo-gallery__intro {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
  text-align: center;
}

.promo-gallery__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.promo-gallery__title {
  margin: 0.55rem 0 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #1d1d1f;
}

.promo-gallery__lead {
  margin: 0.75rem auto 0;
  max-width: 32rem;
  color: #6e6e73;
  font-size: 1.05rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.promo-gallery__carousel {
  max-width: 72rem;
  margin: 0 auto;
}

.promo-gallery__track {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1.5rem;
  padding: 0 1.5rem 1.35rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.promo-gallery__track::-webkit-scrollbar {
  display: none;
}

.promo-gallery__slide {
  position: relative;
  flex: 0 0 min(88vw, 860px);
  margin: 0;
  scroll-snap-align: center;
  border-radius: 24px;
  overflow: hidden;
  background: #1d1d1f;
  aspect-ratio: 3 / 2;
  opacity: 0.5;
  transform: scale(0.97);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.promo-gallery__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.promo-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.promo-gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3.5rem 1.25rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  background: linear-gradient(0deg, rgba(12, 8, 6, 0.78) 0%, transparent 100%);
  color: #fff;
  pointer-events: none;
}

.promo-gallery__cap-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--brand) 70%, #fff);
}

.promo-gallery__caption strong {
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.promo-gallery__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0 1.5rem;
}

.promo-gallery__pager {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border-radius: 9999px;
  background: rgba(210, 210, 215, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.promo-gallery__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  background: rgba(29, 29, 31, 0.35);
  cursor: pointer;
  transition: width 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.promo-gallery__dot.is-active {
  width: 22px;
  background: transparent;
  box-shadow: inset 0 0 0 1.5px var(--brand);
}

.promo-gallery__dot:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.promo-gallery__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(29, 29, 31, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: #1d1d1f;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.promo-gallery__nav svg {
  width: 18px;
  height: 18px;
}

.promo-gallery__nav:hover {
  background: color-mix(in srgb, var(--brand) 12%, #fff);
  border-color: color-mix(in srgb, var(--brand) 45%, transparent);
  transform: scale(1.04);
}

.promo-gallery__nav:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .promo-gallery {
    padding: 2.75rem 0 6.5rem;
  }

  .promo-gallery__intro {
    padding-bottom: 1.25rem;
  }
}

@media (min-width: 768px) {
  .promo-gallery {
    padding: 5.5rem 0 6.5rem;
  }

  .promo-gallery__intro {
    padding: 0 2rem 2.5rem;
  }

  .promo-gallery__track {
    gap: 1.35rem;
    scroll-padding-inline: 2rem;
    padding: 0 2rem 1.5rem;
  }

  .promo-gallery__slide {
    flex-basis: min(78vw, 920px);
    border-radius: 28px;
  }

  .promo-gallery__caption {
    padding: 4rem 1.75rem 1.5rem;
  }
}

/* —— Mi cuenta —— */
.account {
  background: #f5f5f7;
  padding: 4.5rem 0 5.5rem;
}

.account--page {
  min-height: 100svh;
  padding-top: 5.5rem;
}

.account-page {
  background: #f5f5f7;
}

.account__inner {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .account__inner--wide {
    width: 80%;
    max-width: none;
  }
}

.account__intro {
  margin-bottom: 1.75rem;
}

.account__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #1d1d1f;
}

.account__lead {
  margin: 0.75rem 0 0;
  color: #5c5652;
  font-size: 1.05rem;
  line-height: 1.5;
}

.account__gate-card,
.account__panel {
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 40px rgba(20, 10, 5, 0.06);
  padding: 1.75rem 1.5rem;
}

.account__gate-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.account__gate-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: 1rem;
}

.account__gate-icon iconify-icon {
  width: 72px;
  height: 72px;
}

.account__gate-title,
.account__name {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1d1d1f;
}

.account__gate-text,
.account__block-text,
.account__email {
  margin: 0;
  color: #6a635e;
  font-size: 0.98rem;
  line-height: 1.5;
}

.account__gate-text {
  max-width: 28rem;
}

.account__block-text,
.account__email {
  margin-top: 0.65rem;
}

.account__gate-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.account__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.7rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 0;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.account__btn--primary {
  background: var(--brand);
  color: #fff;
}

.account__btn--primary:hover {
  background: var(--brand-deep);
}

.account__btn--ghost {
  background: transparent;
  color: #1d1d1f;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.account__btn--ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.account__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.account__purchase {
  margin: 1.5rem 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.account__block-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1d1d1f;
}

.account-orders {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.1rem;
}

.account-order {
  padding: 1.15rem 1.2rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.account-order__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.account-order__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a847e;
}

.account-order__title {
  margin: 0.25rem 0 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1d1d1f;
}

.account-order.is-pending .account-order__title { color: #b45309; }
.account-order.is-preparing .account-order__title { color: #c2410c; }
.account-order.is-shipped .account-order__title { color: #0369a1; }
.account-order.is-received .account-order__title { color: #15803d; }

.account-order__detail {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #6a635e;
}

.account-order__total {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  white-space: nowrap;
}

.account-order__items {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.account-order__items li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.92rem;
}

.account-order__steps {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.account-order__step {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: #9a938c;
}

.account-order__step.is-done {
  color: #1d1d1f;
  font-weight: 600;
}

.account-order__step-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  background: #d6d0c8;
  flex-shrink: 0;
}

.account-order__step.is-done .account-order__step-dot {
  background: var(--brand);
}

.account-order__meta {
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 0.3rem;
  font-size: 0.86rem;
  color: #4b4540;
}

.account-order__meta a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
}

.account-order__invoices {
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.account-order__invoices-title {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #78716c;
}

.account-order__invoices ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.account-order__invoice-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.account-order__invoice-link:hover {
  color: inherit;
}

/* —— Auth modal —— */
body.auth-modal-open {
  overflow: hidden;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(15, 12, 10, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.auth-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.auth-modal__dialog {
  position: relative;
  width: min(100%, 420px);
  border-radius: 24px;
  background: #fff;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(12px);
  transition: transform 0.25s ease;
}

.auth-modal.is-open .auth-modal__dialog {
  transform: translateY(0);
}

.auth-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  border: 0;
  background: transparent;
  color: #6a635e;
  cursor: pointer;
  padding: 0.15rem;
}

.auth-modal__title {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1d1d1f;
}

.auth-modal__lead {
  margin: 0.45rem 0 0;
  color: #6a635e;
  font-size: 0.95rem;
  line-height: 1.45;
}

.auth-modal__context {
  margin: 0.75rem 0 0;
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  background: rgba(255, 63, 2, 0.08);
  color: #3d3834;
  font-size: 0.88rem;
  line-height: 1.45;
  text-align: left;
}

.checkout__auth-gate {
  max-width: 28rem;
  margin: 2rem auto 0;
  text-align: center;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.checkout__auth-gate iconify-icon {
  color: var(--brand);
}

.auth-modal__google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  margin-top: 1.35rem;
  padding: 0.8rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #1d1d1f;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.auth-modal__google:hover {
  border-color: rgba(0, 0, 0, 0.28);
  background: #fafafa;
}

.auth-modal__divider {
  display: grid;
  place-items: center;
  margin: 1.1rem 0;
  color: #8a837d;
  font-size: 0.8rem;
}

.auth-modal__divider::before,
.auth-modal__divider::after {
  content: "";
  display: block;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.auth-modal__divider {
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
}

.auth-modal__form {
  display: grid;
  gap: 0.85rem;
}

.auth-modal__field {
  display: grid;
  gap: 0.35rem;
}

.auth-modal__field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #3d3835;
}

.auth-modal__field input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  font-size: 0.95rem;
  color: #1d1d1f;
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-modal__field input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 63, 2, 0.15);
}

.auth-modal__error {
  margin: 0;
  color: #b42318;
  font-size: 0.88rem;
}

.auth-modal__submit {
  width: 100%;
  border: 0;
  border-radius: 9999px;
  padding: 0.85rem 1rem;
  background: var(--brand);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.auth-modal__submit:hover {
  background: var(--brand-deep);
}

.auth-modal__submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.auth-modal__switch {
  display: block;
  width: 100%;
  margin-top: 0.9rem;
  border: 0;
  background: transparent;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

@media (max-width: 767px) {
  .account {
    padding-bottom: 7rem;
  }
}

@media (min-width: 768px) {
  .account {
    padding: 5.5rem 0 6.5rem;
  }

  .account__inner {
    padding: 0 2rem;
  }

  .account__gate-card,
  .account__panel {
    padding: 2rem;
  }
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-image-in {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes caret-blink {
  0%,
  45% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@media (min-width: 768px) {
  .hero__image {
    width: min(42vw, 420px);
    max-height: min(46vh, 450px);
  }
}

/* —— FAQ —— */
.faq-page {
  min-height: 100dvh;
  background:
    radial-gradient(120% 80% at 10% -10%, rgba(255, 63, 2, 0.1), transparent 55%),
    radial-gradient(90% 60% at 100% 0%, rgba(255, 106, 61, 0.08), transparent 50%),
    linear-gradient(180deg, #fffaf8 0%, #ffffff 42%, #f7f7f8 100%);
}

.faq {
  padding: 2.5rem 1.25rem 7.5rem;
}

.faq__inner {
  width: min(720px, 100%);
  margin: 0 auto;
}

.faq__hero {
  margin-bottom: 1.75rem;
}

.faq__product-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 1.15rem;
}

.faq__product-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.1rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #5c5652;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq__product-tab:hover {
  color: #1d1d1f;
  background: rgba(0, 0, 0, 0.04);
}

.faq__product-tab.is-active,
.faq__product-tab[aria-current="page"] {
  color: #fff;
  background: var(--brand);
}

.faq__product-tab:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.faq__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
}

.faq__title {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.faq__lead {
  margin: 0.75rem 0 0;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #525252;
}

.faq__search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(10px);
}

.faq__search:focus-within {
  border-color: rgba(255, 63, 2, 0.45);
  box-shadow: 0 0 0 4px rgba(255, 63, 2, 0.12);
}

.faq__search-icon {
  display: inline-flex;
  color: #737373;
  flex-shrink: 0;
}

.faq__search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  color: #171717;
}

.faq__search input::placeholder {
  color: #a3a3a3;
}

.faq__kbd {
  display: none;
  padding: 0.15rem 0.45rem;
  border-radius: 0.4rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #f5f5f5;
  font-size: 0.7rem;
  font-weight: 600;
  color: #737373;
}

.faq__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-top: 1.15rem;
}

.faq__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.faq__chip {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.75);
  color: #404040;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.faq__chip:hover,
.faq__chip:focus-visible {
  border-color: rgba(255, 63, 2, 0.35);
  color: var(--brand-deep);
  outline: none;
}

.faq__chip.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.faq__count {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: #737373;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq__item {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq__item.is-open {
  border-color: rgba(255, 63, 2, 0.28);
  box-shadow: 0 12px 28px rgba(255, 63, 2, 0.08);
}

.faq__question {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "meta chevron"
    "q chevron";
  gap: 0.15rem 0.75rem;
  align-items: center;
  padding: 1rem 1.1rem;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.faq__question:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: -2px;
}

.faq__meta {
  grid-area: meta;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
}

.faq__q-text {
  grid-area: q;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: #171717;
}

.faq__chevron {
  grid-area: chevron;
  display: inline-flex;
  color: #737373;
  transition: transform 0.25s ease;
}

.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
  color: var(--brand);
}

.faq__answer {
  padding: 0 1.1rem 1.15rem;
}

.faq__answer p {
  margin: 0;
  padding-top: 0.15rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
  line-height: 1.55;
  color: #404040;
}

.faq__answer mark,
.faq__q-text mark {
  background: rgba(255, 63, 2, 0.18);
  color: inherit;
  border-radius: 0.2em;
  padding: 0 0.1em;
}

.faq__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: 2.5rem 1rem;
  color: #737373;
}

.faq__empty[hidden] {
  display: none;
}

.faq__empty-title {
  margin: 0.5rem 0 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #262626;
}

.faq__empty-text {
  margin: 0;
  max-width: 22rem;
  font-size: 0.95rem;
  line-height: 1.45;
}

.faq__cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.1rem;
  padding: 1.75rem 1.35rem;
  border-radius: 1.15rem;
  background: linear-gradient(135deg, #171717 0%, #2a2a2a 100%);
  color: #fff;
}

.faq__cta-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.faq__cta-text {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.faq__cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.faq__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.faq__cta-btn--whatsapp {
  background: #25d366;
}

.faq__cta-btn--whatsapp:hover,
.faq__cta-btn--whatsapp:focus-visible {
  background: #1ebe57;
  outline: none;
}

.faq__cta-btn:hover,
.faq__cta-btn:focus-visible {
  background: var(--brand-deep);
  outline: none;
}

.faq__cta-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.faq__cta-btn--ghost:hover,
.faq__cta-btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .faq {
    padding: 5.5rem 1.5rem 5rem;
  }

  .faq__kbd {
    display: inline-block;
  }

  .faq__question {
    padding: 1.15rem 1.35rem;
  }

  .faq__answer {
    padding: 0 1.35rem 1.35rem;
  }
}

/* —— Commerce: carrito + checkout —— */
.commerce-page {
  min-height: 100dvh;
  background:
    radial-gradient(120% 80% at 8% -8%, rgba(255, 63, 2, 0.08), transparent 55%),
    linear-gradient(180deg, #fffaf8 0%, #ffffff 40%, #f5f5f7 100%);
}

.cart,
.checkout {
  padding: 2.5rem 1.25rem 7.5rem;
}

@media (min-width: 768px) {
  .cart,
  .checkout {
    padding: 5.5rem 1.5rem 4rem;
  }
}

.cart__inner,
.checkout__inner {
  width: min(960px, 100%);
  margin: 0 auto;
}

.cart__hero,
.checkout__hero {
  margin-bottom: 1.75rem;
}

.checkout__guest-note {
  margin: 0.65rem 0 0;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #5c5651;
}

.checkout__optional-login {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: #6b6560;
}

.checkout__optional-login-btn {
  margin-left: 0.25rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--brand);
  font: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
}

.checkout__optional-login-btn:hover {
  color: var(--brand-deep, #c43200);
}

.checkout__field-hint {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: #7a746e;
}

/* Carrito mobile: centrar contenido H + V */
@media (max-width: 767px) {
  .cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100dvh - 5.5rem);
    padding: 1.75rem 1.15rem 10.5rem;
    text-align: center;
  }

  .cart__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1.25rem;
  }

  .cart__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    width: 100%;
  }

  .cart__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .cart__empty {
    width: 100%;
    justify-content: center;
  }

  .cart__grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.15rem;
  }

  .cart__list {
    width: 100%;
    align-items: center;
  }

  .cart-line {
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    text-align: center;
    gap: 0.9rem;
    padding: 1.2rem 1.1rem 1.35rem;
    overflow: hidden;
  }

  .cart-line__media {
    width: 112px;
    height: 112px;
    aspect-ratio: 1;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    background: #f3f3f5;
    flex-shrink: 0;
  }

  .cart-line__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .cart-line__body {
    width: 100%;
    align-items: center;
  }

  .cart-line__head {
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-inline: 1.75rem;
  }

  .cart-line__remove {
    position: absolute;
    top: 0;
    right: 0;
  }

  .cart-line__foot {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .cart-line__totals {
    text-align: center;
  }

  .cart__summary {
    width: 100%;
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .cart__auth-note {
    margin-top: 0.85rem;
    text-align: center;
    max-width: 22rem;
  }

  .cart__checkout-btn,
  .cart__clear,
  .cart__keep {
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.cart__eyebrow,
.checkout__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}

.cart__title,
.checkout__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.cart__lead,
.checkout__lead {
  margin: 0.65rem 0 0;
  max-width: 32rem;
  color: #5c5652;
  font-size: 1.02rem;
  line-height: 1.5;
}

.cart__empty,
.checkout__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  padding: 2.5rem 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #737373;
}

.cart__empty[hidden],
.checkout__empty[hidden],
.cart__summary[hidden],
.checkout__grid[hidden] {
  display: none;
}

.cart__empty-title,
.checkout__empty-title {
  margin: 0.4rem 0 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #262626;
}

.cart__empty-text {
  margin: 0;
  max-width: 22rem;
}

.cart__empty-btn {
  margin-top: 0.85rem;
  display: inline-flex;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.cart__grid,
.checkout__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 860px) {
  .cart__grid,
  .checkout__grid {
    grid-template-columns: 1fr 280px;
    align-items: start;
  }
}

.cart__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-line__media {
  width: 96px;
  height: 96px;
  border-radius: 0.85rem;
  overflow: hidden;
  background: #f3f3f5;
  aspect-ratio: 1;
  flex-shrink: 0;
}

.cart-line__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cart-line__body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}

.cart-line__head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.cart-line__sku {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
}

.cart-line__name {
  margin: 0.15rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cart-line__unit {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: #6a635e;
}

.cart-line__remove {
  appearance: none;
  border: 0;
  background: transparent;
  color: #a3a3a3;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0.5rem;
}

.cart-line__remove:hover,
.cart-line__remove:focus-visible {
  color: var(--brand);
  outline: none;
  background: color-mix(in srgb, var(--brand) 8%, #fff);
}

.cart-line__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.cart-line__totals {
  text-align: right;
}

.cart-line__cash {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cart-line__alt {
  margin: 0.1rem 0 0;
  font-size: 0.85rem;
  color: #6a635e;
}

.cart__summary,
.checkout__summary {
  padding: 1.25rem;
  border-radius: 1.15rem;
  background: #171717;
  color: #fff;
  position: sticky;
  top: 5.5rem;
}

.cart__summary-eyebrow,
.checkout__summary-title {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.cart__summary-count {
  margin: 0.65rem 0 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

.cart__summary-cash,
.checkout__cash {
  margin: 0.35rem 0 0;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cart__summary-alt,
.checkout__alt {
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.cart__summary-note {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.cart__auth-note {
  margin-top: 0.85rem;
  text-align: left;
}

.cart__checkout-btn {
  margin-top: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.cart__checkout-btn:hover {
  background: var(--brand-deep);
}

.cart__clear,
.cart__keep {
  display: block;
  width: 100%;
  margin-top: 0.65rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
}

.cart__clear:hover,
.cart__keep:hover {
  color: #fff;
}

.checkout__form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.checkout__fieldset {
  margin: 0;
  padding: 1.15rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.9);
}

.checkout__fieldset legend {
  padding: 0 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #404040;
}

.checkout__row {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .checkout__row {
    grid-template-columns: 1fr 1fr;
  }
}

.checkout__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.checkout__field:first-of-type {
  margin-top: 0.35rem;
}

.checkout__fieldset-hint {
  margin: 0.15rem 0 0.35rem;
  font-size: 0.82rem;
  color: #737373;
  line-height: 1.4;
}

.checkout__field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #6b7280;
}

.checkout__optional {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #a3a3a3;
}

.checkout__req {
  color: #ef4444;
}

.checkout__field input,
.checkout__field textarea,
.checkout__field select {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0.75rem;
  padding: 0.75rem 0.85rem;
  font: inherit;
  background: #fff;
}

.checkout__field input:focus,
.checkout__field textarea:focus,
.checkout__field select:focus {
  outline: 2px solid color-mix(in srgb, var(--brand) 45%, transparent);
  outline-offset: 1px;
  border-color: var(--brand);
}

.checkout__copy-fiscal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.85rem 0 0;
  padding: 0 0.15rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #404040;
  cursor: pointer;
}

.checkout__fiscal-address {
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.checkout__fiscal-address[hidden] {
  display: none !important;
}

.checkout__pay-trust {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.85rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 63, 2, 0.16);
  background: color-mix(in srgb, var(--brand) 6%, #fff);
}

.checkout__pay-trust li {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #3f3a36;
  letter-spacing: -0.01em;
}

.checkout__pay-trust li:not(:last-child)::after {
  content: "·";
  margin-left: 0.85rem;
  color: #c4bbb4;
  font-weight: 400;
}

.checkout__terms {
  padding: 0.85rem 1.15rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.9);
}

.checkout__terms-title {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #404040;
  cursor: pointer;
  list-style: none;
}

.checkout__terms-title::-webkit-details-marker {
  display: none;
}

.checkout__terms[open] .checkout__terms-title {
  margin-bottom: 0.85rem;
}

.checkout__terms-body {
  max-height: 220px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding-right: 0.35rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #404040;
}

.checkout__terms-h {
  margin: 0 0 0.2rem;
  font-weight: 700;
  color: #262626;
}

.checkout__terms-body p {
  margin: 0;
}

.checkout__thanks {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand);
}

.checkout__accept {
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  border: 1px solid #fcd34d;
  background: #fffbeb;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.checkout__accept.is-accepted {
  border-color: color-mix(in srgb, var(--brand) 35%, #fff);
  background: color-mix(in srgb, var(--brand) 8%, #fff);
}

.checkout__toggle {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
}

.checkout__toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout__toggle-ui {
  position: relative;
  flex-shrink: 0;
  width: 3.25rem;
  height: 1.85rem;
  border-radius: 999px;
  background: #d1d5db;
  transition: background 0.2s ease;
}

.checkout__toggle-ui::after {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.checkout__toggle input:checked + .checkout__toggle-ui {
  background: var(--brand);
}

.checkout__toggle input:checked + .checkout__toggle-ui::after {
  transform: translateX(1.35rem);
}

.checkout__toggle-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.checkout__toggle-text strong {
  font-size: 0.92rem;
  color: #1f2937;
}

.checkout__toggle-text span {
  font-size: 0.8rem;
  color: #6b7280;
}

.checkout__error {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 0.9rem;
  font-weight: 600;
}

.checkout__error[hidden] {
  display: none;
}

.checkout__submit:disabled {
  background: #d1d5db;
  color: #6b7280;
  cursor: not-allowed;
}

.checkout__submit:disabled:hover {
  background: #d1d5db;
}

.checkout__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.checkout__back {
  color: #525252;
  font-weight: 600;
  text-decoration: none;
}

.checkout__back:hover {
  color: var(--brand);
}

.checkout__submit {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  background: var(--brand);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.checkout__submit:hover {
  background: var(--brand-deep);
}

.checkout__hint {
  margin: 0;
  font-size: 0.85rem;
  color: #737373;
}

.checkout__financing-note {
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.62);
}

.checkout__pay-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.35rem 1.2rem 1.5rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.checkout__pay-step[hidden] {
  display: none;
}

.checkout__wallet-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem;
  border-radius: 1rem;
  background: #f5f5f7;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.checkout__wallet-label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #6a635e;
}

.checkout__wallet-fallback {
  margin: 0;
  font-size: 0.9rem;
  color: #737373;
}

.checkout__mp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

.checkout__pay-note {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: color-mix(in srgb, var(--brand) 12%, #fff);
  color: var(--brand-deep);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.checkout__pay-note[hidden] {
  display: none;
}

.checkout__lines {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}

.checkout-line strong {
  color: #fff;
  font-weight: 700;
}

.checkout__totals {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cart-line__list {
  text-decoration: line-through;
  opacity: 0.55;
  margin-right: 0.25rem;
}

.checkout-line--discount {
  color: #c93200;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0 1.5rem;
}

@media (min-width: 720px) {
  .admin-stats {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.admin-stat {
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(20, 10, 5, 0.04);
}

.admin-stat--wide {
  grid-column: 1 / -1;
}

@media (min-width: 720px) {
  .admin-stat--wide {
    grid-column: auto;
  }
}

.admin-stat__label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #737373;
}

.admin-stat__value {
  margin: 0.35rem 0 0;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #171717;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.admin-share {
  margin: 1.25rem 0 1.5rem;
}

.admin-share__inner {
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(20, 10, 5, 0.04);
}

.admin-share__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.admin-share__lead {
  margin: 0.4rem 0 0;
  color: #525252;
  font-size: 0.92rem;
  line-height: 1.45;
  max-width: 40rem;
}

.admin-share__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
}

.admin-share__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #404040;
}

.admin-share__qty,
.admin-share__price {
  width: 5rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0.65rem;
  padding: 0.55rem 0.65rem;
  font: inherit;
  font-weight: 700;
}

.admin-share__price {
  width: 8.5rem;
}

.admin-share__url {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  word-break: break-all;
  color: #737373;
}

.admin-share__hint {
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
  color: #737373;
}

.admin-share__status {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #c93200;
}

.admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.admin-filter {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  color: #525252;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.admin-filter.is-active,
.admin-filter:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 8%, #fff);
}

.admin-orders {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.admin-order {
  padding: 1.15rem 1.2rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 28px rgba(20, 10, 5, 0.04);
}

.admin-order__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.admin-order__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #a3a3a3;
}

.admin-order__title {
  margin: 0.2rem 0 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.admin-order__meta-line {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: #6a635e;
}

.admin-order__aside {
  text-align: right;
}

.admin-order__badge {
  display: inline-flex;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #f5f5f5;
  color: #525252;
}

.admin-order.is-pending .admin-order__badge {
  background: #fff7ed;
  color: #b45309;
}

.admin-order.is-preparing .admin-order__badge {
  background: #fff7ed;
  color: #c2410c;
}

.admin-order.is-shipped .admin-order__badge {
  background: #f0f9ff;
  color: #0369a1;
}

.admin-order.is-received .admin-order__badge {
  background: #f0fdf4;
  color: #15803d;
}

.admin-order__total {
  margin: 0.4rem 0 0;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.admin-order__items {
  margin: 0 0 0.85rem;
  padding: 0;
  list-style: none;
}

.admin-order__items li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  color: #404040;
}

.admin-order__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem 1.25rem;
  font-size: 0.88rem;
  color: #525252;
}

@media (min-width: 640px) {
  .admin-order__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.admin-order__grid p {
  margin: 0;
}

.admin-order__grid a {
  color: var(--brand);
  font-weight: 600;
}

.admin-order__ship {
  grid-column: 1 / -1;
}

.admin-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.admin-users {
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.admin-users__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.admin-users__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.admin-users__lead {
  margin: 0.35rem 0 0;
  color: #525252;
  font-size: 0.92rem;
  line-height: 1.45;
}

.admin-users__count {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: #737373;
}

.admin-users__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.admin-user {
  padding: 1rem 1.1rem;
  border-radius: 1.05rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(20, 10, 5, 0.04);
}

.admin-user__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.65rem;
}

.admin-user__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #a3a3a3;
}

.admin-user__title {
  margin: 0.2rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.admin-user__email {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: #6a635e;
  word-break: break-all;
}

.admin-user__aside {
  text-align: right;
}

.admin-user__badge {
  display: inline-flex;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #f5f5f5;
  color: #525252;
}

.admin-user.is-admin .admin-user__badge {
  background: color-mix(in srgb, var(--brand) 12%, #fff);
  color: var(--brand);
}

.admin-user__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.3rem 1.25rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #525252;
}

@media (min-width: 640px) {
  .admin-user__meta {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.admin-user__meta p {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__copy,
  .hero__image,
  .hero__actions,
  .hero__screen-stack {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero__screen-stack .hero__image {
    transition: none;
  }

  .hero__title-text {
    transition: none;
  }

  .hero__caret {
    display: none;
  }

  .bottom-nav__home-btn,
  .bottom-nav__item,
  .faq__chip,
  .faq__chevron,
  .faq__cta-btn {
    transition: none;
  }

  .pay-result__mark,
  .pay-result__icon,
  .pay-result__title,
  .pay-result__lead,
  .pay-result__actions {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ——— Resultado de pago (éxito / pendiente / error) ——— */
.pay-result {
  --pay-ink: #1a1714;
  --pay-muted: #5c5652;
  --pay-line: rgba(26, 23, 20, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  min-height: 100svh;
  padding: 2rem 1.25rem 2.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(255, 63, 2, 0.16), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 100%, rgba(255, 106, 61, 0.1), transparent 50%),
    linear-gradient(165deg, #f7f4f1 0%, #efeae4 48%, #f3eeea 100%);
  color: var(--pay-ink);
}

.pay-result::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26, 23, 20, 0.045) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  pointer-events: none;
  opacity: 0.7;
}

.pay-result__inner {
  position: relative;
  z-index: 1;
  width: min(26rem, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pay-result__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  margin-bottom: 1.75rem;
  border-radius: 10px;
  background: var(--brand);
  text-decoration: none;
  animation: pay-result-in 0.55s ease both;
}

.pay-result__mark:hover {
  background: var(--brand-deep);
}

.pay-result__mark:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
}

.pay-result__logo {
  display: block;
  height: 20px;
  width: auto;
}

.pay-result__icon {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 0 1.25rem;
  border-radius: 50%;
  animation: pay-result-pop 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.pay-result__icon--ok {
  color: #15803d;
  background: rgba(22, 163, 74, 0.12);
  box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.16);
}

.pay-result__icon--wait {
  color: #b45309;
  background: rgba(217, 119, 6, 0.12);
  box-shadow: 0 0 0 1px rgba(217, 119, 6, 0.16);
}

.pay-result__icon--err {
  color: #b91c1c;
  background: rgba(220, 38, 38, 0.1);
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.14);
}

.pay-result__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  animation: pay-result-in 0.55s ease 0.12s both;
}

.pay-result__lead {
  margin: 0 0 1.75rem;
  max-width: 22rem;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--pay-muted);
  animation: pay-result-in 0.55s ease 0.18s both;
}

.pay-result__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  gap: 0.65rem;
  animation: pay-result-in 0.55s ease 0.24s both;
}

.pay-result__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.pay-result__btn:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
}

.pay-result__btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.pay-result__btn--ghost {
  background: transparent;
  color: var(--pay-ink);
  border: 1px solid var(--pay-line);
}

.pay-result__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-1px);
}

.pay-result__btn--whatsapp {
  background: #25d366;
}

.pay-result__btn--whatsapp:hover {
  background: #1ebe57;
}

.pay-result__hint {
  margin: 1.5rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(92, 86, 82, 0.85);
  animation: pay-result-in 0.55s ease 0.3s both;
}

@keyframes pay-result-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pay-result-pop {
  from {
    opacity: 0;
    transform: scale(0.72);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* —— FAQ bot flotante —— */
.faq-bot {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: calc(5.75rem + env(safe-area-inset-bottom));
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  pointer-events: none;
}

@media (min-width: 768px) {
  .faq-bot {
    bottom: max(1.25rem, env(safe-area-inset-bottom));
  }
}

.faq-bot__launcher,
.faq-bot__panel,
.faq-bot__close,
.faq-bot__send,
.faq-bot__chip,
.faq-bot__form {
  pointer-events: auto;
}

.faq-bot__launcher {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: min(18.5rem, calc(100vw - 2rem));
  min-height: 3rem;
  padding: 0.65rem 1rem 0.65rem 0.85rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(
    145deg,
    var(--brand-soft) 0%,
    var(--brand) 48%,
    var(--brand-deep) 100%
  );
  box-shadow:
    0 10px 28px rgba(201, 50, 0, 0.35),
    0 2px 0 rgba(255, 255, 255, 0.18) inset;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-bot__launcher:hover,
.faq-bot__launcher:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 14px 32px rgba(201, 50, 0, 0.4),
    0 2px 0 rgba(255, 255, 255, 0.2) inset;
  outline: none;
}

.faq-bot__launcher:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.faq-bot.is-open .faq-bot__launcher {
  transform: none;
}

.faq-bot__launcher-icon {
  flex-shrink: 0;
}

.faq-bot__launcher-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-align: left;
  white-space: normal;
}

.faq-bot__panel {
  width: min(22.5rem, calc(100vw - 1.5rem));
  max-height: min(32rem, calc(100dvh - 8.5rem));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.15rem;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(255, 63, 2, 0.12), transparent 55%),
    linear-gradient(180deg, #fffaf7 0%, #ffffff 42%, #fff5f0 100%);
  border: 1px solid rgba(255, 63, 2, 0.14);
  box-shadow:
    0 22px 48px rgba(40, 18, 8, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  animation: faq-bot-in 0.28s ease both;
}

.faq-bot__panel[hidden] {
  display: none !important;
}

@keyframes faq-bot-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.faq-bot__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.75rem;
  border-bottom: 1px solid rgba(255, 63, 2, 0.1);
  flex-shrink: 0;
}

.faq-bot__eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}

.faq-bot__title {
  margin: 0.15rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1c1410;
}

.faq-bot__sub {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  line-height: 1.35;
  color: rgba(70, 58, 52, 0.78);
}

.faq-bot__close {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  color: #5c4a42;
  background: rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.faq-bot__close:hover,
.faq-bot__close:focus-visible {
  background: rgba(255, 63, 2, 0.12);
  color: var(--brand-deep);
  outline: none;
}

.faq-bot__messages {
  flex: 1 1 auto;
  min-height: 12rem;
  max-height: 18rem;
  overflow-y: auto;
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  scroll-behavior: smooth;
}

.faq-bot__msg {
  max-width: 92%;
  padding: 0.65rem 0.8rem;
  border-radius: 0.9rem;
  font-size: 0.84rem;
  line-height: 1.45;
}

.faq-bot__msg p {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
}

.faq-bot__msg--assistant {
  align-self: flex-start;
  color: #2a211c;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(40, 20, 10, 0.08);
  box-shadow: 0 4px 14px rgba(40, 18, 8, 0.05);
}

.faq-bot__msg--user {
  align-self: flex-end;
  color: #fff;
  background: linear-gradient(145deg, var(--brand-soft), var(--brand));
}

.faq-bot.is-busy .faq-bot__msg--assistant:last-child p {
  opacity: 0.55;
  letter-spacing: 0.08em;
}

.faq-bot__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1rem 0.65rem;
}

.faq-bot__suggestions[hidden] {
  display: none !important;
}

.faq-bot__chip {
  border: 1px solid rgba(255, 63, 2, 0.22);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--brand-deep);
  background: rgba(255, 63, 2, 0.06);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.faq-bot__chip:hover,
.faq-bot__chip:focus-visible {
  background: rgba(255, 63, 2, 0.12);
  border-color: rgba(255, 63, 2, 0.4);
  outline: none;
}

.faq-bot__form {
  display: flex;
  gap: 0.45rem;
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid rgba(255, 63, 2, 0.1);
  background: rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
}

.faq-bot__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 2.55rem;
  padding: 0 0.85rem;
  border: 1px solid rgba(40, 20, 10, 0.12);
  border-radius: 0.85rem;
  font: inherit;
  font-size: 0.84rem;
  color: #1c1410;
  background: #fff;
}

.faq-bot__input:focus {
  outline: 2px solid color-mix(in srgb, var(--brand) 55%, transparent);
  outline-offset: 1px;
  border-color: color-mix(in srgb, var(--brand) 40%, transparent);
}

.faq-bot__send {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border: 0;
  border-radius: 0.85rem;
  color: #fff;
  background: var(--brand);
  cursor: pointer;
}

.faq-bot__send:hover:not(:disabled),
.faq-bot__send:focus-visible:not(:disabled) {
  background: var(--brand-deep);
  outline: none;
}

.faq-bot__send:disabled {
  opacity: 0.55;
  cursor: wait;
}

/* Mobile: icon-only launcher above bottom-nav + keyboard-safe panel */
@media (max-width: 767px) {
  .faq-bot {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: calc(7.5rem + env(safe-area-inset-bottom));
    --faq-vv-bottom: 0px;
    --faq-vv-height: 100dvh;
  }

  .faq-bot__launcher-label {
    display: none;
  }

  .faq-bot__launcher {
    width: 3.15rem;
    height: 3.15rem;
    min-height: 3.15rem;
    max-width: none;
    padding: 0;
    justify-content: center;
    gap: 0;
  }

  .faq-bot.is-open {
    top: max(0.45rem, env(safe-area-inset-top));
    right: max(0.5rem, env(safe-area-inset-right));
    left: max(0.5rem, env(safe-area-inset-left));
    bottom: calc(var(--faq-vv-bottom, 0px) + 0.35rem);
    align-items: stretch;
  }

  .faq-bot.is-open .faq-bot__launcher {
    display: none;
  }

  .faq-bot.is-open .faq-bot__panel {
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    height: 100%;
  }

  .faq-bot.is-open .faq-bot__sub {
    display: none;
  }

  .faq-bot.is-open .faq-bot__head {
    padding: 0.75rem 0.85rem 0.6rem;
  }

  .faq-bot.is-open .faq-bot__messages {
    min-height: 0;
    max-height: none;
    flex: 1 1 auto;
  }

  .faq-bot.is-open .faq-bot__suggestions {
    flex-shrink: 0;
    max-height: 4.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .faq-bot.is-open .faq-bot__form {
    padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
  }
}

/* —— WhatsApp CTAs (comercial 011 6219-0522) —— */
.wa-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 9999px;
  padding: 0.85rem 1.35rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-cta:hover,
.wa-cta:focus-visible {
  background: #1ebe57;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.42);
  outline: none;
}

.wa-cta:focus-visible {
  outline: 2px solid #128c7e;
  outline-offset: 3px;
}

.wa-cta iconify-icon {
  flex-shrink: 0;
}

.wa-cta--hero {
  padding: 0.7rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.wa-cta--compact {
  padding: 0.75rem 1.15rem;
  font-size: 0.9rem;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.cta-band--dark .wa-cta {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.buy__actions .wa-cta {
  width: auto;
}

@media (max-width: 767px) {
  .cta-band__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .cta-band__actions .cta-band__btn,
  .cta-band__actions .wa-cta {
    width: 100%;
    margin-inline: 0;
  }

  .buy__actions .wa-cta {
    width: min(100%, 20rem);
  }
}

@media (min-width: 768px) {
  .buy__actions .wa-cta {
    width: 100%;
  }
}

.wa-fab {
  position: fixed;
  left: max(1rem, env(safe-area-inset-left));
  bottom: calc(5.75rem + env(safe-area-inset-bottom));
  z-index: 68;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: min(16.5rem, calc(100vw - 5.5rem));
  min-height: 3.15rem;
  padding: 0.7rem 1rem 0.7rem 0.85rem;
  border-radius: 9999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  box-shadow:
    0 10px 28px rgba(37, 211, 102, 0.45),
    0 2px 0 rgba(255, 255, 255, 0.18) inset;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.wa-fab:hover,
.wa-fab:focus-visible {
  background: #1ebe57;
  transform: translateY(-2px) scale(1.02);
  outline: none;
}

.wa-fab:focus-visible {
  outline: 2px solid #128c7e;
  outline-offset: 3px;
}

.wa-fab__label {
  text-align: left;
}

@media (min-width: 768px) {
  .wa-fab {
    bottom: max(1.25rem, env(safe-area-inset-bottom));
    max-width: 17.5rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 420px) {
  .wa-fab__label {
    display: none;
  }

  .wa-fab {
    width: 3.15rem;
    height: 3.15rem;
    min-height: 3.15rem;
    max-width: none;
    padding: 0;
    justify-content: center;
  }
}
