/* Caframa — identidad "Rojo Obra + Morado Vino". HTML estático, sin build step.
   Diseño: minimalista, foto-primero (referencia Zara Home) — misma tipografía y color de siempre. */

:root {
  --newsprint: #ffffff;
  --tinta: #171310;
  --carbon: #2b2622;
  --line: #e7e5e0;
  --rojo: #c23b1f;
  --vino: #6e2a3f;
  --font-display: "Arial Black", Arial, sans-serif;
  --font-brand: "Courier New", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html, body { height: 100%; }
body {
  margin: 0;
  background: var(--newsprint);
  color: var(--tinta);
  font-family: var(--font-brand);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap--text { max-width: 900px; }

.display {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.stretch { transform: scaleY(1.08); transform-origin: left; display: inline-block; }
.accent { color: var(--rojo); }

/* ================= header ================= */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--newsprint);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 6px;
}
.logo { font-size: 18px; text-decoration: none; color: var(--tinta); }

.cart-link { position: relative; display: flex; align-items: center; justify-content: center; padding: 6px; color: var(--tinta); text-decoration: none; margin-left: auto; }
.cart-link svg { width: 20px; height: 20px; display: block; }
.cart-badge {
  position: absolute; top: 0; right: 0; background: var(--rojo); color: var(--newsprint);
  font-family: var(--font-brand); font-size: 10px; line-height: 1; min-width: 16px; height: 16px;
  border-radius: 999px; display: flex; align-items: center; justify-content: center; padding: 0 3px;
}
.site-header--overlay .cart-link { color: var(--newsprint); }

.menu-toggle {
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; padding: 6px;
  color: var(--tinta);
}
.menu-toggle__bars { display: flex; flex-direction: column; gap: 4px; width: 20px; }
.menu-toggle__bars span { display: block; height: 2px; background: currentColor; transition: transform 0.2s ease, opacity 0.2s ease; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---- overlay header (flota sobre el hero de home) ---- */
.site-header--overlay {
  position: absolute; top: 0; left: 0; right: 0; background: transparent; border-bottom: none; color: var(--newsprint);
}
.site-header--overlay .logo,
.site-header--overlay .menu-toggle { color: var(--newsprint); }
.site-header--overlay .menu-toggle__bars span { background: var(--newsprint); }

/* ---- full-screen nav overlay ---- */
.menu-overlay {
  position: fixed; inset: 0; z-index: 60; background: var(--newsprint);
  display: flex; flex-direction: column;
  transform: translateY(-100%); transition: transform 0.32s ease;
}
.menu-overlay.is-open { transform: translateY(0); }
.menu-overlay__top { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px 12px 32px; border-bottom: 1px solid var(--line); }
.menu-overlay__close { display: flex; align-items: center; justify-content: center; background: none; border: none; font-size: 15px; cursor: pointer; color: var(--tinta); padding: 6px; }
.menu-overlay__list { list-style: none; margin: 0; padding: 48px 24px; display: flex; flex-direction: column; gap: 6px; overflow-y: auto; }
.menu-overlay__list a {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em;
  font-size: clamp(32px, 7vw, 56px); text-decoration: none; color: var(--tinta); line-height: 1.15;
  display: inline-block; transition: color 0.15s ease;
}
.menu-overlay__list a:hover, .menu-overlay__list a.is-active { color: var(--rojo); }
body.menu-open { overflow: hidden; }

.menu-overlay__social { display: flex; gap: 18px; padding: 4px 24px 32px; }
.menu-overlay__social a { color: var(--tinta); transition: color 0.15s ease; }
.menu-overlay__social a:hover { color: var(--rojo); }
.menu-overlay__social svg { width: 20px; height: 20px; display: block; }

/* ================= footer ================= */
.site-footer { border-top: 1px solid var(--line); margin-top: 120px; }
.site-footer__inner {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
  padding: 48px 0; font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--carbon);
}
.site-footer__links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.site-footer__links a { text-decoration: none; }
.site-footer__links a:hover { color: var(--rojo); }

.site-footer__legal { font-size: 10px; }
.site-footer__legal summary {
  cursor: pointer; text-transform: uppercase; letter-spacing: 0.14em; color: var(--carbon);
  list-style: none; opacity: 0.7;
}
.site-footer__legal summary::-webkit-details-marker { display: none; }
.site-footer__legal summary:hover { color: var(--rojo); opacity: 1; }
.site-footer__legal-links { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; padding-top: 10px; }
.site-footer__legal-links a { text-decoration: none; opacity: 0.7; }
.site-footer__legal-links a:hover { color: var(--rojo); opacity: 1; }

/* ================= hero (home) — cubre toda la pantalla ================= */
.hero-full { position: relative; }
.hero-photo {
  position: relative;
  height: 100dvh;
  min-height: 480px;
  background: var(--carbon) center/cover no-repeat;
  overflow: hidden;
}
.hero-photo__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 24px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
  background: linear-gradient(to top, rgba(23,19,16,0.6), transparent 60%);
  color: var(--newsprint);
}
.hero-photo__caption .display { font-size: clamp(28px, 6vw, 64px); line-height: 0.95; }
.hero-photo__caption .eyebrow { color: var(--newsprint); opacity: 0.85; }

.inset {
  padding: 96px 24px;
  display: flex; justify-content: center;
}
.inset__img {
  width: min(560px, 100%);
  aspect-ratio: 1 / 1;
  background: var(--carbon) center/cover no-repeat;
}
@media (max-width: 640px) { .inset { padding: 56px 20px; } }

.home-blurb {
  max-width: 46ch; margin: -48px auto 28px; padding: 0 24px; text-align: center;
  font-size: 13px; line-height: 1.6; color: var(--carbon);
}
@media (max-width: 640px) { .home-blurb { margin-top: -24px; margin-bottom: 24px; } }
.home-blurb__cta { text-align: center; margin: 0 0 40px; }
@media (max-width: 640px) { .home-blurb__cta { margin-bottom: 28px; } }

/* ================= home: flecha hacia YouTube ================= */
.scroll-hint {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: none; border: none; cursor: pointer; margin: 0 auto 64px; padding: 8px;
  color: var(--carbon); font-family: var(--font-brand); font-size: 10.5px;
  text-transform: uppercase; letter-spacing: 0.14em;
}
.scroll-hint:hover { color: var(--rojo); }
.scroll-hint__arrow { width: 18px; height: 18px; animation: scroll-hint-bounce 1.8s ease-in-out infinite; }
@keyframes scroll-hint-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(6px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .scroll-hint__arrow { animation: none; } }

/* ================= home: sección YouTube (con efecto imán al hacer scroll) ================= */
body:has(.youtube-section) { scroll-snap-type: y proximity; }
.youtube-section {
  min-height: 100dvh; display: flex; align-items: center; justify-content: center;
  background: var(--tinta); color: var(--newsprint); padding: 72px 0;
  scroll-snap-align: start; scroll-snap-stop: always;
}
.youtube-section__inner { display: flex; flex-direction: column; gap: 44px; align-items: center; text-align: center; }
.youtube-profile { display: flex; align-items: center; gap: 16px; text-decoration: none; color: inherit; }
.youtube-profile__icon {
  flex: none; width: 48px; height: 48px; border-radius: 8px; background: #ff0000;
  display: flex; align-items: center; justify-content: center;
}
.youtube-profile__icon svg { width: 24px; height: 24px; color: #fff; }
.youtube-profile__icon--photo { border-radius: 50%; background-color: var(--carbon); }
.youtube-profile__info { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.youtube-profile__info strong { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; letter-spacing: -0.01em; }
.youtube-profile__info span { font-size: 12px; opacity: 0.7; }
.youtube-profile:hover .youtube-profile__info span { opacity: 1; color: var(--rojo); }
.youtube-profile__stats { font-size: 11px; opacity: 0.6; letter-spacing: 0.02em; }

.youtube-videos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; width: 100%; max-width: 900px; padding: 0 24px; }
@media (max-width: 720px) { .youtube-videos { grid-template-columns: 1fr; max-width: 380px; } }
.youtube-videos__empty { font-size: 13px; opacity: 0.7; }

/* ================= invitación a marcas / stats privadas ================= */
.stat-row { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; }
.stat-row div { text-align: center; }
.stat-row strong { display: block; font-family: var(--font-display); font-size: 26px; }
.stat-row span { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.75; }
.youtube-video { display: block; text-decoration: none; color: inherit; }
.youtube-video__thumb {
  aspect-ratio: 16 / 9; background: #000 center/cover no-repeat;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.youtube-video__play { width: 40px; height: 40px; color: rgba(255,255,255,0.92); filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)); }
.youtube-video__title { display: block; margin-top: 10px; font-size: 12px; line-height: 1.4; text-align: left; }

/* ================= page header (minimal) ================= */
.page-header { padding: 40px 0 8px; }
.eyebrow { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--vino); font-weight: 700; }
.page-header h1 { font-size: clamp(28px, 5vw, 44px); margin: 10px 0 0; line-height: 0.98; }
.lede { max-width: 52ch; margin: 14px 0 0; color: var(--carbon); font-size: 14.5px; line-height: 1.6; }

.btn-row { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; }
.btn {
  display: inline-block; font-family: var(--font-brand); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em; padding: 12px 20px;
  text-decoration: none; border: 1px solid var(--tinta); cursor: pointer; background: none; color: var(--tinta);
}
.btn--primary { background: var(--tinta); color: var(--newsprint); border-color: var(--tinta); }
.btn--primary:hover { background: var(--rojo); border-color: var(--rojo); }

/* ================= photo grid (galería / asimétrico) ================= */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  padding: 8px 0 96px;
}
.photo-grid__cell { grid-column: span 3; display: flex; flex-direction: column; }
.photo-grid__cell--big { grid-column: span 4; }
.photo-grid__cell--small { grid-column: span 2; }
.photo-grid__item {
  aspect-ratio: 4 / 5;
  background: var(--carbon) center/cover no-repeat;
  overflow: hidden;
}
.photo-grid__cell--big .photo-grid__item { aspect-ratio: 5 / 4; }
.photo-grid__cell--small .photo-grid__item { aspect-ratio: 3 / 4; }
.photo-grid__caption {
  margin-top: 10px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--carbon);
}
.photo-grid__caption strong { display: block; font-family: var(--font-display); font-weight: 900; font-size: 14px; color: var(--tinta); letter-spacing: -0.01em; margin-top: 2px; }
@media (max-width: 720px) {
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid__cell, .photo-grid__cell--big, .photo-grid__cell--small { grid-column: span 1; }
  .photo-grid__cell--big .photo-grid__item, .photo-grid__cell--small .photo-grid__item { aspect-ratio: 4 / 5; }
}

/* ================= category tiles (tienda) ================= */
.category-list { display: flex; flex-direction: column; padding: 8px 0 96px; }
.category-tile {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 28px 0; border-top: 1px solid var(--line); text-decoration: none; color: var(--tinta);
}
.category-list .category-tile:last-child { border-bottom: 1px solid var(--line); }
.category-tile__img { width: 96px; height: 120px; flex-shrink: 0; background: var(--carbon) center/cover no-repeat; }
.category-tile__name { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em; font-size: clamp(22px, 4vw, 34px); flex: 1; }
.category-tile__arrow { font-size: 20px; color: var(--carbon); flex-shrink: 0; transition: transform 0.15s ease, color 0.15s ease; }
.category-tile:hover .category-tile__name { color: var(--rojo); }
.category-tile:hover .category-tile__arrow { transform: translateX(4px); color: var(--rojo); }

/* ================= shop grid (categoría / recursos) ================= */
.shop-section { padding-top: 56px; }
.shop-section:first-of-type { padding-top: 8px; }
.shop-section-title { font-size: clamp(20px, 3.4vw, 28px); margin: 0 0 4px; }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px 28px; padding: 20px 0 40px; }
@media (max-width: 900px) { .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 2px 20px; } }
@media (max-width: 560px) { .shop-grid { grid-template-columns: 1fr; } }

.shop-item { display: flex; flex-direction: column; text-decoration: none; color: var(--tinta); }
.shop-item__img { aspect-ratio: 4 / 5; background: var(--carbon) center/cover no-repeat; }
.shop-item__meta { padding-top: 12px; display: flex; flex-direction: column; gap: 3px; }
.shop-item__name { font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; }
.shop-item__sub { font-size: 11px; color: var(--carbon); }
.shop-item__price { font-size: 12.5px; margin-top: 2px; }
.shop-item__pay {
  margin-top: 8px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700;
  text-decoration: none; border-bottom: 1px solid currentColor; align-self: flex-start; cursor: pointer;
  background: none; border-top: none; border-left: none; border-right: none; padding: 0 0 1px; color: var(--rojo);
}
.shop-item__pay--manual { color: var(--vino); }

/* ================= ficha de producto (estilo Zara: imagen a pantalla completa) ================= */
.product-hero { position: relative; height: 100dvh; min-height: 520px; background: var(--carbon) center/cover no-repeat; }
.product-hero__back {
  position: absolute; top: 20px; left: 20px; z-index: 5;
  display: flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  background: var(--newsprint); text-decoration: none; color: var(--tinta); font-size: 16px;
}
.product-hero__bar {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 24px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  background: linear-gradient(to top, rgba(23,19,16,0.65), transparent 75%);
  color: var(--newsprint);
}
.product-hero__name { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em; font-size: clamp(20px, 4vw, 30px); }
.product-hero__sub { font-size: 12px; opacity: 0.85; margin-top: 4px; }
.product-hero__price { font-size: 14px; margin-top: 6px; }

.product-info { padding: 32px 0 0; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.product-info .btn { padding: 14px 26px; }

.product-scale-preview { margin: 40px 0; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.product-scale-preview__mat {
  background: var(--newsprint); border: 1px solid var(--line); box-shadow: 0 1px 3px rgba(23,19,16,0.08);
  padding: 28px; width: 100%; box-sizing: border-box; display: flex; align-items: center; justify-content: center;
}
.product-scale-preview__mat img { display: block; max-width: 100%; max-height: 60vh; width: auto; height: auto; }
.product-scale-preview__caption { font-family: var(--font-brand); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--carbon); }
@media (max-width: 560px) { .product-scale-preview__mat { padding: 16px; } }

.product-room-mockup { margin: 8px 0 40px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.product-room-mockup__scene { position: relative; width: 100%; }
.product-room-mockup__bg { display: block; width: 100%; height: auto; }
.product-room-mockup__art {
  position: absolute; left: 32.73%; top: 21.55%; width: 37.57%; height: 31.22%;
  background-size: cover; background-position: center;
}
.product-room-mockup__art--vertical { left: 39.23%; top: 18.78%; width: 23.83%; height: 38.03%; }
.product-room-mockup__caption { font-family: var(--font-brand); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--carbon); }

.product-details { max-width: 640px; padding-bottom: 96px; }
.product-details p { margin: 0 0 1.2em; line-height: 1.75; font-size: 14.5px; color: var(--carbon); }
.product-meta { display: flex; flex-direction: column; gap: 14px; margin: 20px 0 28px; }
.product-meta__row { font-size: 14px; padding-top: 12px; border-top: 1px solid var(--line); }
.product-meta__row .label { display: block; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; color: var(--vino); font-weight: 700; }

/* ================= editorial feed (blog — estilo Zara "Editoriales") ================= */
.editorial-list { display: flex; flex-direction: column; }
.editorial-item { display: block; text-decoration: none; color: var(--tinta); border-top: 1px solid var(--line); }
.editorial-item:last-child { border-bottom: 1px solid var(--line); }
.editorial-item__img { width: 100%; aspect-ratio: 16 / 10; background: var(--carbon) center/cover no-repeat; }
.editorial-item__title {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em;
  font-size: clamp(24px, 4.5vw, 40px); padding: 20px 24px 24px; max-width: 1180px; margin: 0 auto;
}
.editorial-item:hover .editorial-item__title { color: var(--rojo); }
.editorial-item__date { display: block; font-size: 11px; letter-spacing: 0.1em; color: var(--carbon); padding: 24px 24px 0; max-width: 1180px; margin: 0 auto; text-transform: uppercase; }

/* ================= single post ================= */
.single-post { padding: 8px 0 96px; max-width: 68ch; }
.single-post .entry-content { margin-top: 20px; line-height: 1.75; font-size: 14.5px; }
.single-post .entry-content p { margin: 0 0 1.2em; }

/* ================= immersive detail (colección) ================= */
.detail-photo {
  aspect-ratio: 4 / 3;
  background: var(--carbon) center/cover no-repeat;
  margin: 8px 0 20px;
}
@media (max-width: 640px) { .detail-photo { aspect-ratio: 4 / 5; } }

/* ================= forms ================= */
.form { display: flex; flex-direction: column; gap: 10px; max-width: 420px; padding: 8px 0 96px; }
.field {
  border: 1px solid var(--tinta); background: var(--newsprint); padding: 12px 14px;
  font-family: var(--font-brand); font-size: 13.5px; color: var(--tinta);
}
textarea.field { resize: vertical; }
.field::placeholder { color: color-mix(in srgb, var(--carbon) 60%, transparent); }
.form-msg { font-size: 12.5px; padding: 9px 12px; display: none; }
.form-msg.ok { display: block; background: var(--vino); color: var(--newsprint); }
.form-msg.error { display: block; background: var(--rojo); color: var(--newsprint); }

/* ================= pago manual modal (Ruta B) ================= */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(23,19,16,0.75); display: none;
  align-items: center; justify-content: center; padding: 24px; z-index: 70; overflow-y: auto;
}
.modal-backdrop.is-open { display: flex; }
.modal {
  background: var(--newsprint); max-width: 440px; width: 100%; padding: 30px 32px; position: relative;
  border: 1px solid var(--line); margin: auto;
}
.modal__close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-family: var(--font-brand); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer; color: var(--tinta); }
.modal h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 18px; margin: 8px 0 4px; letter-spacing: -0.01em; }
.modal p { font-size: 13.5px; line-height: 1.6; color: var(--carbon); white-space: pre-line; }
.modal .modal-sub { font-size: 12.5px; color: var(--carbon); margin: 0 0 18px; }
.modal .form { padding: 0; max-width: none; gap: 8px; }
.modal .field { font-size: 13px; padding: 10px 12px; }

/* ================= legal / libro de reclamaciones ================= */
.legal-content { padding: 8px 0 96px; line-height: 1.7; font-size: 14.5px; }
.legal-content h2 { font-family: var(--font-brand); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-size: 15px; margin: 36px 0 10px; }
.legal-content h2:first-of-type { margin-top: 4px; }
.legal-content p { margin: 0 0 1.1em; max-width: 68ch; }
.legal-content ul { margin: 0 0 1.1em; padding-left: 20px; max-width: 68ch; }
.legal-content li { margin: 0 0 0.5em; }
.legal-box {
  border: 1px solid var(--line); padding: 18px 20px; font-size: 13px; margin: 20px 0 8px;
  background: color-mix(in srgb, var(--line) 40%, transparent); line-height: 1.6;
}
.legal-box strong { display: block; font-family: var(--font-brand); text-transform: uppercase; font-size: 11px; letter-spacing: 0.1em; color: var(--vino); margin-bottom: 6px; }

.form-radios { display: flex; gap: 18px; font-size: 13.5px; padding: 4px 0; }
.form-radios label { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.form-check { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; line-height: 1.5; padding: 4px 0; cursor: pointer; }
.form-check input { margin-top: 3px; }
.form-legend { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--carbon); margin: 10px 0 -2px; }

.constancia { border: 1px solid var(--tinta); padding: 24px 26px; margin-top: 24px; font-size: 13px; max-width: 520px; }
.constancia h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 18px; margin: 0 0 4px; }
.constancia dl { margin: 16px 0 0; }
.constancia dt { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--vino); margin-top: 10px; }
.constancia dd { margin: 2px 0 0; }
@media print {
  .site-header, .menu-overlay, .site-footer { display: none !important; }
}

/* ================= carrito ================= */
.qty-stepper { display: flex; align-items: center; border: 1px solid var(--tinta); width: fit-content; }
.qty-stepper button { background: none; border: none; width: 34px; height: 34px; cursor: pointer; font-size: 15px; color: var(--tinta); font-family: var(--font-brand); }
.qty-stepper input { border: none; width: 40px; text-align: center; font-family: var(--font-brand); font-size: 13.5px; -moz-appearance: textfield; }
.qty-stepper input::-webkit-outer-spin-button, .qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-stepper--sm button { width: 26px; height: 26px; font-size: 13px; }
.qty-stepper--sm span { width: 28px; text-align: center; font-size: 12.5px; }

.product-buy { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 24px 0 8px; }
.add-cart-msg { font-size: 12.5px; color: var(--vino); padding: 0 0 8px; }
.add-cart-msg a { color: inherit; }

.cart-empty { padding: 24px 0 96px; font-size: 14px; }
.cart-items { display: flex; flex-direction: column; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item { display: flex; align-items: center; gap: 14px; }
.cart-item__img { width: 68px; height: 68px; flex: none; background: var(--carbon) center/cover no-repeat; }
.cart-item__meta { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.cart-item__name { font-size: 13.5px; }
.cart-item__price { font-size: 12px; color: var(--carbon); }
.cart-item__remove { background: none; border: none; cursor: pointer; color: var(--carbon); font-size: 13px; padding: 6px; }
.cart-item__remove:hover { color: var(--rojo); }

.cart-summary { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 0; font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; }
.cart-summary strong { font-family: var(--font-display); font-size: 22px; letter-spacing: -0.01em; }

.cart-checkout { padding-top: 8px; max-width: none !important; }
.cart-pago-hint { font-size: 12.5px; color: var(--vino); margin: 0 0 16px; }
.cart-pago-alt { font-size: 12px; color: var(--carbon); margin-top: 14px; }
.cart-pago-alt a { color: var(--vino); }

.product-buy--bottom { padding: 32px 0 8px; border-top: 1px solid var(--line); margin-top: 8px; }

/* ================= métodos de pago ================= */
.pago-metodos { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 8px; }
.pago-metodo-card {
  display: flex; align-items: center; gap: 14px; text-align: left; width: 100%;
  border: 1px solid var(--tinta); background: var(--newsprint); padding: 16px 18px; cursor: pointer;
  font-family: var(--font-brand); transition: background 0.15s ease;
}
.pago-metodo-card:hover { background: var(--line); }
.pago-metodo-card:disabled { opacity: 0.5; cursor: default; }
.pago-metodo-icon { flex: none; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; color: var(--tinta); }
.pago-metodo-icon svg { width: 24px; height: 24px; }
.pago-metodo-info { display: flex; flex-direction: column; gap: 4px; }
.pago-metodo-info strong { font-size: 14px; }
.pago-metodo-badge { display: inline-block; width: fit-content; background: var(--rojo); color: var(--newsprint); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em; padding: 2px 8px; }
.pago-metodo-brand { font-size: 11px; text-transform: lowercase; letter-spacing: 0.02em; font-weight: 700; color: #5a3e9b; }

.bank-account { border: 1px solid var(--line); padding: 14px 18px; margin-top: 14px; font-size: 13px; line-height: 1.7; }
.bank-account strong { display: block; font-family: var(--font-brand); text-transform: uppercase; font-size: 11px; letter-spacing: 0.08em; color: var(--vino); margin-bottom: 4px; }

/* ================= club ================= */
.club-pricing { max-width: 480px; margin: 24px 0; }
.club-price { font-family: var(--font-display); font-size: 44px; margin: 6px 0; }
.club-price sup { font-size: 16px; }
.club-price sub { font-family: var(--font-brand); font-size: 12px; color: var(--carbon); font-weight: 400; }
.club-benefits { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); margin: 20px 0; }
.club-benefits__group { background: var(--line); padding: 10px 16px; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--vino); font-weight: 700; }
.club-benefits__item { background: var(--newsprint); padding: 12px 16px; font-size: 13px; display: flex; gap: 10px; align-items: baseline; }
.club-benefits__item::before { content: "→"; color: var(--rojo); font-weight: 700; flex: none; }
.club-member-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.club-member-row:last-child { border-bottom: none; }
.club-member-row span:first-child { color: var(--carbon); }
.club-member-row span:last-child { font-weight: 700; }
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 480px) { .field-pair { grid-template-columns: 1fr; } }
