/*/* Clictogo — design tokens + UI patterns (UIUX-PATTERNS.md) */

:root {
  /* Clictogo §B9 — fuente única de hex */
  --color-primary-dark: #001b6b;
  --color-primary-blue: #0068f5;
  --color-accent-mid: #0055c8;
  --color-tint-light: #b2c8e8;
  --color-tint-pale: #e4eaf7;
  --color-gray-text: #5b6470;
  --color-white: #ffffff;
  --color-black: #0a0a0a;

  /* Nombres legacy (Tailwind gold/cream/ebony) → Clictogo */
  --color-gold: var(--color-primary-blue);
  --color-gold-light: var(--color-accent-mid);
  --color-gold-dark: var(--color-primary-dark);
  --color-ebony: var(--color-primary-dark);
  --color-ebony-700: #002a8a;
  --color-ebony-600: var(--color-gray-text);
  --color-cream: #f7f7f8;
  --color-cream-dark: var(--color-tint-pale);
  --color-accent-green: #00c853;
  --color-accent-alt: #ff3b30;

  --font-brand: "Poppins", sans-serif;
  --font-weight-brand: 800;
  --radius-base: 12px;
  --radius-card: var(--radius-base);
  --radius-btn: var(--radius-base);
  --shadow-soft: 0 4px 12px rgba(0, 27, 107, 0.08);
  --shadow-card: var(--shadow-soft);
  --shadow-card-hover: 0 10px 25px rgba(0, 27, 107, 0.12);
}

/* Reset — flush to viewport top (no gap above announcement) */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden; /* prevent horizontal scroll from full-bleed hero */
}

html {
  /* Evita franja por altura 100% + margen colapsado en algunos navegadores */
  height: 100%;
}

body {
  font-family: var(--font-brand), -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--site-header-height, 0px) !important;
}

/* Primer bloque de la página pegado al borde superior del viewport */
body > header.site-header {
  margin: 0 !important;
  padding: 0 !important;
}

/* Eyebrow / announcement bar — §B9 Level 1 (dark trust strip) */
.announcement-bar {
  display: flex;
  gap: 1.25rem;
  width: 100%;
  margin: 0;
  padding: 0.4rem 0.875rem;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: left;
  white-space: nowrap;
  overflow-x: auto;
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.announcement-bar__item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex: none;
}

.announcement-bar__icon {
  flex: none;
  color: #fff;
}

.announcement-bar__icon--green {
  color: #00C853;
}

.vt-noscroll {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.vt-noscroll::-webkit-scrollbar {
  display: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border: 0;
  background: transparent;
  isolation: isolate;
}

/* §B9 Level 2 — white brand bar */
.site-nav {
  position: relative;
  z-index: 2;
  background: #fff;
  border-bottom: 1px solid #ECECEE;
}

/* Una fila en desktop: logo | buscador | acciones. Evita flex-wrap que bajaba Entrar/carrito. */
.site-nav__row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.625rem 0.875rem;
}
.site-nav__search {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 42rem;
  margin: 0 0.25rem;
}
.site-nav__actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem 0.85rem;
  margin-left: auto;
  flex-shrink: 0;
}

/* Menú Categorías — botón junto al logo (visible siempre) + mega panel */
.nav-cats {
  position: relative;
  flex-shrink: 0;
}

.nav-cats__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.75rem;
  padding: 0.4rem 0.85rem;
  border: none;
  border-radius: 10px;
  background: var(--color-primary-dark);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.12s ease;
}

.nav-cats__btn:hover,
.nav-cats__btn.is-open {
  background: var(--color-primary-blue);
}

.nav-cats__btn-icon,
.nav-cats__chevron {
  flex-shrink: 0;
}

.nav-cats__chevron {
  transition: transform 0.18s ease;
}

.nav-cats__btn.is-open .nav-cats__chevron {
  transform: rotate(180deg);
}

@media (max-width: 639px) {
  .nav-cats__btn-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .nav-cats__btn {
    min-width: 2.75rem;
    justify-content: center;
    padding: 0.4rem;
  }
  .nav-cats__chevron {
    display: none;
  }
}

.nav-cats__mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid #ECECEE;
  box-shadow: 0 18px 40px rgba(0, 27, 107, 0.12);
  max-height: min(70vh, 480px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-cats__mega-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 0.875rem 1.25rem;
}

.nav-cats__mega-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.nav-cats__mega-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.nav-cats__mega-all {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary-blue);
  text-decoration: none;
}

.nav-cats__mega-all:hover {
  text-decoration: underline;
}

.nav-cats__mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

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

@media (min-width: 1024px) {
  .nav-cats__mega-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.nav-cats__mega-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  border: 1px solid #ECECEE;
  background: #fff;
  text-decoration: none;
  color: var(--color-ebony);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.12s ease;
}

.nav-cats__mega-item:hover {
  border-color: var(--color-primary-blue);
  background: var(--color-tint-pale);
  transform: translateY(-1px);
}

.nav-cats__mega-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--color-tint-pale);
  color: var(--color-primary-dark);
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.nav-cats__mega-name {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.25;
}

.mobile-menu__section {
  margin: 0.75rem 0 0.25rem;
  padding: 0.35rem 0.25rem 0;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gray-text);
  border-top: 1px solid #ECECEE;
}
@media (max-width: 767px) {
  .site-nav__row {
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }
  .site-nav__search {
    order: 3;
    flex: 1 1 100%;
    max-width: none;
    margin: 0;
  }
  .site-nav__actions {
    margin-left: auto;
  }
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.site-brand__logo {
  height: 40px;
  width: auto;
  display: block;
}

.site-brand__name {
  font-family: var(--font-brand);
  font-size: 1.375rem;
  font-weight: var(--font-weight-brand);
  letter-spacing: -0.03em;
  line-height: 1;
}

.site-brand__name-clic {
  color: var(--color-primary-dark);
}

.site-brand__name-togo {
  color: var(--color-primary-blue);
}

.mobile-menu__link {
  display: block;
  padding: 0.65rem 0.25rem;
  color: #2D2D2D;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.mobile-menu__link:hover {
  color: var(--color-gold);
}

.city-modal {
  background: rgb(0 0 0 / 68%);
  backdrop-filter: blur(8px);
}

.city-modal__panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: 90vh;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgb(201 168 76 / 18%);
  border-radius: 1.5rem 1.5rem 0 0;
  box-shadow: 0 24px 70px rgb(0 0 0 / 35%);
}

@media (min-width: 640px) {
  .city-modal__panel {
    max-width: 30rem;
    margin: 0 1rem;
    border-radius: 1.5rem;
  }
}

.city-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem 1.1rem;
  background: linear-gradient(135deg, var(--color-ebony) 0%, var(--color-ebony-700) 100%);
  color: #fff;
}

.city-modal__eyebrow {
  display: inline-flex;
  margin-bottom: 0.35rem;
  color: var(--color-gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.city-modal__title {
  margin: 0;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.15;
}

.city-modal__subtitle {
  margin: 0.35rem 0 0;
  color: rgb(255 255 255 / 72%);
  font-size: 0.8rem;
  line-height: 1.35;
}

.city-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  min-height: 2.25rem;
  color: var(--color-gold-light);
  border: 1px solid rgb(201 168 76 / 28%);
  border-radius: 9999px;
  background: rgb(255 255 255 / 8%);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.city-modal__close:hover {
  color: #fff;
  background: rgb(201 168 76 / 18%);
  transform: translateY(-1px);
}

.city-modal__search-wrap {
  padding: 1rem 1.25rem 0.75rem;
  background: linear-gradient(180deg, #fff 0%, var(--color-cream) 100%);
  border-bottom: 1px solid var(--color-cream-dark);
}

.city-modal__search {
  position: relative;
  display: block;
}

.city-modal__search-icon {
  position: absolute;
  top: 50%;
  left: 0.95rem;
  width: 1rem;
  height: 1rem;
  color: var(--color-gold-dark);
  transform: translateY(-50%);
}

.city-modal__search-input {
  width: 100%;
  min-height: 3rem;
  padding: 0.8rem 1rem 0.8rem 2.65rem;
  color: #111827;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgb(201 168 76 / 34%);
  border-radius: 1rem;
  outline: 0;
  background: #fff;
  box-shadow: 0 8px 22px rgb(28 28 28 / 6%);
}

.city-modal__search-input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgb(201 168 76 / 18%), 0 8px 22px rgb(28 28 28 / 8%);
}

.city-modal__list {
  flex: 1;
  min-height: 13rem;
  padding: 0.75rem;
  margin: 0;
  overflow-y: auto;
  background: #fff;
  list-style: none;
}

.city-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.9rem;
  color: #111827;
  border: 1px solid transparent;
  border-radius: 1rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.city-option + .city-option {
  margin-top: 0.25rem;
}

.city-option:hover,
.city-option--active {
  border-color: rgb(201 168 76 / 34%);
  background: var(--color-gold-50, #fdf8ee);
  transform: translateY(-1px);
}

.city-option--empty {
  justify-content: center;
  min-height: 5rem;
  color: #6b7280;
  text-align: center;
  cursor: default;
}

.city-option--empty:hover {
  transform: none;
}

.city-option__main {
  display: grid;
  min-width: 0;
  gap: 0.15rem;
}

.city-option__name {
  overflow: hidden;
  color: #111827;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.city-combobox {
  position: relative;
}

.city-combobox__control {
  position: relative;
}

.city-combobox__control .form-input {
  width: 100%;
  padding-right: 2.75rem;
}

.city-combobox__control .form-input:disabled {
  background: var(--color-cream, #f3f4f6);
  color: var(--color-text-tertiary, #9ca3af);
  cursor: not-allowed;
}

.city-combobox__toggle {
  position: absolute;
  top: 50%;
  right: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  color: #6b7280;
  background: transparent;
  border: 0;
  border-radius: 0.5rem;
  transform: translateY(-50%);
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.city-combobox__toggle:hover {
  color: var(--color-gold);
  background: rgb(201 168 76 / 10%);
}

.city-combobox__hint {
  margin: 0.35rem 0 0;
  color: #9ca3af;
  font-size: 0.72rem;
  font-weight: 600;
}

.city-combobox__list {
  position: absolute;
  z-index: 50;
  top: calc(100% + 0.25rem);
  right: 0;
  left: 0;
  max-height: 16rem;
  margin: 0;
  padding: 0.5rem;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--color-cream-dark);
  border-radius: 0.85rem;
  box-shadow: 0 10px 28px rgb(28 28 28 / 14%);
  list-style: none;
}

.city-combobox__list.hidden {
  display: none;
}

.city-modal__footer {
  padding: 0.95rem 1.25rem 1.15rem;
  background: var(--color-cream);
  border-top: 1px solid var(--color-cream-dark);
}

.city-modal__notice {
  margin: 0 0 0.65rem;
  color: #6b7280;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.city-modal__skip {
  display: block;
  width: 100%;
  min-height: 2.75rem;
  color: var(--color-ebony);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  border: 1px solid rgb(28 28 28 / 10%);
  border-radius: 0.9rem;
  background: #fff;
  transition: border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.city-modal__skip:hover {
  color: var(--color-gold-dark);
  border-color: rgb(201 168 76 / 46%);
  box-shadow: 0 8px 20px rgb(28 28 28 / 7%);
}

.site-cart-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(201 168 76 / 45%);
  background: rgb(201 168 76 / 10%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 8%);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

a:hover .site-cart-icon {
  transform: translateY(-1px);
  background: rgb(201 168 76 / 22%);
  border-color: rgb(201 168 76 / 75%);
}

/* Section header — visual hierarchy (Clictogo §B9) */
.page-header {
  margin-bottom: 1.25rem;
}

.page-header__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-brand), sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-primary-dark);
}

.page-header__subtitle {
  margin: 0.5rem 0 0;
  font-family: var(--font-brand), sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--color-gray-text);
}

.gold-bar {
  width: 2.5rem;
  height: 3px;
  margin-bottom: 0.65rem;
  background: var(--color-primary-blue);
  border-radius: 2px;
}

/* Centro de ayuda — FAQ Clictogo (sin cards genéricas) */
.help-page__intro {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--color-tint-pale), #fff);
  border: 1px solid var(--color-cream-dark);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-gray-text);
}

.help-faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.help-faq__item {
  margin: 0;
  border: 1px solid #ECECEE;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.help-faq__item[open] {
  border-color: var(--color-tint-light);
  box-shadow: 0 4px 14px rgba(0, 27, 107, 0.06);
}

.help-faq__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  cursor: pointer;
  list-style: none;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-primary-dark);
}

.help-faq__summary::-webkit-details-marker {
  display: none;
}

.help-faq__chevron {
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--color-primary-blue);
  border-bottom: 2px solid var(--color-primary-blue);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.help-faq__item[open] .help-faq__chevron {
  transform: rotate(225deg);
}

.help-faq__body {
  padding: 0 1rem 1rem;
}

.help-faq__body p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--color-gray-text);
}

.help-faq__body a {
  color: var(--color-primary-blue);
  font-weight: 700;
  text-decoration: none;
}

.help-faq__body a:hover {
  text-decoration: underline;
}

.help-page__cta {
  margin-top: 1.75rem;
  padding: 1.25rem 1.15rem;
  text-align: center;
  border-radius: 16px;
  border: 1px solid var(--color-cream-dark);
  background:
    linear-gradient(145deg, rgba(0, 104, 245, 0.08), transparent 55%),
    #fff;
}

.help-page__cta-title {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.help-page__cta-sub {
  margin: 0 0 0.9rem;
  font-size: 0.8125rem;
  color: var(--color-gray-text);
}

.help-page__cta-fallback {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--color-gray-text);
}

.help-page__cta-fallback a {
  color: var(--color-primary-blue);
  font-weight: 700;
}

/* Footer trust strip + site footer (§B9 Clictogo) */
.footer-trust {
  margin-top: 4rem;
  background: var(--color-tint-pale);
  border-top: 1px solid var(--color-tint-light);
  border-bottom: 1px solid var(--color-tint-light);
}

.footer-trust__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.25rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.footer-trust__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 10rem;
}

.footer-trust__icon {
  flex-shrink: 0;
  color: var(--color-gold);
}

.footer-trust__icon--green {
  color: var(--color-accent-green);
}

.footer-trust__title {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1.2;
}

.footer-trust__sub {
  margin: 0.1rem 0 0;
  font-size: 0.6875rem;
  color: var(--color-gray-text);
  line-height: 1.2;
}

.site-footer {
  background: var(--color-primary-dark);
  color: var(--color-tint-light);
}

.site-footer__grid {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.75rem 1rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 2.5rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.site-footer__heading {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__list a {
  color: var(--color-tint-light);
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer__list a:hover {
  color: var(--color-white);
}

.site-footer__bottom {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-tint-light);
}

/* Gallery main image — fade transition on swap */
#main-img {
  transition: opacity 0.15s ease, transform 0.5s ease;
}

#main-img.opacity-0 {
  opacity: 0;
}

/* Product description — constrains and styles raw HTML from external source */
.product-description {
  color: #374151;
  font-size: 0.9375rem;
  line-height: 1.75;
}

.product-description img {
  max-width: 100%;
  max-height: 320px;
  height: auto;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  margin: 1rem auto;
  display: block;
  border: 1px solid var(--color-cream-dark);
}

.product-description h1,
.product-description h2,
.product-description h3,
.product-description h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
  margin: 1.25rem 0 0.4rem;
  letter-spacing: 0.01em;
}

.product-description p {
  margin-bottom: 0.875rem;
}

.product-description ul,
.product-description ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.product-description li {
  margin-bottom: 0.375rem;
}

.product-description a {
  color: var(--color-gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Collapsible description */
.description-collapse {
  max-height: 300px;
  overflow: hidden;
  position: relative;
}

.description-collapse::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
}

.description-collapse.is-open {
  max-height: none;
}

.description-collapse.is-open::after {
  display: none;
}

/* Variant modal — pop-in animation */
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(12px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.animate-modal {
  animation: modalIn 0.22s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}

/* Card — content container pattern */
.card {
  background: #fff;
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.card--padded {
  padding: 1.5rem;
}

.card--sticky {
  position: sticky;
  top: 5.5rem;
}

/* Product card — hover affordance */
.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.product-card:hover {
  border-color: #ECECEE;
  box-shadow: 0 4px 14px rgb(26 26 26 / 8%);
}

.product-card__price {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-gold);
  letter-spacing: -0.02em;
}

.product-card__cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.product-tag--shipping {
  background: transparent;
  color: #00C853;
  font-weight: 700;
  padding: 0;
}

.product-tag--cod {
  background: #eff6ff;
  color: #1d4ed8;
}

.product-card__quick-add {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  border: none;
  border-radius: 9999px;
  background: var(--color-gold);
  color: #fff;
  box-shadow: none;
  transition: transform 0.15s, background 0.15s;
}

.product-card__quick-add:hover {
  background: var(--color-gold-dark);
  transform: scale(1.05);
  color: #fff;
}

.product-card:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.product-card__carousel {
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: pan-y;
}

.product-card__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.25s ease;
}

.product-card__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__slide--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
}

.product-card__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 9999px;
  background: rgb(28 28 28 / 62%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
}

.product-card__nav--prev {
  left: 0.5rem;
}

.product-card__nav--next {
  right: 0.5rem;
}

.product-card__dots {
  position: absolute;
  left: 50%;
  bottom: 0.45rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
  z-index: 5;
}

.product-card__dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 9999px;
  border: 0;
  background: rgb(255 255 255 / 55%);
  padding: 0;
}

.product-card__dot.is-active {
  background: #fff;
}

@media (min-width: 1024px) {
  .product-card__media-wrap:hover .product-card__nav {
    display: inline-flex;
  }
}

/* Empty state pattern */
.empty-state {
  padding: 4rem 1.5rem;
  text-align: center;
  background: #fff;
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius-card);
}

.empty-state__icon {
  margin-bottom: 1rem;
  font-size: 3rem;
  line-height: 1;
}

.empty-state__title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #374151;
}

.empty-state__text {
  margin: 0 0 1.5rem;
  color: #6b7280;
}

/* Breadcrumb navigation */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}

.breadcrumb a:hover {
  color: var(--color-gold);
}

.breadcrumb__sep {
  color: var(--color-gold);
}

/* Forms */
.form-input {
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  background: #fff;
  border: 1px solid #d8d0c4;
  border-radius: 0.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgb(201 168 76 / 15%);
}

.form-input-wrap {
  position: relative;
}

.form-input-wrap .form-input {
  padding-right: 2.75rem;
}

.form-input-wrap__toggle {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  color: #6b7280;
  background: transparent;
  border: none;
  border-radius: 0.25rem;
  transform: translateY(-50%);
  cursor: pointer;
  transition: color 0.15s;
}

.form-input-wrap__toggle:hover {
  color: var(--color-gold-dark);
}

.form-input-wrap__toggle:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.form-input-wrap__toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* CTA buttons — call to action pattern */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-brand);
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-gold);
  border: none;
  border-radius: var(--radius-btn);
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
  text-decoration: none;
}

.btn-gold:hover {
  background: var(--color-gold-light);
}

.btn-gold:active {
  transform: scale(0.97);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: var(--color-ebony);
  border: none;
  border-radius: var(--radius-btn);
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
  text-decoration: none;
}

.btn-dark:hover {
  background: var(--color-ebony-700);
}

.btn-dark:active {
  transform: scale(0.97);
}

/* Hero strip — focal point on catalog */
.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding: 2rem 2rem;
  background: linear-gradient(to right, var(--color-ebony), var(--color-ebony-700));
  border-radius: var(--radius-card);
}

/* Trust badges in hero / footer */
.trust-pill {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  background: rgb(201 168 76 / 12%);
  border: 1px solid rgb(201 168 76 / 25%);
  border-radius: 9999px;
}

/* Flash messages — feedback pattern */
.flash-messages {
  max-width: 80rem;
  margin: 1rem auto 0;
  padding: 0 1rem;
}

.flash-message {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.75rem;
}

.flash-message--error {
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.flash-message--warning {
  color: #b45309;
  background: #fffbeb;
  border: 1px solid #fde68a;
}

.flash-message--success {
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

/* Pagination */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}

.pagination__link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  transition: border-color 0.15s, color 0.15s;
}

.pagination__link:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.pagination__current {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-ebony);
  background: var(--color-gold);
  border-radius: 0.75rem;
}

/* Category navigation — catalog home */
.category-chip {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4b5563;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.category-chip:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.category-chip--active {
  color: var(--color-ebony);
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.category-link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  border-radius: 0.75rem;
  transition: background 0.15s, color 0.15s;
}

.category-link:hover {
  color: var(--color-gold);
  background: var(--color-gold-50, #fdf8ee);
}

.category-link--active {
  font-weight: 700;
  color: var(--color-ebony);
  background: rgb(201 168 76 / 15%);
}

/* Accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--color-gold);
  color: var(--color-ebony);
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 0.5rem 0;
}

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

/* Mobile menu */
.mobile-menu {
  background: linear-gradient(180deg, #1b1b1b 0%, #171717 100%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 3%);
}

.mobile-menu__link {
  display: block;
  padding: 0.9rem 0.1rem;
  color: #f3f4f6;
  font-weight: 700;
  font-size: 1.06rem;
  line-height: 1.2;
  text-decoration: none;
  border-bottom: 1px solid var(--color-ebony-600);
  letter-spacing: 0.01em;
  transition: color 0.15s, padding-left 0.15s, background 0.15s;
}

.mobile-menu__link:hover {
  color: var(--color-gold);
  background: rgb(255 255 255 / 2%);
  padding-left: 0.45rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.25rem;
  background: #fff;
  border-top: 1px solid var(--color-cream-dark);
  box-shadow: 0 -4px 20px rgb(0 0 0 / 8%);
}

.cookie-banner.hidden {
  display: none;
}

/* Floating WhatsApp button — above product card feet, below cookie */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1rem;
  z-index: 40;
  transition: bottom 0.25s ease;
}

/* Mobile: hide label text, keep icon only as pill */
@media (max-width: 767px) {
  .whatsapp-float .whatsapp-label {
    display: none;
  }
  .whatsapp-float a {
    padding: 0.75rem;
    border-radius: 9999px;
    gap: 0;
  }
}

@media (min-width: 768px) {
  .whatsapp-float {
    bottom: 2rem;
    right: 1.5rem;
  }
}

/* Push WhatsApp button up when cookie banner is visible */
.cookie-banner:not(.hidden) ~ .whatsapp-float {
  bottom: calc(5.5rem + 72px);
}
@media (min-width: 768px) {
  .cookie-banner:not(.hidden) ~ .whatsapp-float {
    bottom: calc(2rem + 72px);
  }
}

/* Order timeline */
.order-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.order-timeline__step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding-bottom: 1rem;
  position: relative;
}

.order-timeline__step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 1.25rem;
  bottom: 0;
  width: 2px;
  background: var(--color-cream-dark);
}

.order-timeline__step--done .order-timeline__dot {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.order-timeline__step--current .order-timeline__label {
  font-weight: 700;
  color: var(--color-ebony);
}

.order-timeline__dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  border: 2px solid var(--color-cream-dark);
  background: #fff;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.order-timeline__label {
  font-size: 0.875rem;
  color: #6b7280;
}

/* PDP sticky CTA (mobile) */
.pdp-sticky-bar {
  display: none;
}

@media (max-width: 1023px) {
  .pdp-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #fff;
    border-top: 1px solid var(--color-cream-dark);
    box-shadow: 0 -4px 16px rgb(0 0 0 / 8%);
  }

  body.pdp-page {
    padding-bottom: 5rem;
  }
}

.variant-btn[aria-pressed="true"] {
  border-color: var(--color-gold) !important;
  background: rgb(201 168 76 / 12%);
  color: var(--color-ebony);
}

/* ── Categories mega-dropdown — premium redesign ── */

/* Slide-down animation */
/* ── Horizontal category bar ──────────────────────────────────────────── */
.cat-bar {
  position: relative;
  z-index: 1;
  background: #fff;
  border-bottom: 1px solid #ECECEE;
}

.cat-bar__wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .cat-bar__scroll { padding-left: 0; padding-right: 0; }
}

.cat-bar__scroll {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  overflow-x: auto;
  padding: 0.45rem 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
}

.cat-bar__scroll::-webkit-scrollbar { display: none; }

.cat-bar__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.78125rem;
  font-weight: 600;
  color: #2D2D2D;
  background: #F7F7F8;
  border: 1.5px solid #ECECEE;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  line-height: 1.4;
}

.cat-bar__pill:hover,
.cat-bar__pill--has-sub:hover {
  background: var(--color-tint-pale);
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.cat-bar__pill--active {
  background: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
}

.cat-bar__chevron {
  width: 0.7rem;
  height: 0.7rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.cat-bar__item { position: relative; display: inline-flex; }

[data-cat-parent] > button[aria-expanded="true"] .cat-bar__chevron {
  transform: rotate(180deg);
}

@keyframes catBarDrop {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cat-bar__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.875rem;
  box-shadow: 0 10px 36px -4px rgba(0,0,0,0.18), 0 2px 8px -2px rgba(0,0,0,0.08);
  z-index: 200;
  overflow: hidden;
  animation: catBarDrop 0.18s ease forwards;
}

.cat-bar__dropdown--open { display: block; }

.cat-bar__sub-link {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  color: #374151;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.1s, color 0.1s;
  white-space: nowrap;
}

.cat-bar__sub-link:hover {
  background: #FDF8EE;
  color: #9A7A2A;
}

.cat-bar__sub-link--active {
  color: #C9A84C;
  font-weight: 700;
}

.cat-bar__sub-link--all {
  font-weight: 700;
  color: #1C1C1C;
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 0.65rem;
  margin-bottom: 0.15rem;
}

/* Account dashboard */
.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 1024px) {
  .dashboard-kpis {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.dashboard-kpi__label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dashboard-kpi__value {
  margin: 0.35rem 0 0;
  font-size: 1.75rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
}

.dashboard-kpi__hint {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: #9ca3af;
}

.dashboard-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  min-height: 10rem;
  padding-top: 0.5rem;
}

.dashboard-chart__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.dashboard-chart__bar-wrap {
  width: 100%;
  height: 8rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.dashboard-chart__bar {
  width: 100%;
  max-width: 3rem;
  min-height: 4px;
  background: linear-gradient(180deg, var(--color-gold-light), var(--color-gold));
  border-radius: 0.5rem 0.5rem 0.15rem 0.15rem;
  transition: height 0.3s ease;
}

.dashboard-chart__label {
  font-size: 0.65rem;
  font-weight: 600;
  color: #6b7280;
  text-align: center;
}

/* Order status badges */
.status-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.status-badge--pending { background: #fef3c7; color: #92400e; }
.status-badge--confirmed { background: #dbeafe; color: #1e40af; }
.status-badge--shipped { background: #ffedd5; color: #9a3412; }
.status-badge--delivered { background: #dcfce7; color: #166534; }
.status-badge--cancelled { background: #fee2e2; color: #991b1b; }
.status-badge--neutral { background: #f3f4f6; color: #4b5563; }

/* Orders table */
.orders-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.orders-filter__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4b5563;
  background: #fff;
  border: 1px solid var(--color-cream-dark);
  border-radius: 9999px;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.orders-filter__pill:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-dark);
}

.orders-filter__pill--active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-ebony);
}

.orders-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-cream-dark);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.orders-table th,
.orders-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-cream-dark);
}

.orders-table th {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  background: var(--color-cream);
}

.orders-table tr:last-child td {
  border-bottom: none;
}

.orders-table tbody tr:hover {
  background: #fdf8ee;
}

.orders-table tfoot td {
  border-bottom: none;
  padding-top: 0.75rem;
}

.order-detail__total-row td {
  border-top: 2px solid var(--color-cream-dark);
  background: var(--color-cream);
}

/* Order detail — ancho completo */
.order-detail {
  width: 100%;
}

.order-detail__header {
  margin-bottom: 1.5rem;
}

.order-detail__back {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.15s;
}

.order-detail__back:hover {
  color: var(--color-gold-dark);
}

.order-detail__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.order-detail__title {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #111827;
}

.order-detail__meta {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: #9ca3af;
}

.order-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .order-detail__grid {
    grid-template-columns: minmax(0, 1fr) 22rem;
    gap: 2rem;
  }
}

@media (min-width: 1280px) {
  .order-detail__grid {
    grid-template-columns: minmax(0, 1fr) 24rem;
  }
}

.order-detail__status-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .order-detail__status-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-detail__status-row .order-detail__panel:only-child {
    grid-column: 1 / -1;
  }
}

.order-detail__panel-title {
  margin: 0 0 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
}

.order-detail__panel .status-badge {
  font-size: 0.75rem;
}

.order-detail__timeline-wrap {
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .order-detail__timeline-wrap .order-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
    gap: 0.5rem 1rem;
  }

  .order-detail__timeline-wrap .order-timeline__step {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0;
  }

  .order-detail__timeline-wrap .order-timeline__step:not(:last-child)::before {
    display: none;
  }
}

.order-detail__tracking {
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
  border-color: #bfdbfe;
}

.order-detail__kv {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 0.75rem;
}

.order-detail__kv-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
}

.order-detail__guide-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.order-detail__guide-num {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #111827;
  user-select: all;
}

.order-detail__copy-btn {
  padding: 0.35rem;
  color: #2563eb;
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.order-detail__copy-btn:hover {
  background: #eff6ff;
  color: #1d4ed8;
}

.order-detail__aside-inner {
  position: sticky;
  top: 5.5rem;
}

.order-detail__summary {
  background: linear-gradient(145deg, #fdf8ee 0%, #fff 55%);
  border-color: rgb(201 168 76 / 35%);
}

.checkout-layout {
  align-items: start;
}

.checkout-card,
.checkout-summary-card {
  border: 1px solid rgb(201 168 76 / 22%);
  box-shadow: 0 14px 36px rgb(28 28 28 / 8%);
}

.checkout-card {
  overflow: visible;
  background: linear-gradient(180deg, #fff 0%, #fff 72%, var(--color-cream) 100%);
}

.checkout-form__header {
  padding: 1.35rem 1.6rem 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, var(--color-ebony) 0%, var(--color-ebony-700) 100%);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.checkout-form__eyebrow {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-gold-light);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.checkout-form__title {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.12;
}

.checkout-form__subtitle {
  margin: 0.35rem 0 0;
  color: rgb(255 255 255 / 68%);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
}

.checkout-form__body {
  display: grid;
  gap: 1.1rem;
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .checkout-form__body {
    padding: 2rem;
  }
}

.checkout-field {
  display: grid;
  gap: 0.4rem;
}

.checkout-label {
  color: #6b7280;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-card .form-input {
  min-height: 3rem;
  border-color: rgb(201 168 76 / 24%);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 6px 18px rgb(28 28 28 / 4%);
}

.checkout-card .form-input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgb(201 168 76 / 16%), 0 8px 22px rgb(28 28 28 / 6%);
}

.checkout-card textarea.form-input {
  min-height: 6.25rem;
  resize: vertical;
}

.checkout-form__section {
  padding-top: 1.2rem;
  border-top: 1px solid var(--color-cream-dark);
}

.checkout-section-title {
  margin: 0;
  margin-bottom: 0.85rem;
  color: #111827;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.checkout-payment-option {
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.checkout-payment-option:hover {
  border-color: rgb(201 168 76 / 55%);
  box-shadow: 0 8px 22px rgb(28 28 28 / 6%);
  transform: translateY(-1px);
}

.checkout-payment-option input {
  margin-top: 0.2rem;
  accent-color: var(--color-gold);
}

.checkout-terms {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  color: #4b5563;
  font-size: 0.86rem;
  line-height: 1.4;
  border: 1px solid var(--color-cream-dark);
  border-radius: 1rem;
  background: #fff;
}

.checkout-terms input {
  margin-top: 0.2rem;
  accent-color: var(--color-gold);
}

.checkout-summary-card {
  overflow: hidden;
  border-radius: 1.5rem;
  background: #fff;
}

.checkout-summary__header {
  padding: 1.25rem 1.35rem 1.1rem;
  background: linear-gradient(135deg, var(--color-ebony) 0%, var(--color-ebony-700) 100%);
  color: #fff;
}

.checkout-summary__eyebrow {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-gold-light);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.checkout-summary__title {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.1;
}

.checkout-summary__subtitle {
  margin: 0.35rem 0 0;
  color: rgb(255 255 255 / 68%);
  font-size: 0.8rem;
  font-weight: 600;
}

.checkout-summary__items {
  display: grid;
  gap: 0.55rem;
  max-height: 19rem;
  margin: 0;
  padding: 1.15rem 1.25rem;
  overflow-y: auto;
  list-style: none;
}

.checkout-summary__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.75rem 0.8rem;
  border: 1px solid var(--color-cream-dark);
  border-radius: 1rem;
  background: var(--color-cream);
}

.checkout-summary__item-name {
  color: #1f2937;
  font-size: 0.85rem;
  font-weight: 800;
}

.checkout-summary__item-qty {
  color: #6b7280;
  font-size: 0.76rem;
  font-weight: 800;
}

.checkout-summary__item-price {
  color: var(--color-gold-dark);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

.checkout-summary__totals {
  display: grid;
  gap: 0.65rem;
  padding: 1.1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--color-cream-dark);
  background: #fff;
}

.checkout-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #4b5563;
  font-size: 0.88rem;
  font-weight: 700;
}

.checkout-summary__row--free {
  color: #047857;
}

.checkout-summary__row--muted {
  color: #6b7280;
}

.checkout-summary__total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.2rem;
  padding-top: 0.85rem;
  color: var(--color-gold-dark);
  font-size: 1.2rem;
  font-weight: 950;
  border-top: 1px solid var(--color-cream-dark);
}

.checkout-summary__notice,
.checkout-summary__free-note {
  margin: 0.2rem 0 0;
  padding: 0.75rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  border-radius: 0.9rem;
}

.checkout-summary__notice {
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
}

.checkout-summary__notice button {
  color: #78350f;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-summary__free-note {
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
}

.order-detail__dl {
  margin: 0;
}

.order-detail__dl-row {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 0.5rem 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--color-cream-dark);
  font-size: 0.875rem;
}

.order-detail__dl-row:last-child {
  border-bottom: none;
}

.order-detail__dl-row dt {
  margin: 0;
  font-weight: 600;
  color: #9ca3af;
}

.order-detail__dl-row dd {
  margin: 0;
  font-weight: 600;
  color: #374151;
}

.order-detail__cancel {
  border-width: 1px;
  border-style: solid;
}

/* Cart */
.cart-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.8rem;
  color: #4b5563;
  background: #fff;
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius-card);
}

.cart-flash {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.75rem;
}

.cart-flash.hidden {
  display: none;
}

.cart-flash--warning {
  color: #92400e;
  background: #fef3c7;
  border: 1px solid #fcd34d;
}

.cart-flash--error {
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fca5a5;
}

.cart-flash--info {
  color: #1e40af;
  background: #dbeafe;
  border: 1px solid #93c5fd;
}

.cart-remove-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cart-remove-modal.hidden {
  display: none;
}

.cart-remove-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(17 24 39 / 55%);
}

.cart-remove-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 26rem);
  padding: 1.35rem 1.4rem 1.2rem;
  background: #fff;
  border: 1px solid rgb(201 168 76 / 24%);
  border-radius: 1rem;
  box-shadow: 0 18px 40px rgb(28 28 28 / 18%);
}

.cart-remove-modal__title {
  margin: 0;
  color: #111827;
  font-size: 1.05rem;
  font-weight: 900;
}

.cart-remove-modal__text {
  margin: 0.65rem 0 1.1rem;
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.45;
}

.cart-remove-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
}

.cart-remove-modal__btn {
  min-height: 2.75rem;
  padding: 0.55rem 1rem;
  font-size: 0.84rem;
  font-weight: 800;
  border-radius: 0.75rem;
  cursor: pointer;
}

.cart-remove-modal__btn--ghost {
  color: #374151;
  background: #fff;
  border: 1px solid var(--color-cream-dark);
}

.cart-remove-modal__btn--danger {
  color: #fff;
  background: #dc2626;
  border: 1px solid #dc2626;
}

.cart-remove-modal__btn--danger:hover {
  background: #b91c1c;
}

.supplier-notice {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-cream-dark);
  font-size: 0.875rem;
}

.supplier-notice--ok {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}

.supplier-notice--warning {
  background: #fffbeb;
  border-color: #fcd34d;
  color: #92400e;
}

.supplier-notice--info {
  background: #eff6ff;
  border-color: #93c5fd;
  color: #1e40af;
}

.supplier-notice--error {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #991b1b;
}

.cart-summary-highlight {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.cart-summary-highlight strong {
  color: var(--color-gold-dark);
}

.cart-shipping-summary {
  margin: 0 0 1rem;
  padding: 0.9rem;
  border: 1px solid #fde68a;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, #fffbeb 0%, #fff 100%);
}

.cart-shipping-summary__header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.cart-shipping-summary__title {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 800;
  color: #1f2937;
}

.cart-shipping-summary__subtitle {
  margin: 0.15rem 0 0;
  font-size: 0.72rem;
  color: #92400e;
}

.cart-shipping-summary__groups {
  display: grid;
  gap: 0.5rem;
}

.cart-shipping-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.7rem;
  border: 1px solid #f3e8c6;
  border-radius: 0.85rem;
  background: #fff;
}

.cart-shipping-group__supplier {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  color: #374151;
}

.cart-shipping-group__meta {
  margin: 0.1rem 0 0;
  font-size: 0.72rem;
  color: #6b7280;
}

.cart-shipping-group__cost {
  text-align: right;
  white-space: nowrap;
}

.cart-shipping-group__cost span {
  display: block;
  font-size: 0.8rem;
  font-weight: 900;
  color: #047857;
}

.cart-shipping-group__cost small {
  display: block;
  font-size: 0.65rem;
  color: #9ca3af;
}

/* Search bar — header + home hero */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.search-bar {
  width: 100%;
}

.search-bar__field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
}

/* Header: rectángulo Clictogo (no pill Pegasus), navy + lupa */
.search-bar--header .search-bar__field {
  background: var(--color-white);
  border: 1.5px solid var(--color-tint-light);
  border-radius: var(--radius-base);
  padding: 0.2rem 0.2rem 0.2rem 0.85rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.search-bar--header .search-bar__field:focus-within {
  border-color: var(--color-primary-blue);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgb(0 104 245 / 16%);
}

.search-bar--hero .search-bar__field {
  background: #fff;
  border: 1.5px solid var(--color-tint-light);
  border-radius: var(--radius-base);
  padding: 0.3rem 0.3rem 0.3rem 1rem;
  box-shadow: var(--shadow-card);
}

.search-bar--hero .search-bar__field:focus-within {
  border-color: var(--color-primary-blue);
  box-shadow: 0 0 0 3px rgb(0 104 245 / 16%);
}

.search-bar__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-family: var(--font-brand);
  font-size: 1rem; /* >=16px evita zoom iOS */
  font-weight: 400;
  padding: 0.55rem 0.35rem;
  outline: none;
  color: var(--color-black);
}

.search-bar--header .search-bar__input::placeholder,
.search-bar--hero .search-bar__input::placeholder {
  color: var(--color-gray-text);
  opacity: 0.85;
}

.search-bar__submit {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: calc(var(--radius-base) - 2px);
  cursor: pointer;
  color: var(--color-white);
  background: var(--color-primary-dark);
  transition: background 0.2s, transform 0.15s;
}

.search-bar__submit svg {
  width: 1.15rem;
  height: 1.15rem;
}

.search-bar__submit:hover {
  background: var(--color-primary-blue);
}

.search-bar__submit:active {
  transform: scale(0.96);
}

.search-bar--hero .search-bar__submit {
  width: 2.75rem;
  height: 2.75rem;
}

/* ── Live search dropdown ── */
.search-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border: 1px solid var(--color-cream-dark);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgb(0 0 0 / 14%);
  overflow: hidden;
}
.search-dropdown__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  text-decoration: none;
  color: #111827;
  transition: background 0.15s;
  border-bottom: 1px solid var(--color-cream-dark);
}
.search-dropdown__item:last-child { border-bottom: none; }
.search-dropdown__item:hover { background: var(--color-cream); }
.search-dropdown__img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  border-radius: 0.5rem;
  background: var(--color-cream);
  flex-shrink: 0;
}
.search-dropdown__img-placeholder {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--color-cream-dark);
  flex-shrink: 0;
}
.search-dropdown__name {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.search-dropdown__price {
  font-size: 0.8rem;
  font-weight: 700;
  color: #A66200;
  white-space: nowrap;
  flex-shrink: 0;
}
.search-dropdown__footer {
  display: block;
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-gold-dark);
  background: var(--color-cream);
  transition: background 0.15s;
}
.search-dropdown__footer:hover { background: var(--color-cream-dark); }

/* Product card — compra directa */
.product-tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.12rem 0.4rem;
  border-radius: 0.25rem;
  background: var(--color-gold-50, #fdf8ee);
  color: var(--color-gold-dark);
}

.product-card__stars {
  display: flex;
  align-items: center;
  gap: 0.05rem;
  line-height: 1;
}

.product-card__star {
  font-size: 0.75rem;
  line-height: 1;
}

.product-card__star--full {
  color: var(--color-gold);
}

.product-card__star--half {
  color: var(--color-gold);
  opacity: 0.55;
}

.product-card__star--empty {
  color: #d1d5db;
}

.product-card__rating-value {
  margin-left: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #6b7280;
}

.product-card__rating-count {
  margin-left: 0.15rem;
  font-size: 0.625rem;
  font-weight: 500;
  color: #9ca3af;
}

/* ── PDP rating (larger stars in info panel) ── */
.pdp-rating .product-card__stars {
  gap: 0.15rem;
}
.pdp-rating .product-card__star {
  font-size: 1.25rem;
}
.pdp-rating .product-card__rating-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111827;
  margin-left: 0.35rem;
}
.pdp-rating .product-card__rating-count {
  font-size: 0.85rem;
  color: #6b7280;
  margin-left: 0.2rem;
}

/* ── PDP price ── */
.pdp-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-tint-pale);
}
.pdp-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.pdp-price {
  font-family: var(--font-brand);
  font-size: clamp(1.75rem, 4vw, 2.15rem);
  font-weight: 800;
  color: var(--color-primary-dark);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pdp-price-currency {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gray-text);
  letter-spacing: 0.04em;
}
.pdp-stock {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
}
.pdp-stock--ok {
  color: #0f7a3e;
}
.pdp-stock--out {
  color: #b42318;
}

.pdp-purchase-box {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  background: var(--color-white);
  border: 1.5px solid var(--color-tint-light);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-soft);
}

.pdp-quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pdp-quantity-control {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1.5px solid var(--color-tint-light);
  border-radius: calc(var(--radius-base) - 2px);
  background: #fff;
}

.pdp-quantity-btn {
  min-width: 2.4rem;
  min-height: 2.35rem;
  color: var(--color-primary-dark);
  font-size: 1rem;
  font-weight: 800;
  transition: background 0.15s, color 0.15s;
}

.pdp-quantity-btn:hover {
  color: var(--color-primary-blue);
  background: var(--color-tint-pale);
}

.pdp-quantity-input {
  width: 3rem;
  min-height: 2.35rem;
  border: 0;
  outline: 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-black);
}

.pdp-trust-list {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--color-tint-pale);
  color: var(--color-gray-text);
  font-size: 0.8rem;
  line-height: 1.35;
}

.pdp-trust-list p {
  margin: 0;
}

.pdp-trust-list strong {
  color: var(--color-primary-dark);
}

/* PDP reviews */
.pdp-reviews {
  margin-top: 2.5rem;
}
.pdp-reviews__title {
  font-family: var(--font-brand);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin: 0 0 0.75rem;
}
.pdp-reviews__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1rem;
}
.pdp-reviews__meta {
  font-size: 0.875rem;
  color: var(--color-gray-text);
}
.pdp-reviews__empty {
  margin-top: 0.5rem;
  padding: 1.1rem 1.15rem;
  border: 1.5px solid var(--color-tint-light);
  border-radius: var(--radius-base);
  background: var(--color-tint-pale);
}
.pdp-reviews__empty-lead {
  margin: 0 0 0.35rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  font-size: 0.95rem;
}
.pdp-reviews__empty-body {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-gray-text);
  line-height: 1.45;
}
.pdp-reviews__empty-hint {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--color-gray-text);
}
.pdp-reviews__empty-hint a {
  font-weight: 600;
  color: var(--color-primary-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pdp-reviews__list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.pdp-reviews__item {
  padding: 1rem 1.1rem;
  border: 1px solid var(--color-tint-light);
  border-radius: var(--radius-base);
  background: #fff;
}
.pdp-reviews__item-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.35rem;
}
.pdp-reviews__author {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.pdp-reviews__date {
  font-size: 0.75rem;
  color: var(--color-gray-text);
}
.pdp-reviews__stars {
  margin: 0 0 0.35rem;
  color: var(--color-primary-blue);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.pdp-reviews__stars .is-off {
  color: #c5cdd8;
}
.pdp-reviews__comment {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-gray-text);
  line-height: 1.5;
}
.pdp-reviews__form {
  margin-top: 1rem;
}
.pdp-reviews__form-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 0.25rem;
}
.pdp-reviews__form-note {
  font-size: 0.8125rem;
  color: var(--color-gray-text);
  margin: 0 0 1rem;
}

/* PDP description + more products */
.pdp-desc {
  margin-top: 2rem;
  padding: 1.25rem 1.35rem;
  border: 1.5px solid var(--color-tint-light);
  border-radius: var(--radius-base);
  background: var(--color-white);
}
.pdp-desc__title {
  font-family: var(--font-brand);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin: 0 0 0.85rem;
}
.pdp-desc__body {
  color: var(--color-gray-text);
  font-size: 0.95rem;
  line-height: 1.55;
}
.pdp-desc__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: var(--font-brand);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary-blue);
}
.pdp-desc__toggle:hover {
  color: var(--color-primary-dark);
}
.pdp-desc__toggle-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}
.pdp-more__title {
  font-family: var(--font-brand);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin: 0 0 0.75rem;
}

/* Mis pedidos — acceso por correo (no card Pegasus) */
.orders-access {
  max-width: 28rem;
  margin: 1.5rem 0 2rem;
  padding: 1.35rem 1.4rem 1.5rem;
  border: 1.5px solid var(--color-tint-light);
  border-radius: var(--radius-base);
  background: linear-gradient(165deg, var(--color-tint-pale) 0%, var(--color-white) 55%);
}
.orders-access__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary-blue);
}
.orders-access__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-brand);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary-dark);
}
.orders-access__lead {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--color-gray-text);
}
.orders-access__lead a {
  font-weight: 600;
  color: var(--color-primary-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.orders-access__form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
@media (min-width: 480px) {
  .orders-access__form {
    flex-direction: row;
    align-items: stretch;
  }
  .orders-access__form .form-input {
    flex: 1;
    min-width: 0;
  }
}
.orders-access__submit {
  flex-shrink: 0;
  min-height: 2.75rem;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-base);
  font-size: 0.875rem;
}
.orders-access__ok {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-base);
  border: 1px solid #b7e4c7;
  background: #ecfdf3;
  color: #0f7a3e;
  font-size: 0.875rem;
  line-height: 1.4;
}
.orders-access__card {
  background: #fff;
  border: 1.5px solid var(--color-tint-light);
  border-radius: var(--radius-base);
  overflow: hidden;
}
.orders-access__card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--color-tint-pale);
}

/* ── Buy now CTA ── */
.btn-buy-now {
  background: linear-gradient(135deg, #A66200  0%, #A66200  100%);
  color: #fff;
  box-shadow: 0 4px 14px rgb(232 48 0 / 30%);
}
.btn-buy-now:hover {
  background: linear-gradient(135deg, #ff7a3d 0%, #ff4d1f 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgb(232 48 0 / 45%);
}
.btn-buy-now:active {
  transform: scale(0.97);
}

/* Reseñas — ficha producto */
.review-score-picker {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.35rem;
}

.review-score-picker__label {
  cursor: pointer;
}

.review-score-picker__label input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.review-score-picker__star {
  font-size: 1.75rem;
  line-height: 1;
  color: #d1d5db;
  transition: color 0.15s, transform 0.1s;
}

.review-score-picker__star--on,
.review-score-picker__label:hover .review-score-picker__star,
.review-score-picker__label:hover ~ .review-score-picker__label .review-score-picker__star {
  color: var(--color-gold);
}

.review-score-picker__label:hover .review-score-picker__star {
  transform: scale(1.08);
}


/* ═══════════════════════════════════════════
   Hero Banner Carousel
   ══════════════════════════════════════════ */

.hero-carousel {
  position: relative;
  aspect-ratio: 21 / 8;
  min-height: 180px;
  max-height: 340px;
  background: var(--color-ebony);
  overflow: hidden;
  /* Break out of max-w-7xl container to full viewport width */
  margin-left:  calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  /* Compensate main's py-8 top padding so banner touches header */
  margin-top: -2rem;
}

@media (max-width: 640px) {
  .hero-carousel {
    aspect-ratio: 16 / 9;
    max-height: 260px;
    min-height: 180px;
  }
}

/* ── Slides ── */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
  pointer-events: none;
}

.hero-slide--active {
  opacity: 1;
  pointer-events: auto;
}

/* ── Media (img / video) ── */
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-media--fallback {
  background: linear-gradient(135deg, var(--color-ebony) 0%, var(--color-ebony-600) 100%);
}

/* ── YouTube iframe — covers container with object-fit illusion ── */
.hero-yt-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* wider than container — simulates object-fit: cover for 16:9 video */
  width: 100vw;
  height: 56.25vw;   /* 16:9 */
  min-height: 100%;
  min-width: 177.78vh; /* 16:9 inverse */
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}

/* ── Gradient overlay ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, calc(var(--hero-opacity, 50) * 0.012)) 0%,
    rgba(0, 0, 0, calc(var(--hero-opacity, 50) * 0.006)) 50%,
    transparent 100%
  );
  z-index: 1;
}

/* ── Text content ── */
.hero-content {
  position: absolute;
  bottom: calc(clamp(1rem, 3vw, 2rem) + 44px); /* +44px clears trust bar */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 720px;
  padding: 0 1.5rem;
  z-index: 2;
  color: #fff;
  text-align: center;
}

@media (max-width: 640px) {
  .hero-content {
    bottom: calc(1rem + 44px);
    padding: 0 1rem;
  }
}

.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin: 0 0 0.4rem;
  line-height: 1;
}

.hero-title {
  font-size: clamp(1.25rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1rem;
  line-height: 1.45;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.hero-price {
  margin: 0 0 1rem;
  color: var(--color-gold-light);
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 900;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.38);
}

.hero-cta {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

/* ── Product counter ── */
.hero-counter {
  position: absolute;
  bottom: calc(44px + 0.6rem); /* just above trust bar */
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  padding: 0.25rem 0.7rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.44);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 800;
}

/* ── Prev / Next arrows ── */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.hero-arrow svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

.hero-arrow--prev { left: 0.85rem; }
.hero-arrow--next { right: 0.85rem; }

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(-50%) scale(1.08);
}

/* Push arrows up to clear trust bar */
.hero-arrow {
  top: calc(50% - 22px); /* 44px trust bar / 2 */
}

@media (max-width: 480px) {
  .hero-arrow {
    width: 2rem;
    height: 2rem;
  }
  .hero-arrow svg { width: 0.9rem; height: 0.9rem; }
  .hero-arrow--prev { left: 0.5rem; }
  .hero-arrow--next { right: 0.5rem; }
}


/* ═══════════════════════════════════════════
   Trust bar — overlaid inside hero carousel
   ══════════════════════════════════════════ */

.hero-trust-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 1.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.25rem;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: hidden;
}

.hero-trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

@media (max-width: 480px) {
  .hero-trust-bar {
    gap: 0 1rem;
    padding: 0.45rem 0.75rem;
    overflow-x: auto;
    justify-content: flex-start;
  }
  .hero-trust-bar-item {
    font-size: 0.65rem;
  }
}

/* ========================================
   Mobile improvements (added)
   ======================================== */

/* iOS Safari: prevent auto-zoom on input focus (need >= 16px font-size) */
@media (max-width: 767px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="search"],
  input[type="tel"],
  input[type="number"],
  input[type="url"],
  select,
  textarea {
    font-size: 1rem !important;
  }

  /* Product grid: tighter gap on small phones */
  #product-grid {
    gap: 0.625rem !important;
  }

  /* Search dropdown: extend to edges on mobile */
  .search-bar .search-dropdown {
    left: -0.75rem;
    right: -0.75rem;
    border-radius: 0 0 1rem 1rem;
  }
}

/* Touch targets: product card carousel dots & nav buttons — must be >= 44px tappable */
.product-card__dot {
  /* Increase visual + hit area without changing layout */
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  position: relative;
}

.product-card__dot::before {
  content: '';
  position: absolute;
  inset: -10px;
}

/* Category bar: subtle fade hint for horizontal scroll on mobile */
@media (max-width: 767px) {
  .cat-bar__wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2.5rem;
    background: linear-gradient(to right, transparent, #232323 90%);
    pointer-events: none;
    z-index: 2;
  }
}

/* ── Home sections P1 (Vento — diverge from Pegasus dark collage) ── */
.home-section {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.25rem 1rem 0.5rem;
  scroll-margin-top: calc(var(--site-header-height, 72px) + 0.75rem);
}

.catalog-layout--home-feed {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem 2rem;
  scroll-margin-top: calc(var(--site-header-height, 72px) + 0.75rem);
}
.catalog-feed-head {
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}
.catalog-load-more-btn {
  font-family: var(--font-brand);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  background: var(--color-white);
  border: 1.5px solid var(--color-tint-light);
  border-radius: var(--radius-base);
  padding: 0.65rem 1.25rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.catalog-load-more-btn:hover {
  border-color: var(--color-primary-blue);
  color: var(--color-primary-blue);
  background: var(--color-tint-pale);
}
.catalog-load-more-btn:disabled {
  cursor: wait;
}
.home-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.home-section__title {
  font-weight: 800;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  margin: 0 0 0.25rem;
  color: #1A1A1A;
}
.home-section__sub {
  font-size: 0.84rem;
  color: #8A8A8E;
  margin: 0;
}
.home-section__all {
  color: var(--color-gold);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}
.home-section__all:hover { text-decoration: underline; }

.vt-hero {
  background:
    linear-gradient(180deg, var(--color-tint-pale) 0%, #F7F7F8 42%, #FFFFFF 100%);
  border-bottom: 1px solid #ECECEE;
  color: #1A1A1A;
}
.vt-hero__urgency {
  display: flex;
  justify-content: center;
  padding: 0.55rem 1rem;
  background: #1A1A1A;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.vt-hero__urgency-live,
.vt-hero__urgency-offer {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.vt-hero__pulse {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #00C853;
  box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.55);
  animation: vt-pulse 1.6s ease-out infinite;
}
@keyframes vt-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(0, 200, 83, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0); }
}
#vt-offer-countdown {
  font-variant-numeric: tabular-nums;
  color: var(--color-gold);
  margin-left: 0.25rem;
}
.vt-hero__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) 1rem clamp(2.5rem, 5vw, 3.75rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 900px) {
  .vt-hero__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    gap: 2.5rem;
    align-items: center;
  }
}
.vt-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.vt-hero__title {
  margin: 0 0 1rem;
  font-weight: 900;
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #1A1A1A;
}
.vt-hero__title span { color: var(--color-gold); }
.vt-hero__text {
  margin: 0 0 1.35rem;
  max-width: 34rem;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.55;
  color: #2D2D2D;
}
.vt-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0;
}
.vt-hero__cta-wrap { display: flex; flex-direction: column; gap: 0.4rem; }
.vt-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  font-size: 0.95rem;
  border-radius: 0.75rem;
}
.vt-hero__cta-note {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #00C853;
  max-width: 16rem;
  line-height: 1.35;
}
.vt-hero__ghost {
  display: inline;
  padding: 0;
  border: none;
  border-radius: 0;
  min-height: 0;
  font-weight: 600;
  font-size: 0.875rem;
  color: #8A8A8E;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  background: transparent;
}
.vt-hero__ghost:hover { border: none; color: var(--color-gold); }
.vt-hero__social {
  background: #fff;
  border: 1px solid #ECECEE;
  border-radius: 1rem;
  padding: 0;
  min-height: 0;
  overflow: hidden;
  box-shadow: 0 10px 28px rgb(26 26 26 / 6%);
}
.vt-hero__reviews { position: relative; min-height: 8.5rem; padding: 1.15rem 1.2rem; }
.vt-hero__proof { padding: 1.15rem 1.2rem; }
.vt-hero__spotlight {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.vt-hero__spotlight-img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #EDEDEF;
}
.vt-hero__spotlight-cap {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 1rem 1rem;
}
.vt-hero__spotlight-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.vt-hero__spotlight-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.3;
}
.vt-hero__review {
  display: none;
  margin: 0;
  animation: vt-fade 0.35s ease;
}
.vt-hero__review.is-active { display: block; }
@keyframes vt-fade {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: none; }
}
.vt-hero__review-stars {
  margin: 0 0 0.55rem;
  color: var(--color-gold);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.vt-hero__review-text {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #2D2D2D;
}
.vt-hero__review-meta {
  font-size: 0.75rem;
  font-weight: 600;
  color: #8A8A8E;
}
.vt-hero__proof-title {
  margin: 0 0 0.4rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: #1A1A1A;
}
.vt-hero__proof-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #2D2D2D;
}

.home-trust {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.75rem 1rem 0.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.875rem;
}
.home-trust__tile {
  background: #fff;
  border: 1px solid #ECECEE;
  border-radius: 0.875rem;
  padding: 1.1rem;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}
.home-trust__icon {
  flex: none;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.home-trust__icon--pay { background: #E8F8EE; color: #00C853; }
.home-trust__icon--ship { background: var(--color-tint-pale); color: var(--color-gold); font-size: 0.68rem; }
.home-trust__icon--safe { background: #F0F0F2; color: #1A1A1A; }
.home-trust__title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.2rem; color: #1A1A1A; }
.home-trust__text { font-size: 0.8125rem; color: #8A8A8E; line-height: 1.5; }

.cat-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}
.cat-tiles--circles {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.cat-tile {
  border-radius: 0.875rem;
  padding: 0.85rem 0.75rem 1rem;
  text-decoration: none;
  background: #fff;
  border: 1px solid #ECECEE;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  display: block;
}
.cat-tile--circle {
  width: 5.75rem;
  padding: 0;
  border: none;
  background: transparent;
  text-align: center;
  box-shadow: none;
}
.cat-tile--circle:hover {
  transform: translateY(-2px);
  border: none;
  box-shadow: none;
}
.cat-tile--circle:hover .cat-tile__media {
  box-shadow: 0 0 0 2px var(--color-gold);
}
.cat-tile__media {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.65rem;
  overflow: hidden;
  background: #EDEDEF;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-tile--circle .cat-tile__media {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  margin: 0 auto 0.5rem;
  border: 1px solid #ECECEE;
  transition: box-shadow 0.15s ease;
}
.cat-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-tile__fallback {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-gold);
}
.cat-tile__label {
  font-weight: 700;
  font-size: 0.84rem;
  color: #1A1A1A;
  line-height: 1.25;
}
.cat-tile--circle .cat-tile__label {
  font-size: 0.78rem;
  text-align: center;
}
.cat-tile__count {
  font-size: 0.72rem;
  color: #8A8A8E;
  margin-top: 0.15rem;
}
.cat-explore__heading {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8A8A8E;
}
.cat-explore {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(5.5rem, 1fr));
  gap: 1rem 0.75rem;
  justify-items: center;
}
@media (min-width: 640px) {
  .cat-explore {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .cat-explore {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}
.cat-explore__item {
  width: 100%;
  max-width: 5.75rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
}
.cat-explore__media {
  position: relative;
  display: block;
  width: 5.25rem;
  height: 5.25rem;
  margin: 0 auto 0.45rem;
  border-radius: 50%;
  overflow: hidden;
  background: #EDEDEF;
  border: 1px solid #ECECEE;
}
.cat-explore__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-explore__fallback {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--color-gold);
}
.cat-explore__hot {
  position: absolute;
  top: 0.15rem;
  right: 0.15rem;
  background: var(--color-gold);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.12rem 0.28rem;
  border-radius: 0.25rem;
  line-height: 1;
}
.cat-explore__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.25;
  color: #2D2D2D;
}
.cat-explore__item:hover .cat-explore__media {
  box-shadow: 0 0 0 2px var(--color-gold);
}
.cat-explore__item:hover .cat-explore__label {
  color: var(--color-gold);
}

.how-it-works {
  background: #fff;
  border: 1px solid #ECECEE;
  border-radius: 1.15rem;
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  max-width: 80rem;
  margin: 0.5rem auto 0;
}
.how-it-works__title {
  font-weight: 800;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  margin: 0 0 0.35rem;
  text-align: center;
  color: #1A1A1A;
}
.how-it-works__sub {
  font-size: 0.84rem;
  color: #8A8A8E;
  text-align: center;
  margin: 0 0 1.75rem;
}
.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.35rem;
}
.how-it-works__step { text-align: center; padding: 0 0.5rem; }
.how-it-works__num {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  background: var(--color-gold);
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
.how-it-works__step-title {
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
  color: #1A1A1A;
}
.how-it-works__step-text {
  font-size: 0.8125rem;
  color: #8A8A8E;
  line-height: 1.55;
  margin: 0;
}
.how-it-works__cta { text-align: center; margin-top: 1.5rem; }
.how-it-works__wa-link {
  font-size: 0.84rem;
  font-weight: 700;
  color: #00C853;
  text-decoration: none;
}
.how-it-works__wa-link:hover { text-decoration: underline; }

.cta-band {
  max-width: 80rem;
  margin: 0 auto;
  background: #1A1A1A;
  border-radius: 1.15rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cta-band__title {
  font-weight: 800;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: #fff;
  margin-bottom: 0.25rem;
}
.cta-band__sub { font-size: 0.875rem; color: rgb(255 255 255 / 72%); }
.cta-band__btn {
  background: #00C853;
  color: #fff;
  border-radius: 0.75rem;
  padding: 0.85rem 1.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  flex: none;
  text-decoration: none;
}
.cta-band__btn:hover { background: #00a844; color: #fff; }

.vt-empty-catalog__box {
  max-width: 40rem;
  margin: 0.5rem auto 1rem;
  padding: 2rem 1.25rem;
  text-align: center;
  background: #fff;
  border: 1px solid #ECECEE;
  border-radius: 1rem;
}
.vt-empty-catalog__title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #1A1A1A;
}
.vt-empty-catalog__text {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #2D2D2D;
}
.vt-empty-catalog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.875rem;
}
.testimonial-card {
  margin: 0;
  background: #fff;
  border: 1px solid #ECECEE;
  border-radius: 0.875rem;
  padding: 1.1rem;
}
.testimonial-card__stars { margin: 0 0 0.5rem; color: var(--color-gold); font-size: 0.9rem; }
.testimonial-card__text {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #2D2D2D;
}
.testimonial-card__footer {
  font-size: 0.75rem;
  font-weight: 700;
  color: #8A8A8E;
}

/* ── Cart drawer (P2 conversión · Clictogo) ─────────────────────────────── */
html.cart-drawer-open,
html.cart-drawer-open body {
  overflow: hidden;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  /* Por encima del site-header (z-index: 1000) */
  z-index: 1100;
  /* Nunca capturar clics cuando cerrado — si no, no se puede reabrir el carrito */
  pointer-events: none;
  visibility: hidden;
}

.cart-drawer.is-open {
  visibility: visible;
}

.cart-drawer.is-open .cart-drawer__overlay,
.cart-drawer.is-open .cart-drawer__panel {
  pointer-events: auto;
}

.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 27, 107, 0.45);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.cart-drawer.is-open .cart-drawer__overlay {
  opacity: 1;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(100vw, 400px);
  height: 100%;
  background: var(--color-white);
  box-shadow: -12px 0 40px rgba(0, 27, 107, 0.18);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-drawer.is-open .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--color-cream-dark);
}

.cart-drawer__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-ebony);
}

.cart-drawer__count {
  margin-left: 0.35rem;
  font-weight: 600;
  color: var(--color-gray-text);
  font-size: 0.9rem;
}

.cart-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 999px;
  background: var(--color-cream);
  color: var(--color-ebony);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.cart-drawer__close:hover {
  background: var(--color-tint-pale);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 1rem 1rem;
  -webkit-overflow-scrolling: touch;
}

.cart-drawer__empty {
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--color-gray-text);
  font-size: 0.9rem;
}

.cart-drawer__line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-cream-dark);
}

.cart-drawer__thumb {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-cream);
}

.cart-drawer__thumb img,
.cart-drawer__ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-drawer__ph {
  background: linear-gradient(135deg, var(--color-tint-pale), var(--color-cream));
}

.cart-drawer__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-ebony);
  text-decoration: none;
  line-height: 1.3;
}

.cart-drawer__name:hover {
  color: var(--color-gold);
}

.cart-drawer__variant {
  margin: 0.2rem 0 0;
  font-size: 0.7rem;
  color: var(--color-gray-text);
}

.cart-drawer__price {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary-blue);
}

.cart-drawer__qty {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.cart-drawer__qty-btn {
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid var(--color-cream-dark);
  border-radius: 8px;
  background: #fff;
  font-weight: 700;
  cursor: pointer;
  color: var(--color-ebony);
}

.cart-drawer__qty-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.cart-drawer__qty-val {
  min-width: 1.25rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
}

.cart-drawer__remove {
  margin-left: 0.25rem;
  border: none;
  background: none;
  color: var(--color-gray-text);
  font-size: 0.7rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0.25rem;
}

.cart-drawer__remove:hover {
  color: var(--color-accent-alt);
}

.cart-drawer__sub {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--color-ebony);
  white-space: nowrap;
}

.cart-drawer__footer {
  padding: 1rem 1.1rem 1.25rem;
  border-top: 1px solid var(--color-cream-dark);
  background: #fff;
  box-shadow: 0 -8px 24px rgba(0, 27, 107, 0.06);
}

.cart-drawer__totals {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
  font-size: 0.8125rem;
}

.cart-drawer__row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--color-gray-text);
}

.cart-drawer__row--total {
  margin-top: 0.15rem;
  padding-top: 0.45rem;
  border-top: 1px dashed var(--color-cream-dark);
  color: var(--color-ebony);
  font-weight: 800;
  font-size: 0.95rem;
}

.cart-drawer__actions {
  display: grid;
  gap: 0.5rem;
}

.cart-drawer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-btn);
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.cart-drawer__btn:active {
  transform: scale(0.98);
}

.cart-drawer__btn--primary {
  background: var(--color-gold);
  color: #fff;
}

.cart-drawer__btn--primary:hover {
  background: var(--color-gold-light);
}

.cart-drawer__btn--ghost {
  background: var(--color-cream);
  color: var(--color-ebony);
}

.cart-drawer__btn--ghost:hover {
  background: var(--color-tint-pale);
}

.cart-drawer.is-loading .cart-drawer__body {
  opacity: 0.55;
  pointer-events: none;
}

/* Login guest-first (no grid 2 cols tipo Pegasus) */
.auth-guest__hero {
  padding: 1.25rem 1.15rem 1.35rem;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(0, 104, 245, 0.12), transparent 55%),
    linear-gradient(180deg, var(--color-tint-pale), #fff);
  border: 1px solid var(--color-cream-dark);
}

.auth-guest__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary-blue);
}

.auth-guest__title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-primary-dark);
}

.auth-guest__lead {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--color-gray-text);
}

.auth-guest__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-btn);
  background: var(--color-primary-dark);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
}

.auth-guest__cta:hover {
  background: var(--color-primary-blue);
}

.auth-guest__divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.35rem 0 1.1rem;
  color: var(--color-gray-text);
  font-size: 0.75rem;
  font-weight: 700;
}

.auth-guest__divider::before,
.auth-guest__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ECECEE;
}

.auth-guest__form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.auth-guest__field .auth-guest__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-ebony);
}

.auth-guest__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  color: var(--color-gray-text);
}

.auth-guest__links a {
  color: var(--color-primary-blue);
  font-weight: 700;
  text-decoration: none;
}

.auth-guest__links a:hover {
  text-decoration: underline;
}
