/* ========================================
   DESCHULL PHARMA — STYLESHEET UNIFICADO
   - header/footer modulares
   - inicio
   - nosotros
   - productos
   - carrito
   - contacto
   - aviso de privacidad
   - estados de pago
======================================== */

/* ========================================
VARIABLES
======================================== */

:root {
  --font-body: lato, sans-serif;
  --font-heading: montserrat-alternates, sans-serif;
  --font-accent: montserrat-alternates, sans-serif;
  --font-numeric: montserrat-alternates, sans-serif;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;

  --color-text: #111111;
  --color-text-soft: #5f5f5f;
  --color-bg: #f6f4ef;
  --color-surface: #ffffff;
  --color-accent: #5bccdd;

  --container-width: 1240px;
  --container-padding: 24px;
  --radius: 28px;
  --header-height: 82px;

  --shadow-soft: 0 10px 30px rgba(17, 17, 17, 0.05);
  --shadow-card: 0 20px 44px rgba(17, 17, 17, 0.06);
  --shadow-strong: 0 28px 60px rgba(17, 17, 17, 0.08);
}

/* ========================================
RESET
======================================== */

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

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  background: none;
}

/* ========================================
BASE
======================================== */

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(91, 204, 221, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfaf7 0%, var(--color-bg) 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

.container {
  width: min(calc(100% - (var(--container-padding) * 2)), var(--container-width));
  margin-inline: auto;
}

#empty-cart.is-hidden,
#cart-content.is-hidden,
.is-hidden {
  display: none !important;
}

/* ========================================
TIPOGRAFÍA
======================================== */

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.4rem;
  line-height: 1.18;
}

p {
  font-size: 1rem;
  color: var(--color-text-soft);
  line-height: 1.8;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

.text-link,
.btn-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.text-link:hover,
.btn-link:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.mini-label {
  margin-bottom: 12px;
  font-family: var(--font-accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  text-transform: uppercase;
}

/* ========================================
TIPOGRAFÍA NUMÉRICA
======================================== */

.num,
.numeric {
  font-family: var(--font-numeric);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-variant-numeric: lining-nums tabular-nums;
}

/* ========================================
BOTONES
======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease,
    box-shadow 0.24s ease,
    opacity 0.24s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: #111111;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.1);
}

.btn-primary:hover {
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.14);
  opacity: 0.96;
}

.btn-primary.is-added {
  background: #0f7d47;
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(15, 125, 71, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.76);
  color: var(--color-text);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.96);
}

.btn.is-active {
  background: #111111;
  color: #ffffff;
}

.btn-block {
  width: 100%;
}

.btn-soft-cart {
  gap: 10px;
}

.btn-soft-cart__count {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.82rem;
  line-height: 1;
}

/* ========================================
HEADER
======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--header-height);
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 6px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.05);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 42px;
  max-width: 240px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  font-size: 0.96rem;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.72);
  letter-spacing: -0.01em;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  color: var(--color-text);
  opacity: 1;
}

.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1.5px;
  background: var(--color-accent);
  border-radius: 999px;
}

.header-cart-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
  min-height: 44px;
  padding: 0 14px;
  margin-left: 8px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.05);
  border: 1px solid rgba(17, 17, 17, 0.06);
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
  transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.header-cart-link:hover {
  transform: translateY(-1px);
  background: rgba(17, 17, 17, 0.08);
  border-color: rgba(17, 17, 17, 0.1);
}

.header-cart-link__count {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.78rem;
  line-height: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #111111;
  border-radius: 999px;
}

/* ========================================
   FOOTER — DESIGN SYSTEM V1.0
======================================== */

.site-footer {
  margin-top: 140px;
  padding: 110px 0 0;
  background: #f8f7f3;
  border-top: 1px solid rgba(17, 17, 17, 0.04);
  color: var(--color-text);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.footer-brand-block {
  max-width: 360px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  display: block;
  width: 190px;
  height: auto;
  margin-bottom: 26px;
}

.footer-copy {
  max-width: 320px;
  color: var(--color-text-soft);
  line-height: 1.8;
  font-size: 0.96rem;
}

/* ========================================
   COLUMNAS DEL FOOTER
======================================== */

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h4 {
  margin: 0 0 22px;
  font-family: var(--font-accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
}

.footer-column a {
  margin-bottom: 14px;
  color: rgba(17, 17, 17, 0.72);
  font-family: var(--font-accent);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-column a:hover {
  color: var(--color-accent);
  transform: translateX(3px);
}

/* ========================================
   COPYRIGHT
======================================== */

.footer-bottom {
  margin-top: 80px;
  padding: 28px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.04);
}

.footer-bottom p {
  margin: 0;
  color: rgba(17, 17, 17, 0.52);
  font-size: 0.84rem;
  line-height: 1.9;
  text-align: center;
}

/* ========================================
   FOOTER RESPONSIVE
======================================== */

@media (max-width: 900px) {

  .site-footer {
    margin-top: 110px;
    padding-top: 80px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-brand-block {
    max-width: none;
  }

  .footer-column h4 {
    margin-bottom: 16px;
  }

  .footer-bottom {
    margin-top: 56px;
  }

}

/* ========================================
UTILIDADES DE SECCIÓN
======================================== */

.section {
  padding: 5rem 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.45);
}

.section-dark {
  color: #ffffff;
  background: #111111;
}

.narrow {
  max-width: 820px;
}

.center {
  text-align: center;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  margin-bottom: 1rem;
}

.section-heading--center {
  text-align: center;
  margin-inline: auto;
}

/* ========================================
HOME
======================================== */

/* ========================================
   HOME — RITMO VERTICAL ENTRE SECCIONES
======================================== */

.hero {
  padding: 3.6rem 0 120px;
}

.collection-preview {
  padding-top: 120px;
  padding-bottom: 120px;
}

.brand-story {
  padding-top: 120px;
  padding-bottom: 140px;
}

.benefits {
  padding-top: 140px;
  padding-bottom: 120px;
}

.cta-band {
  padding: 0 0 90px;
}

/* ========================================
   HERO — COMPOSICIÓN PRINCIPAL
======================================== */

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.hero-title {
  max-width: 12ch;
}

.hero-text {
  margin-top: 1.4rem;
  max-width: 620px;
}

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

.hero-highlights {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.hero-highlights li {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--color-text);
  line-height: 1.4;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.product-stage {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  transform: translateX(56px);
}

.product-stage__image {
  display: block;
  width: min(100%, 500px);
  height: auto;
  object-fit: contain;
  animation: heroFloat 3s ease-in-out infinite;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ========================================
   COLECCIÓN HOME — TARJETAS EDITORIALES
======================================== */

.essence-grid--editorial {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

/* ========================================
   COLECCIÓN — TARJETAS EDITORIALES PREMIUM
======================================== */

.essence-card-editorial {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(17, 17, 17, 0.06);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease;
}

.essence-card-editorial img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5.8;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

.essence-card-editorial::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(17, 17, 17, 0.34),
    rgba(17, 17, 17, 0)
  );
  opacity: 0;
  transition: opacity 0.32s ease;
}

.essence-card-editorial::after {
  content: "Ver colección →";
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  color: #ffffff;
  font-family: var(--font-accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.32s ease,
    transform 0.32s ease;
}

.essence-card-editorial:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(17, 17, 17, 0.10);
}

.essence-card-editorial:hover img {
  transform: scale(1.025);
  filter: brightness(0.97);
}

.essence-card-editorial:hover::before,
.essence-card-editorial:hover::after {
  opacity: 1;
}

.essence-card-editorial:hover::after {
  transform: translateY(0);
}

.essence-card-editorial:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 6px;
}

@media (max-width: 768px) {
  .essence-card-editorial {
    border-radius: 22px;
  }

  .essence-card-editorial img {
    aspect-ratio: 4 / 5.2;
  }
}

/* ========================================
   FOTOGRAFÍA EDITORIAL — BANNER INTERACTIVO
======================================== */

.editorial-banner {
  position: relative;
  display: block;
  min-height: 640px;
  overflow: hidden;
  border-radius: 34px;
  text-decoration: none;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.editorial-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}

.editorial-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0.22) 42%,
      rgba(0, 0, 0, 0.05) 100%
    );
}

.editorial-banner__overlay {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 72px;
  transition: transform 0.35s ease;
}

.editorial-banner__overlay h2 {
  margin: 14px 0 20px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  color: #ffffff;
}

.editorial-banner__overlay p {
  max-width: 460px;
  margin: 0 0 38px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.editorial-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 34px;
  border-radius: 999px;
  background: #171717;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.editorial-banner:hover img {
  transform: scale(1.04);
  filter: brightness(0.94);
}

.editorial-banner:hover .editorial-banner__overlay {
  transform: translateY(-6px);
}

.editorial-banner:hover .editorial-banner__button {
  background: var(--color-accent);
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.editorial-banner:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 6px;
}

/* ========================================
   BENEFICIOS — SECCIÓN EDITORIAL TIPO REVISTA
======================================== */

.benefits-editorial-list {
  display: grid;
  gap: 72px;
  margin-top: 72px;
}

.benefit-editorial-item {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 64px;
}

.benefit-editorial-item--reverse {
  grid-template-columns: 1.15fr 0.85fr;
}

.benefit-editorial-item--reverse .benefit-editorial-copy {
  order: 2;
}

.benefit-editorial-item--reverse .benefit-editorial-media {
  order: 1;
}

.benefit-editorial-copy {
  max-width: 460px;
}

/* ========================================
   BENEFICIOS — NÚMEROS EDITORIALES
======================================== */

.benefit-editorial-number {
  display: block;
  margin-bottom: 22px;

  font-family: var(--font-heading);
  font-size: clamp(5.4rem, 9vw, 8.6rem);
  font-weight: 300;
  line-height: 0.78;
  letter-spacing: -0.08em;

  color: rgba(91, 204, 221, 0.14);

  user-select: none;
  pointer-events: none;
}

.benefit-editorial-copy h3 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #1d1d1f;
}

@media (max-width: 900px) {
  .benefit-editorial-number {
    margin-bottom: 18px;
    font-size: clamp(4.4rem, 18vw, 6rem);
  }
}

.benefit-editorial-copy p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5f5f64;
}

.benefit-editorial-media {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

.benefit-editorial-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  display: block;
  object-fit: cover;
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}

.benefit-editorial-item:hover .benefit-editorial-media img {
  transform: scale(1.035);
  filter: brightness(0.96);
}

/* ========================================
   CTA FINAL — BANDA HOME
======================================== */

.cta-band__inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(91, 204, 221, 0.2), #ffffff);
}

.cta-band__copy {
  max-width: 700px;
}

/* ========================================
   HOME — RESPONSIVE
======================================== */

@media (max-width: 1180px) {
  .essence-grid--editorial {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .product-stage {
    transform: translateX(0);
  }

  .hero-visual {
    justify-content: center;
  }

  .benefits-editorial-list {
    gap: 56px;
    margin-top: 56px;
  }

  .benefit-editorial-item,
  .benefit-editorial-item--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .benefit-editorial-item--reverse .benefit-editorial-copy,
  .benefit-editorial-item--reverse .benefit-editorial-media {
    order: initial;
  }

  .benefit-editorial-copy {
    max-width: 100%;
  }

  .benefit-editorial-media {
    min-height: 360px;
    border-radius: 26px;
  }

  .benefit-editorial-media img {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .collection-preview,
  .brand-story,
  .benefits {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .cta-band {
    padding-bottom: 64px;
  }

  .essence-grid--editorial {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .essence-card-editorial {
    border-radius: 24px;
  }

  .essence-card-editorial img {
    aspect-ratio: 4 / 5.2;
  }

  .editorial-banner {
    min-height: 520px;
    border-radius: 26px;
  }

  .editorial-banner::before {
    background:
      linear-gradient(
        to top,
        rgba(0, 0, 0, 0.68) 0%,
        rgba(0, 0, 0, 0.34) 58%,
        rgba(0, 0, 0, 0.12) 100%
      );
  }

  .editorial-banner__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 34px 26px;
  }

  .cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ========================================
PAGE HERO INTERNO
======================================== */

.page-hero {
  padding: 56px 0 22px;
}

.page-hero h1 {
  margin-bottom: 14px;
}

.page-subtitle {
  max-width: 760px;
  color: var(--color-text-soft);
}

/* ========================================
NOSOTROS
======================================== */

.about-hero {
  padding: 42px 0 92px;
}

.about-hero__grid,
.about-quality__grid,
.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.about-hero__content {
  align-self: center;
}

.about-hero__content h1 span {
  display: block;
  color: var(--color-text-soft);
}

.about-hero__visual {
  display: flex;
  align-items: stretch;
}

.about-hero__card,
.about-cta__box {
  width: 100%;
  padding: 34px 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(91, 204, 221, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 17, 17, 0.05);
  box-shadow: var(--shadow-card);
}

.about-story {
  padding-top: 0;
}

.about-story__text {
  align-self: center;
}

.about-story__text p + p,
.about-quality__content p + p {
  margin-top: 1rem;
}

.about-values,
.about-lines,
.about-cta,
.contact-methods,
.contact-info,
.contact-faq {
  padding-top: 0;
}

.values-grid,
.lines-grid,
.contact-methods__grid,
.contact-info__grid,
.payment-status-summary {
  display: grid;
  gap: 1.2rem;
}

.values-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-card,
.line-card,
.info-card,
.contact-method,
.payment-status-summary__item {
  padding: 1.6rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 17, 17, 0.05);
  box-shadow: var(--shadow-soft);
}

.value-number {
  display: inline-flex;
  margin-bottom: 0.9rem;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.lines-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.line-card--accent {
  background:
    linear-gradient(180deg, rgba(91, 204, 221, 0.16), rgba(255, 255, 255, 0.96));
}

.about-quality {
  padding: 104px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(91, 204, 221, 0.18), transparent 30%),
    #111111;
}

.about-quality h2,
.about-quality p,
.about-quality .eyebrow {
  color: #ffffff;
}

.about-quality .eyebrow {
  opacity: 0.88;
}

.about-quality__content {
  align-self: center;
}

.about-cta {
  padding-bottom: 104px;
}

.about-cta__box {
  text-align: center;
}

.about-cta__box p:not(.eyebrow) {
  max-width: 760px;
  margin-inline: auto;
}

.about-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1.4rem;
}

/* ========================================
PRODUCTOS
======================================== */

.products-page {
  padding-bottom: 72px;
}

.products-intro {
  padding: 64px 0 46px;
}

.products-intro__wrap {
  max-width: 820px;
}

.products-intro .eyebrow {
  margin-bottom: 14px;
}

.products-intro h1 {
  max-width: 820px;
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.products-intro__lead {
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text-soft);
}

.products-grid-section {
  padding: 12px 0 42px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.065);
  box-shadow: 0 22px 56px rgba(17, 17, 17, 0.06);
  transition:
    transform 0.36s ease,
    box-shadow 0.36s ease,
    border-color 0.36s ease;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.006);
  border-color: rgba(17, 17, 17, 0.11);
  box-shadow: 0 32px 78px rgba(17, 17, 17, 0.115);
}

.product-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 430px;
  min-height: 330px;
  padding: 0;
  overflow: hidden;
  background: #f4efe7;
}

.product-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.07);
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111111;
  transition:
    transform 0.28s ease,
    background-color 0.28s ease,
    box-shadow 0.28s ease;
}

.product-card:hover .product-card__badge {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.1);
}

.product-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
  will-change: transform;
}

.product-card:hover .product-card__image {
  transform: scale(1.025);
  filter: brightness(0.98);
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 32px 34px 30px;
}

.product-card__eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.product-card h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.2vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #111111;
}

.product-card__subtitle {
  margin: 10px 0 0;
  font-size: 1rem;
  color: var(--color-text-soft);
}

.product-card__price {
  margin: 22px 0 24px;
  font-size: clamp(2.25rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: #111111;
}

.product-card__description {
  margin: 0 0 28px;
  max-width: 48ch;
  font-size: 1rem;
  line-height: 1.82;
  color: var(--color-text-soft);
}

.product-card__includes-title {
  display: block;
  margin: 4px 0 13px;
  font-family: var(--font-accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #111111;
}

.product-card__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  color: #4f4f4f;
  font-size: 0.96rem;
  line-height: 1.5;
}

.product-card__list li {
  position: relative;
  padding-left: 14px;
}

.product-card__list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
  transform: translateY(-50%);
}

.product-card__actions {
  display: grid;
  gap: 14px;
  margin-top: auto;
}

.product-card__actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 56px;
}

.product-card__actions .btn-primary:hover {
  transform: translateY(-2px) scale(1.012);
  background: #181818;
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.18);
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  color: #111111;
  opacity: 0.72;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.product-card__link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.products-note {
  padding: 14px 0 44px;
}

.products-note__box {
  padding: 44px 50px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(91, 204, 221, 0.09), transparent 32%),
    rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 17, 17, 0.055);
  box-shadow: 0 16px 42px rgba(17, 17, 17, 0.04);
}

.products-note__box h2 {
  max-width: 690px;
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 2.5vw, 2.55rem);
  line-height: 1.06;
  color: #111111;
}

.products-note__box p {
  max-width: 880px;
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.86;
}

@media (max-width: 1180px) {
  .products-grid {
    gap: 28px;
  }

  .product-card__media {
    height: 300px;
    min-height: 300px;
  }
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card__media {
    height: 540px;
    min-height: 540px;
  }
}

@media (max-width: 768px) {
  .products-intro {
    padding: 46px 0 34px;
  }

  .products-grid-section {
    padding-top: 0;
  }

  .product-card {
    border-radius: 26px;
  }

  .product-card__media {
    height: 430px;
    min-height: 430px;
  }

  .product-card__badge {
    top: 16px;
    left: 16px;
    min-height: 28px;
    padding: 5px 12px;
    font-size: 0.64rem;
  }

  .product-card__body {
    padding: 28px 22px 24px;
  }

  .product-card__price {
    font-size: clamp(2.2rem, 11vw, 2.75rem);
  }

  .product-card__list {
    grid-template-columns: 1fr;
  }

  .products-note__box {
    padding: 34px 26px;
    border-radius: 26px;
  }
}

@media (max-width: 560px) {
  .product-card__media {
    height: 360px;
    min-height: 360px;
  }
}

/* ========================================
LEGACY PRODUCTOS (compatibilidad)
======================================== */

.products-launch-hero {
  padding: 3.6rem 0 4rem;
}

.products-launch-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.products-launch-hero__copy,
.products-launch-hero__aside {
  padding: 2rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.products-launch-hero__text {
  max-width: 620px;
  margin-top: 1.2rem;
  font-size: 1.05rem;
}

.products-launch-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.products-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(91, 204, 221, 0.12);
  color: var(--color-text);
  font-family: var(--font-accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.products-launch-info {
  display: grid;
  gap: 12px;
  margin-top: 1.5rem;
}

.products-launch-info__item {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.products-launch-info__item strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-accent);
}

.products-launch-hero__actions {
  margin-top: 1.2rem;
}

.launch-kit-grid {
  display: grid;
  gap: 1.5rem;
}

.launch-kit-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: stretch;
  padding: 1.4rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

.launch-kit-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 0;
}

.launch-kit-card__media--30 {
  background:
    radial-gradient(circle at top right, rgba(91, 204, 221, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 244, 239, 0.92));
}

.launch-kit-card__media--60 {
  background:
    radial-gradient(circle at top right, rgba(17, 17, 17, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 244, 239, 0.92));
}

.launch-kit-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 17, 17, 0.06);
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.launch-kit-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.launch-kit-card__content {
  display: flex;
  flex-direction: column;
}

.launch-kit-card__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.launch-kit-card__subtitle {
  font-size: 0.95rem;
}

.launch-kit-card__price {
  flex-shrink: 0;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
}

.launch-kit-card__description {
  color: var(--color-text-soft);
}

.launch-kit-card__includes {
  margin-top: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.launch-kit-card__includes > span {
  display: inline-flex;
  margin-bottom: 0.6rem;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-kit-card__includes ul {
  padding-left: 1.1rem;
  list-style: disc;
}

.launch-kit-card__includes li {
  color: var(--color-text-soft);
  margin-bottom: 0.35rem;
}

.launch-kit-card__actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.launch-kit-card__actions {
  margin-top: auto;
  padding-top: 1.2rem;
}

.launch-essences-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.launch-essence-card {
  padding: 1.5rem 1.2rem;
  border-radius: 24px;
  color: var(--color-text);
  border: 1px solid rgba(17, 17, 17, 0.05);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.82);
}

.launch-essence-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.22rem;
}

.launch-essence-card--bergamota {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.92)),
    rgba(91, 204, 221, 0.34);
}

.launch-essence-card--pepino {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.92)),
    rgba(245, 197, 218, 0.42);
}

.launch-essence-card--coco {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.96)),
    rgba(240, 240, 240, 0.96);
}

.launch-essence-card--maracuya {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.92)),
    rgba(255, 212, 111, 0.52);
}

.launch-essence-card--hierbabuena {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.92)),
    rgba(151, 204, 169, 0.38);
}

.launch-shipping-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  padding: 2rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-card);
}

.launch-shipping-table {
  display: grid;
  gap: 12px;
}

.launch-shipping-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.cta-panel {
  padding: 2rem;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(91, 204, 221, 0.18), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow-soft);
}

/* ========================================
CARRITO
======================================== */

.cart-page {
  padding-bottom: 92px;
}

.cart-launch-hero {
  padding: 36px 0 56px;
}

.cart-launch-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.cart-launch-hero__copy,
.cart-launch-hero__aside,
.cart-card,
.cart-summary,
.cart-support {
  padding: 34px 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 17, 17, 0.05);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cart-launch-hero__text {
  max-width: 620px;
  margin-top: 1.1rem;
  font-size: 1.05rem;
  color: var(--color-text-soft);
}

.cart-launch-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.cart-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(91, 204, 221, 0.12);
  color: var(--color-text);
  font-family: var(--font-accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-launch-info {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.cart-launch-info__item {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.cart-launch-info__item strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  color: var(--color-text);
}

.cart-launch-info__item span {
  color: var(--color-text-soft);
}

.cart-section {
  padding: 0 0 64px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.cart-sidebar {
  display: grid;
  gap: 1.4rem;
}

.cart-card__head {
  margin-bottom: 1rem;
}

.cart-card__head p {
  color: var(--color-text-soft);
}

.cart-list {
  display: grid;
  gap: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.cart-item__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.05);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 244, 239, 0.92));
}

.cart-item__media--30 {
  background:
    radial-gradient(circle at top right, rgba(91, 204, 221, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 244, 239, 0.92));
}

.cart-item__media--60 {
  background:
    radial-gradient(circle at top right, rgba(17, 17, 17, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 244, 239, 0.92));
}

.cart-item__media img {
  max-height: 150px;
  object-fit: contain;
}

.cart-item__content {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

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

.cart-item__top h3,
.cart-item__content h3 {
  margin: 0;
}

.cart-item__variant {
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.cart-item__price {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
}

.cart-item__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.cart-item__controls label {
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text);
}

.cart-item__controls input {
  width: 84px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #ffffff;
}

.cart-item__subtotal {
  font-family: var(--font-accent);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--color-text);
}

.cart-item__remove {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.04);
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
  transition: background-color 0.24s ease, transform 0.24s ease;
}

.cart-item__remove:hover {
  transform: translateY(-1px);
  background: rgba(17, 17, 17, 0.08);
}

.cart-card__actions,
.cart-summary__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cart-card__actions {
  margin-top: 1.2rem;
}

.cart-summary h3,
.cart-support h3 {
  margin-bottom: 1rem;
}

.cart-shipping {
  margin-bottom: 1.2rem;
}

.cart-shipping__label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text);
}

.cart-shipping__select,
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.cart-shipping__select:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(91, 204, 221, 0.75);
  box-shadow: 0 0 0 4px rgba(91, 204, 221, 0.12);
}

.cart-shipping__note,
.cart-summary__note {
  color: var(--color-text-soft);
  font-size: 0.92rem;
}

.cart-summary__rows {
  display: grid;
  gap: 0.9rem;
  margin: 1.1rem 0;
}

.cart-summary__row,
.cart-summary__total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.cart-summary__row {
  color: var(--color-text-soft);
}

.cart-summary__total {
  margin-top: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  font-family: var(--font-accent);
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--color-text);
}

.cart-support p {
  color: var(--color-text-soft);
}

.cart-support__links {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.cart-support__link {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(17, 17, 17, 0.04);
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--color-text);
  transition: transform 0.24s ease, background-color 0.24s ease;
}

.cart-support__link:hover {
  transform: translateY(-1px);
  background: rgba(17, 17, 17, 0.07);
}

.cart-empty {
  max-width: 760px;
  margin: 0 auto;
  padding: 42px 36px;
  text-align: center;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 17, 17, 0.05);
  box-shadow: var(--shadow-card);
}

.cart-empty p {
  color: var(--color-text-soft);
}

.cart-empty__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.2rem;
}

/* ========================================
CONTACTO
======================================== */

.contact-hero {
  padding: 104px 0 70px;
  background:
    radial-gradient(circle at top right, rgba(91, 204, 221, 0.12), transparent 30%),
    linear-gradient(180deg, #f6f4ef 0%, #f8f7f3 100%);
}

.contact-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.contact-hero__content .lead {
  max-width: 640px;
  margin: 22px 0 0;
}

.contact-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.contact-hero__card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 60px rgba(17, 17, 17, 0.08);
}

.contact-hero__card-item + .contact-hero__card-item {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.contact-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.contact-form-section {
  padding-top: 0;
}

.contact-form-layout,
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.contact-form-copy,
.faq-copy {
  align-self: center;
}

.contact-form-copy p + p,
.faq-copy p + p {
  margin-top: 1rem;
}

.contact-points {
  margin-top: 1.2rem;
  padding-left: 1.1rem;
  list-style: disc;
}

.contact-points li {
  color: var(--color-text-soft);
  margin-bottom: 0.55rem;
}

.contact-form-card {
  padding: 34px 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 17, 17, 0.05);
  box-shadow: var(--shadow-card);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-field label,
.form-consent {
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text);
}

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0.8rem 0 1rem;
  color: var(--color-text-soft);
}

.form-consent input {
  margin-top: 0.2rem;
}

.form-consent a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-methods__grid,
.contact-info__grid {
  display: grid;
  gap: 1.2rem;
}

.contact-methods__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-info__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-method a,
.info-card a {
  display: inline-flex;
  margin-top: 0.5rem;
  font-family: var(--font-accent);
  font-weight: 700;
}

.contact-method p,
.info-card p,
.faq-copy p,
.contact-form-copy p {
  color: var(--color-text-soft);
}

.info-card__label,
.contact-label {
  display: inline-flex;
  margin-bottom: 0.5rem;
  font-family: var(--font-accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item,
.faq-list details {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(17, 17, 17, 0.05);
  overflow: hidden;
}

.faq-item summary,
.faq-list summary {
  position: relative;
  padding: 1.2rem 1.35rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  line-height: 1.25;
  color: var(--color-text);
}

.faq-item summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after,
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
}

.faq-item[open] summary::after,
.faq-list details[open] summary::after {
  content: "–";
}

.faq-item p,
.faq-list details p {
  padding: 0 1.35rem 1.25rem;
  margin: 0;
  color: var(--color-text-soft);
}

/* ========================================
PRIVACIDAD / ESTADOS
======================================== */

.privacy {
  padding: 0 0 5rem;
}

.privacy-container {
  max-width: 900px;
}

.privacy-container h2 {
  margin-top: 42px;
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 2.2vw, 2.15rem);
}

.privacy-container p,
.privacy-container li {
  color: var(--color-text-soft);
}

.privacy-container ul {
  margin-bottom: 1rem;
  padding-left: 1.2rem;
  list-style: disc;
}

.privacy-date,
.privacy-email {
  font-family: var(--font-accent);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--color-text);
}

.payment-status-page {
  padding-bottom: 96px;
}

.payment-status-section {
  padding: 42px 0 40px;
}

.payment-status-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 36px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.payment-status-card--success {
  background:
    radial-gradient(circle at top right, rgba(91, 204, 221, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.92);
}

.payment-status-card--pending {
  background:
    radial-gradient(circle at top right, rgba(255, 210, 92, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.92);
}

.payment-status-card--rejected {
  background:
    radial-gradient(circle at top right, rgba(255, 120, 120, 0.14), transparent 28%),
    rgba(255, 255, 255, 0.92);
}

.payment-status-text {
  max-width: 620px;
  margin: 0 auto 1.4rem;
  color: var(--color-text-soft);
}

.payment-status-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.6rem 0;
  text-align: left;
}

.payment-status-summary__item strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.payment-status-summary__item span {
  color: var(--color-text);
}

.payment-status-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ========================================
TOAST
======================================== */

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 1300;
  transform: translateX(-50%) translateY(12px);
  max-width: min(92vw, 520px);
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.95);
  color: #ffffff;
  font-family: var(--font-accent);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ========================================
FLOATING CART
======================================== */

.floating-cart {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1250;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 260px;
  padding: 14px 16px;
  border-radius: 24px;
  background: rgba(17, 17, 17, 0.92);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 52px rgba(17, 17, 17, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.28s ease, opacity 0.28s ease, box-shadow 0.28s ease;
}

.floating-cart.is-visible {
  display: inline-flex;
}

.floating-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(17, 17, 17, 0.24);
}

.floating-cart.is-pulsing {
  animation: cartPulse 0.6s ease;
}

@keyframes cartPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.floating-cart__left {
  display: grid;
  gap: 2px;
}

.floating-cart__label {
  font-family: var(--font-accent);
  font-size: 0.96rem;
  font-weight: 700;
}

.floating-cart__meta {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
}

.floating-cart__right {
  font-size: 0.94rem;
  white-space: nowrap;
}

/* ========================================
RESPONSIVE
======================================== */

@media (max-width: 1180px) {
  .hero-grid,
  .story-grid,
  .products-launch-hero__grid,
  .launch-shipping-panel,
  .contact-hero__grid,
  .about-hero__grid,
  .about-story__grid,
  .about-quality__grid,
  .contact-form-layout,
  .faq-layout,
  .cart-launch-hero__grid,
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .launch-kit-card {
    grid-template-columns: 1fr;
  }

  .launch-essences-grid,
  .essence-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header-inner {
    gap: 14px;
    padding: 0 16px;
  }

  .nav-toggle {
    display: block;
    order: 4;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 20px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-card);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-left: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-cart-link {
    margin-left: auto;
    order: 3;
  }

  .launch-kit-card__media {
    min-height: 320px;
  }

  .launch-essences-grid,
  .essence-grid,
  .benefits-grid,
  .contact-methods__grid,
  .contact-info__grid,
  .payment-status-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item__media {
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 18px;
  }

  h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .hero,
  .products-launch-hero,
  .cart-launch-hero {
    padding: 2rem 0 3rem;
  }

  .products-intro {
    padding: 52px 0 28px;
  }

  .products-launch-hero__copy,
  .products-launch-hero__aside,
  .launch-shipping-panel,
  .cta-panel,
  .about-hero__card,
  .about-cta__box,
  .contact-form-card,
  .payment-status-card,
  .cart-launch-hero__copy,
  .cart-launch-hero__aside,
  .cart-card,
  .cart-summary,
  .cart-support,
  .cart-empty,
  .products-note__box {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .launch-kit-card {
    padding: 1rem;
    border-radius: 24px;
  }

  .launch-kit-card__media {
    padding: 1.2rem;
    border-radius: 20px;
  }

  .product-card__body {
    padding: 22px 20px 20px;
  }

  .launch-kit-card__top,
  .cart-item__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .launch-kit-card__actions,
  .cta-actions,
  .contact-hero__actions,
  .about-cta__actions,
  .payment-status-actions,
  .cart-card__actions,
  .cart-summary__actions,
  .cart-empty__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .launch-essences-grid,
  .essence-grid,
  .benefits-grid,
  .values-grid,
  .lines-grid,
  .contact-info__grid,
  .payment-status-summary,
  .form-row,
  .contact-methods__grid {
    grid-template-columns: 1fr;
  }

  .floating-cart {
    left: 14px;
    right: 14px;
    bottom: 14px;
    min-width: auto;
    border-radius: 18px;
  }

  .toast {
    bottom: 84px;
    border-radius: 18px;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    height: 34px;
  }

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

  .header-inner {
    min-height: 74px;
    margin-top: 10px;
  }

  .header-cart-link__label {
    display: none;
  }

  .floating-cart {
    padding: 13px 14px;
  }

  .floating-cart__label {
    font-size: 0.92rem;
  }

  .floating-cart__meta,
  .floating-cart__right {
    font-size: 0.8rem;
  }

  .contact-form-card {
    padding: 22px 18px;
  }

  .privacy-container h2 {
    margin-top: 34px;
  }

  .cart-empty {
    padding: 30px 20px;
  }
}

.dev-banner {
  width: 100%;
  text-align: center;
  padding: 8px 12px;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;

  background: linear-gradient(
    90deg,
    #111111 0%,
    #5bccdd 50%,
    #111111 100%
  );

  z-index: 1200;
}
/* ========================================
   MICROINTERACCIONES — APARICIÓN SUAVE SIN ROMPER HOVERS
======================================== */

.hero-copy .eyebrow,
.hero-title,
.hero-text,
.hero-actions,
.hero-highlights {
  opacity: 0;
  animation: fadeInSoft 0.8s ease forwards;
}

.hero-copy .eyebrow {
  animation-delay: 0.05s;
}

.hero-title {
  animation-delay: 0.16s;
}

.hero-text {
  animation-delay: 0.28s;
}

.hero-actions {
  animation-delay: 0.4s;
}

.hero-highlights {
  animation-delay: 0.52s;
}

@keyframes fadeInSoft {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/* ========================================
   MICROINTERACCIONES — RESTAURAR HOVERS SUAVES
======================================== */

.essence-card-editorial {
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease;
}

.essence-card-editorial img {
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

.essence-card-editorial::before,
.essence-card-editorial::after {
  transition:
    opacity 0.32s ease,
    transform 0.32s ease;
}

.editorial-banner img {
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}

.editorial-banner__overlay {
  transition: transform 0.35s ease;
}

.editorial-banner__button {
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.benefit-editorial-media img {
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}

.btn {
  transition:
    transform 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease,
    box-shadow 0.24s ease,
    opacity 0.24s ease;
}

/* ========================================
   MICROINTERACCIONES — ACCESIBILIDAD SIN ROMPER HOVERS
======================================== */

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

  .product-stage__image {
    animation: none;
  }
}
/* ========================================
   HERO — FLOTACIÓN DEL PRODUCTO
======================================== */

.product-stage__image {
  animation: heroFloat 3s ease-in-out infinite;
  will-change: transform;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ========================================
   HERO — FLOTACIÓN DEL PRODUCTO
======================================== */

.product-stage__image {
  animation: heroFloat 3s ease-in-out infinite !important;
  will-change: transform;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ========================================
   HOME MOBILE — REFINAMIENTO DE RITMO Y JERARQUÍA
======================================== */

@media (max-width: 768px) {

  /* Beneficios: título principal más controlado */
  .benefits .section-heading h2 {
    font-size: clamp(2.15rem, 9vw, 2.8rem);
    line-height: 1.08;
  }

  .benefits .section-heading p {
    max-width: 32ch;
    margin-inline: auto;
  }

  /* Beneficios: más aire entre capítulos */
  .benefits-editorial-list {
    gap: 96px;
  }

  /* Beneficios: números menos invasivos */
  .benefit-editorial-number {
    margin-bottom: 16px;
    font-size: clamp(3.8rem, 20vw, 5.2rem);
    line-height: 0.85;
  }

  .benefit-editorial-copy h3 {
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1.05;
  }

  .benefit-editorial-copy p {
    font-size: 1rem;
    line-height: 1.75;
  }

  /* CTA final: más compacto en mobile */
  .cta-band__inner {
    padding: 44px 34px;
    border-radius: 30px;
  }

  .cta-band__copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    line-height: 1.05;
  }

  .cta-band__inner .btn {
    margin-top: 8px;
  }

  /* Footer: separación editorial entre grupos */
  .footer-column {
    padding-top: 28px;
    border-top: 1px solid rgba(17, 17, 17, 0.06);
  }

  .footer-column h4 {
    margin-bottom: 18px;
  }

  .footer-column a {
    margin-bottom: 16px;
  }

}

/* ========================================
   CARRITO — PREMIUM CHECKOUT V3
======================================== */

.cart-page--premium {
  padding-bottom: 96px;
}

.cart-compact-hero {
  padding: 46px 0 36px;
}

.cart-compact-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  gap: 28px;
  align-items: stretch;
}

.cart-compact-hero__copy,
.cart-compact-hero__panel {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 17, 17, 0.055);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.065);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cart-compact-hero__copy {
  padding: 42px 38px;
}

.cart-compact-hero__copy h1 {
  max-width: 8ch;
  margin: 0 0 18px;
  font-size: clamp(3.25rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.cart-compact-hero__copy p {
  max-width: 620px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.cart-compact-hero__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(91, 204, 221, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.9);
}

.cart-price-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.cart-price-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.055);
}

.cart-price-list strong,
.cart-price-list span {
  font-family: var(--font-accent);
  font-size: 0.92rem;
  line-height: 1.35;
}

.cart-price-list span {
  color: var(--color-text-soft);
  text-align: right;
}

.checkout-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.checkout-progress li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(17, 17, 17, 0.055);
  color: rgba(17, 17, 17, 0.52);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.checkout-progress li span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.07);
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.74rem;
}

.checkout-progress li.is-current {
  background: #111111;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.12);
}

.checkout-progress li.is-current span {
  background: var(--color-accent);
  color: #111111;
}

.cart-section--premium {
  padding: 0 0 72px;
}

.cart-layout--premium {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.58fr);
  gap: 28px;
  align-items: start;
}

.cart-card--premium,
.cart-summary--premium,
.cart-support--compact,
.cart-empty--premium {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 17, 17, 0.055);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.065);
}

.cart-card--premium {
  padding: 34px;
}

.cart-card__head--premium {
  margin-bottom: 26px;
}

.cart-card__head--premium h2 {
  margin: 0 0 4px;
}

.cart-list--premium {
  gap: 18px;
}

.cart-item--premium {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 22px;
  padding: 14px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.055);
  box-shadow: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.cart-item--premium:hover {
  transform: translateY(-3px);
  border-color: rgba(17, 17, 17, 0.1);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.075);
}

.cart-item__media--editorial {
  min-height: 220px;
  height: 220px;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #f4efe7;
}

.cart-item__media--editorial img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.cart-item--premium:hover .cart-item__media--editorial img {
  transform: scale(1.025);
  filter: brightness(0.98);
}

.cart-item--premium .cart-item__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 10px 10px 0;
}

.cart-item__label {
  margin-bottom: 6px;
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  line-height: 1.4;
}

.cart-item--premium .cart-item__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.cart-item--premium h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2.15rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.cart-item--premium .cart-item__variant {
  margin-top: 6px;
  color: var(--color-text-soft);
}

.cart-item--premium .cart-item__price {
  flex-shrink: 0;
  font-size: 1.4rem;
  line-height: 1;
  text-align: right;
  color: #111111;
}

.cart-item__footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: end;
}

.cart-item__quantity {
  display: grid;
  gap: 8px;
}

.cart-item__quantity label,
.cart-item__subtotal-wrap span {
  font-family: var(--font-accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.52);
}

.cart-item__quantity input {
  width: 82px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #ffffff;
  font-family: var(--font-accent);
  font-weight: 700;
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.cart-item__quantity input:focus {
  outline: none;
  border-color: rgba(91, 204, 221, 0.75);
  box-shadow: 0 0 0 4px rgba(91, 204, 221, 0.12);
}

.cart-item__subtotal-wrap {
  display: grid;
  gap: 5px;
  justify-self: end;
  text-align: right;
}

.cart-item__subtotal-wrap strong {
  font-size: 1rem;
  color: #111111;
}

.cart-item__remove--link,
.cart-clear-link,
.cart-back-link {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.62);
  cursor: pointer;
  transition: color 0.24s ease, transform 0.24s ease;
}

.cart-item__remove--link:hover,
.cart-clear-link:hover,
.cart-back-link:hover {
  color: #111111;
  transform: translateY(-1px);
  background: transparent;
}

.cart-card__actions--premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 17, 17, 0.065);
}

.cart-clear-link {
  opacity: 0.72;
}

.cart-sidebar--premium {
  position: sticky;
  top: 118px;
  gap: 18px;
}

.cart-summary--premium {
  padding: 30px;
}

.cart-summary--premium h3 {
  margin: 0 0 22px;
  font-size: 1.85rem;
  letter-spacing: -0.04em;
}

.cart-summary__rows--premium {
  gap: 0;
  margin: 0 0 18px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background: rgba(255, 255, 255, 0.72);
}

.cart-summary__rows--premium .cart-summary__row {
  min-height: 58px;
  padding: 16px 18px;
}

.cart-summary__rows--premium .cart-summary__row + .cart-summary__row {
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}

.cart-summary__row--subtotal strong {
  font-size: 1.24rem;
  color: #111111;
}

.cart-summary--premium .cart-summary__note {
  margin-bottom: 20px;
  font-size: 0.94rem;
  line-height: 1.7;
}

.cart-summary__actions--premium {
  display: grid;
  gap: 12px;
}

.cart-summary__actions--premium .btn {
  min-height: 56px;
}

.cart-support--compact {
  padding: 24px;
}

.cart-support--compact h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.cart-support--compact p {
  display: none;
}

.cart-support--compact .cart-support__links {
  margin-top: 0;
}

.cart-empty--premium {
  max-width: 780px;
}

.toast {
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.94);
  box-shadow: 0 22px 50px rgba(17, 17, 17, 0.22);
}

@media (max-width: 1180px) {
  .cart-compact-hero__grid,
  .cart-layout--premium {
    grid-template-columns: 1fr;
  }

  .cart-sidebar--premium {
    position: static;
  }
}

@media (max-width: 900px) {
  .cart-compact-hero {
    padding: 34px 0 28px;
  }

  .checkout-progress {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-item--premium {
    grid-template-columns: 200px minmax(0, 1fr);
  }

  .cart-item__media--editorial {
    min-height: 210px;
    height: 210px;
  }
}

@media (max-width: 768px) {
  .cart-compact-hero__copy,
  .cart-compact-hero__panel,
  .cart-card--premium,
  .cart-summary--premium,
  .cart-support--compact {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .cart-compact-hero__copy h1 {
    max-width: 9ch;
    font-size: clamp(3.1rem, 14vw, 4.4rem);
  }

  .checkout-progress {
    gap: 10px;
  }

  .checkout-progress li {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  .cart-item--premium {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .cart-item__media--editorial {
    height: 360px;
    min-height: 360px;
  }

  .cart-item--premium .cart-item__content {
    padding: 8px 6px 10px;
  }

  .cart-item--premium .cart-item__top {
    flex-direction: column;
  }

  .cart-item--premium .cart-item__price {
    text-align: left;
  }

  .cart-item__footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cart-item__subtotal-wrap {
    justify-self: start;
    text-align: left;
  }

  .cart-card__actions--premium {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 560px) {
  .cart-item__media--editorial {
    height: 300px;
    min-height: 300px;
  }

  .cart-price-list div {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .cart-price-list span {
    text-align: left;
  }
}
