@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Cormorant+Garamond:wght@400;500;600&family=Lato:wght@300;400;700&display=swap");

/* ============================================================
   CSS RESET & ROOT VARIABLES
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Roles heredados (mapeados a la paleta KABODHI) */
  --negro: #1C3A4F;      /* rol "oscuro": fondos y texto principal */
  --crema: #F5F1E8;      /* fondo de pagina */
  --taupe: #8B7966;      /* texto atenuado */
  --champagne: #A66B3D;  /* acento */
  --plata: #B7AE9C;
  --blanco: #FFFFFF;
  --gris-suave: #E7DECD;

  /* Paleta de marca KABODHI — azul petroleo, tomado del teal del logo.
     Los nombres --bosque/--salvia vienen de la etapa verde y se conservan
     porque son el rol usado en todo el CSS; los valores ya son azules. */
  --bosque: #1C3A4F;
  --bosque-oscuro: #132836;
  --salvia: #8A9DAB;
  --arena: #E7DECD;
  --crema-marca: #F5F1E8;
  --terracota: #A66B3D;
  --tierra: #8B7966;
  --carbon: #2B2B2B;

  --font-primary: 'Playfair Display', Georgia, serif;
  --font-secondary: 'Lato', sans-serif;

  --transition: 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(28,58,79,0.06);
  --shadow-md: 0 6px 24px rgba(28,58,79,0.10);
  --shadow-lg: 0 8px 40px rgba(28,58,79,0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--crema);
  color: var(--negro);
  font-family: var(--font-secondary);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 300;
  line-height: 1.2;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 10%;

  background: linear-gradient(
    to bottom,
    #132836 0%,
    #17323F 100%
  );

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 55px;

  border-bottom: 1px solid rgba(255,255,255,0.15);

  transition: box-shadow var(--transition);
}

.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.05), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(255,255,255,0.03), transparent 30%);
  pointer-events: none;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

/* Logo image - left */
.navbar__logo-wrap a {
  display: flex;
  align-items: center;
}

.navbar__logo-img {
  height: 72px;
  width: auto;
}

/* Nav links - center */
.navbar__nav {
  display: flex;
  gap: 55px;
  margin-left: 60%;
}

.navbar__link {
  position: relative;
  text-decoration: none;
  color: #e7e7e7;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
  transition: 0.3s ease;
}

.navbar__link:hover,
.navbar__link.active {
  color: #A66B3D;
}

.navbar__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 1px;
  background: #A66B3D;
  transition: 0.3s;
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

/* Dropdown COLECCIONES */
.navbar__dropdown {
  position: relative;
}

.navbar__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  background: #17323F;
  border: 1px solid rgba(255,255,255,0.12);
  min-width: 160px;
  flex-direction: column;
  z-index: 100;
}

.navbar__dropdown.open .navbar__dropdown-menu {
  display: flex;
}

.navbar__dropdown-item {
  padding: 12px 20px;
  color: #e7e7e7;
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-decoration: none;
  transition: 0.3s;
  text-align: center;
}

.navbar__dropdown-item:hover {
  color: #A66B3D;
  background: rgba(255,255,255,0.04);
}

/* Icons - right */
.navbar__icons {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar__icon-link {
  color: #E7DECD;
  font-size: 21px;
  text-decoration: none;
  transition: 0.3s;
}

.navbar__icon-link:hover {
  color: #ffffff;
}

/* Cart icon */
.navbar__cart-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.navbar__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E7DECD;
  font-size: 21px;
  text-decoration: none;
  transition: 0.3s;
  min-width: 44px;
  min-height: 44px;
}

.navbar__cart:hover {
  color: #ffffff;
}

.cart-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #A66B3D;
  color: #fff;
  font-family: var(--font-secondary);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 1.5px solid #17323F;
  pointer-events: none;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: #e7e7e7;
  transition: var(--transition);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background-color: #17323F;
  border-bottom: 1px solid rgba(200,169,126,0.15);
  z-index: 999;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.75rem 1.25rem 1rem;
  gap: 0;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9BBA6;
  padding: 0.65rem 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition);
  text-decoration: none;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: #ffffff;
}

/* ============================================================
   PAGE OFFSET (below fixed navbar)
   ============================================================ */
.page-content {
  padding-top: 14%;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  background: #132836;
}

.slider__track {
  display: flex;
  height: 100%;
  transition: transform 3s ease-in-out;
}

.slider__slide {
  min-width: 100%;
  height: 100%;
}

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

/* Dots */
.slider__dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
  transition: 0.3s;
}

.slider__dot.active {
  background: rgba(255,255,255,0.35);
  border-color: rgba(255,255,255,0.5);
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section {
  padding: 6rem 2rem;
}

.section--dark {
  background-color: var(--negro);
  color: var(--crema);
}

.section--light {
  background-color: var(--blanco);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.section-line::before,
.section-line::after {
  content: '';
  width: 50px;
  height: 1px;
  background-color: var(--champagne);
}

.section-line span {
  color: var(--champagne);
  font-size: 0.6rem;
}

.section-subtitle {
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ============================================================
   COLECCIONES PANELS (Homepage)
   ============================================================ */
.colecciones-panels {
  display: flex;
  width: 100%;
}

.colecciones-panel {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 2rem 4rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: flex 0.5s ease;
}

.colecciones-panel:hover {
  flex: 1.08;
}

.colecciones-panel--dark {
  background: linear-gradient(135deg, #17323F 0%, #1C3A4F 60%, #243F52 100%);
}

.colecciones-panel--light {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 60%, #C9BBA6 100%);
}

.colecciones-panel__content {
  position: relative;
  z-index: 1;
}

.colecciones-panel__label {
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom: 0.3rem;
}

.colecciones-panel--dark .colecciones-panel__label {
  color: rgba(232, 216, 199, 0.7);
}

.colecciones-panel--light .colecciones-panel__label {
  color: rgba(40, 30, 20, 0.65);
}

.colecciones-panel__title {
  font-family: var(--font-primary);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.colecciones-panel--dark .colecciones-panel__title {
  color: #EFE9DC;
}

.colecciones-panel--light .colecciones-panel__title {
  color: #1C3A4F;
}

.colecciones-panel__cta {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  padding-bottom: 3px;
  transition: 0.3s;
}

.colecciones-panel--dark .colecciones-panel__cta {
  color: #A66B3D;
  border-bottom: 1px solid #A66B3D;
}

.colecciones-panel--light .colecciones-panel__cta {
  color: #26506B;
  border-bottom: 1px solid #26506B;
}

.colecciones-panel:hover .colecciones-panel__cta {
  letter-spacing: 4px;
}

/* ============================================================
   COLLECTIONS GRID (Homepage)
   ============================================================ */
.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background-color: var(--negro);
}

.collection-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  opacity: 0.75;
}

.collection-card:hover .collection-card__image {
  transform: scale(1.04);
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 2.5rem;
  background: linear-gradient(transparent 40%, rgba(13,13,13,0.75) 100%);
}

.collection-card__title {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--crema);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.collection-card__link {
  font-family: var(--font-secondary);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  border-bottom: 1px solid var(--champagne);
  padding-bottom: 2px;
  transition: opacity var(--transition);
}

.collection-card__link:hover {
  opacity: 0.7;
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.productos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Product Card */
.producto-card {
  background-color: var(--blanco);
  position: relative;
  transition: box-shadow var(--transition);
  overflow: hidden;
}

.producto-card:hover {
  box-shadow: var(--shadow-md);
}

.producto-card__img-wrap {
  position: relative;
  aspect-ratio: 1/1.1;
  overflow: hidden;
  background-color: var(--crema);
}

.producto-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.producto-card:hover .producto-card__img {
  transform: scale(1.04);
}

.producto-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--negro);
  color: var(--crema);
  font-family: var(--font-secondary);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
}

.producto-card__out-of-stock {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--taupe);
  color: var(--blanco);
  font-family: var(--font-secondary);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
}

.producto-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.producto-card__category {
  font-family: var(--font-secondary);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.4rem;
}

.producto-card__name {
  font-family: var(--font-primary);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--negro);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.producto-card__nota {
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--taupe);
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.producto-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.producto-card__price {
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--negro);
}

.btn-agregar {
  font-family: var(--font-secondary);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: var(--negro);
  color: var(--crema);
  padding: 0.55rem 1.1rem;
  transition: background-color var(--transition), transform var(--transition);
  border-radius: 999px;
}

.btn-agregar:hover {
  background-color: var(--taupe);
}

.btn-agregar:disabled {
  background-color: var(--plata);
  cursor: not-allowed;
}

/* Add to cart slide-up on hover (card variant) */
.producto-card__add-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--negro);
  color: var(--crema);
  text-align: center;
  padding: 0.9rem;
  font-family: var(--font-secondary);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  cursor: pointer;
}

.producto-card:hover .producto-card__add-overlay {
  transform: translateY(0);
}

/* ---- Páginas Ayuda / Nosotros ---- */
.pagina-editorial {
  max-width: 820px;
  margin: 0 auto;
  padding: 4.5rem 2rem 6rem;
}

.pagina-editorial__eyebrow {
  font-family: var(--font-secondary);
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--taupe);
  text-align: center;
  margin-bottom: 1rem;
}

.pagina-editorial__title {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  color: var(--negro);
  text-align: center;
  margin-bottom: 0.5rem;
}

.pagina-editorial h2 {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--negro);
  margin: 3rem 0 1.1rem;
  padding-top: 1rem;
}

.pagina-editorial p,
.pagina-editorial li {
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 0.93rem;
  line-height: 1.9;
  color: #3a3a3a;
  margin-bottom: 0.9rem;
  margin-top: 1.5rem;
}

.pagina-editorial ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.faq-item {
  border-bottom: 1px solid var(--gris-suave);
  padding: 1.1rem 0;
}

.faq-item__q {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--negro);
  margin-bottom: 0.4rem;
}

.faq-item__a {
  margin-bottom: 0 !important;
}

/* ============================================================
   PHILOSOPHY PILLARS
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.pillar__icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--champagne);
}

.pillar__title {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--crema);
  margin-bottom: 0.75rem;
}

.pillar__text {
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--plata);
  line-height: 1.7;
}

/* ============================================================
   QUOTE / BRAND STATEMENT
   ============================================================ */
.quote-section {
  padding: 7rem 2rem;
  text-align: center;
  background-color: var(--blanco);
}

.quote-text {
  font-family: var(--font-primary);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-style: italic;
  font-weight: 300;
  color: var(--negro);
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.4;
}

.quote-author {
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background-color: #ffffff;
  padding: 2.5rem 2rem;
  text-align: center;
}

.newsletter__title {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--negro);
  margin-bottom: 0.3rem;
}

.newsletter__subtitle {
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--negro);
  opacity: 0.7;
  margin-bottom: 1.25rem;
  letter-spacing: 0.1em;
}

.newsletter__form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}

.newsletter__input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--negro);
  border-right: none;
  background: transparent;
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--negro);
  outline: none;
}

.newsletter__input::placeholder {
  color: rgba(13,13,13,0.5);
}

.newsletter__btn {
  padding: 0.85rem 1.5rem;
  background-color: var(--negro);
  color: var(--crema);
  font-family: var(--font-secondary);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--negro);
  transition: background-color var(--transition);
}

.newsletter__btn:hover {
  background-color: var(--taupe);
  border-color: var(--taupe);
}


/* ============================================================
   REDISEÑO 2026 — Hero editorial, beneficios, ¿Por qué NÜVE?,
   footer completo y página de ayuda
   ============================================================ */

/* ---- Hero editorial ---- */
.hero-editorial {
  background: #17323F;
  color: var(--blanco);
  padding: 7.5rem 2rem 8rem;
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-editorial__inner {
  max-width: 860px;
}

.hero-editorial__eyebrow {
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1.6rem;
}

.hero-editorial__title {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  line-height: 1.35;
  color: #F5F1E8;
  margin-bottom: 1.4rem;
}

.hero-editorial__sub {
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  color: rgba(245, 243, 239, 0.65);
  margin-bottom: 2.6rem;
}

.hero-editorial__cta {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: #F5F1E8;
  border: 1px solid rgba(245, 243, 239, 0.7);
  padding: 1rem 2.4rem;
  text-decoration: none;
  transition: var(--transition);
}

.hero-editorial__cta:hover {
  background: #F5F1E8;
  color: #17323F;
}

/* Variante con foto editorial (activar cuando haya imagen) */
.hero-editorial--split {
  text-align: left;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-editorial--split .hero-editorial__inner { flex: 1.1; }

.hero-editorial__media {
  flex: 0.9;
}

.hero-editorial__media img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
/* WHATSAPP FLOTANTE */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: #25D366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.6);
}

.footer {
  background-color: var(--crema);
  color: var(--carbon);
  padding: 0 0 1rem;
}

/* El fondo cubre solo la franja del logo y los datos, no la del copyright */
.footer__top-wrap {
  background-image: url('../images/bg-footer.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 2rem 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 1rem;
}


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


.footer__heading {
  font-family: var(--font-secondary);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 1.25rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__nav a {
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--carbon);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--terracota);
}

.footer__contact-item {
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--carbon);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.footer__bottom {
  border-top: 1px solid rgba(139, 121, 102, 0.3);
  padding: 1rem 2rem 0;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.footer__copy {
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--tierra);
  letter-spacing: 0.08em;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 999px;
}

.btn-primary {
  background-color: var(--negro);
  color: var(--crema);
  border-color: var(--negro);
  border-radius: 999px;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--negro);
}

.btn-secondary {
  background-color: transparent;
  color: var(--negro);
  border-color: var(--negro);
  border-radius: 999px;
}

.btn-secondary:hover {
  background-color: var(--negro);
  color: var(--crema);
}

.btn-outline-cream {
  background-color: transparent;
  color: var(--crema);
  border-color: var(--crema);
  border-radius: 999px;
}

.btn-outline-cream:hover {
  background-color: var(--crema);
  color: var(--negro);
}

/* ============================================================
   PAGE HEROES (sub-pages)
   ============================================================ */
.page-hero {
  background-color: var(--negro);
  padding: 7rem 2rem 3.5rem;
  text-align: center;
}

.page-hero__title {
  font-family: var(--font-secondary);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
  color: var(--crema);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
  flex-wrap: wrap;
}

.filter-bar__search {
  flex: 1;
  min-width: 200px;
  padding: 0.7rem 1rem;
  border: none;
  border-bottom: 1px solid var(--taupe);
  background: transparent;
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--negro);
  outline: none;
  transition: border-color var(--transition);
  border-radius: 999px;
}

.filter-bar__search::placeholder {
  color: var(--taupe);
}

.filter-bar__search:focus {
  border-color: var(--negro);
}

.filter-bar__select {
  padding: 0.7rem 1rem;
  border: none;
  border-bottom: 1px solid var(--taupe);
  background: transparent;
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--negro);
  outline: none;
  cursor: pointer;
  min-width: 160px;
  border-radius: 999px;
}

.filter-bar__results {
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--taupe);
  letter-spacing: 0.05em;
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  grid-column: 1 / -1;
}

.empty-state__icon {
  font-size: 3rem;
  color: var(--plata);
  margin-bottom: 1rem;
}

.empty-state__title {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--taupe);
  margin-bottom: 0.5rem;
}

.empty-state__text {
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--plata);
}

/* ============================================================
   SKELETON LOADERS
   ============================================================ */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}

.skeleton {
  background: linear-gradient(90deg, #E7DECD 25%, #F5F1E8 50%, #E7DECD 75%);
  background-size: 600px 100%;
  animation: shimmer 1.6s infinite;
  border-radius: 2px;
}

.skeleton-card {
  background-color: var(--blanco);
}

.skeleton-card .skeleton-img {
  aspect-ratio: 1/1.1;
}

.skeleton-card .skeleton-body {
  padding: 1.5rem;
}

.skeleton-card .skeleton-line {
  height: 12px;
  margin-bottom: 10px;
  border-radius: 2px;
}

.skeleton-card .skeleton-line.short { width: 40%; }
.skeleton-card .skeleton-line.medium { width: 70%; }
.skeleton-card .skeleton-line.full { width: 100%; }

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background-color: var(--negro);
  color: var(--crema);
  padding: 1rem 1.5rem;
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 400;
  max-width: 320px;
  box-shadow: var(--shadow-lg);
  transform: translateX(110%);
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.toast.show {
  transform: translateX(0);
}

.toast--success { border-left: 3px solid #7cb87c; }
.toast--error   { border-left: 3px solid #c07b7b; }
.toast--info    { border-left: 3px solid var(--champagne); }

.toast__icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================================
   CART PAGE
   ============================================================ */
.page-carrito {
  background: #ffffff;
}

.cart-page-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem 0;
}

.cart-page-title {
  font-family: var(--font-primary);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 5px;
  color: #1C3A4F;
  text-transform: uppercase;
  padding-bottom: 1rem;
  border-bottom: 1px solid #E7DECD;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem 5rem;
  align-items: start;
}

/* Empty state */
.cart-empty {
  padding: 5rem 2rem;
  text-align: center;
}

.cart-empty__icon {
  font-size: 2.5rem;
  color: #C9BBA6;
  margin-bottom: 1.5rem;
}

.cart-empty__title {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 3px;
  color: #1C3A4F;
  margin-bottom: 0.75rem;
}

.cart-empty__text {
  font-family: var(--font-secondary);
  font-size: 0.82rem;
  color: #888;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
}

.cart-empty__btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: #1C3A4F;
  color: #EFE9DC;
  font-family: var(--font-secondary);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-decoration: none;
  transition: background 0.3s;
  border-radius: 999px;
}

.cart-empty__btn:hover {
  background: #26506B;
}

/* Cart items list */
.cart-items {
  display: flex;
  flex-direction: column;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #ECE4D5;
  align-items: start;
}

.cart-item__img-wrap {
  background: #F5F1E8;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  overflow: hidden;
  border: 1px solid #E7DECD;
}

.cart-item__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cart-item__name {
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #1C3A4F;
}

.cart-item__marca {
  font-family: var(--font-secondary);
  font-size: 0.68rem;
  letter-spacing: 1px;
  color: #888;
  text-transform: uppercase;
}

.cart-item__tipo {
  font-family: var(--font-secondary);
  font-size: 0.65rem;
  color: #aaa;
  letter-spacing: 0.5px;
}

.cart-item__price {
  font-family: var(--font-secondary);
  font-size: 0.78rem;
  color: #777;
  margin-top: 0.4rem;
}

.cart-item__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.cart-item__subtotal {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  color: #1C3A4F;
}

.cart-item__remove {
  font-family: var(--font-secondary);
  font-size: 0.62rem;
  font-weight: 400;
  color: #bbb;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.25s;
}

.cart-item__remove:hover {
  color: #1C3A4F;
}

/* Qty control */
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid #DBCFBB;
}

.qty-control__btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #1C3A4F;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 50%;
}

.qty-control__btn:hover {
  background: #ECE4D5;
}

.qty-control__value {
  width: 36px;
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  color: #1C3A4F;
}

/* Order Summary */
.order-summary {
  background: #F5F1E8;
  padding: 1rem;
  position: sticky;
  top: 100px;
  border: 1px solid #E7DECD;
}

.order-summary__title {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 3px;
  color: #1C3A4F;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #E0D5C0;
}

.order-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  color: #777;
}

.order-summary__divider {
  height: 1px;
  background: #E0D5C0;
  margin: 0.5rem 0;
}

.order-summary__row--total {
  font-weight: 600;
  color: #1C3A4F;
  font-size: 0.95rem;
  padding-top: 0.75rem;
}

.order-summary__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.order-summary__btn-primary {
  display: block;
  text-align: center;
  padding: 0.9rem 1rem;
  background: #1C3A4F;
  color: #EFE9DC;
  font-family: var(--font-secondary);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-decoration: none;
  transition: background 0.3s;
  border-radius: 999px;
}

.order-summary__btn-primary:hover {
  background: #26506B;
}

.order-summary__btn-primary.disabled {
  pointer-events: none;
  opacity: 0.4;
}

.order-summary__btn-secondary {
  display: block;
  text-align: center;
  padding: 0.9rem 1rem;
  background: transparent;
  color: #1C3A4F;
  border: 1px solid #1C3A4F;
  font-family: var(--font-secondary);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  border-radius: 999px;
}

.order-summary__btn-secondary:hover {
  background: #1C3A4F;
  color: #EFE9DC;
}

.order-summary__btn-vaciar {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0.5rem;
  background: none;
  border: none;
  font-family: var(--font-secondary);
  font-size: 0.62rem;
  color: #bbb;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s;
  border-radius: 999px;
}

.order-summary__btn-vaciar:hover {
  color: #1C3A4F;
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.page-checkout {
  background: #ffffff;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem 5rem;
  align-items: start;
}

/* Progress */
.checkout-progress {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-secondary);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ccc;
}

.progress-step.active {
  color: #1C3A4F;
  font-weight: 500;
}

.progress-step.done {
  color: #C9BBA6;
}

.progress-step__num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  flex-shrink: 0;
}

.progress-divider {
  flex: 1;
  height: 1px;
  background: #E7DECD;
  margin: 0 1rem;
  max-width: 50px;
}

/* Form */
.checkout-form__title {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1C3A4F;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #E7DECD;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-secondary);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
}

.form-input {
  padding: 0.65rem 0;
  border: none;
  border-bottom: 1px solid #DBCFBB;
  background: transparent;
  font-family: var(--font-secondary);
  font-size: 0.88rem;
  font-weight: 300;
  color: #1C3A4F;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
}

.form-input::placeholder {
  color: #ccc;
}

.form-input:focus {
  border-color: #1C3A4F;
}

.form-input.error {
  border-color: #c07b7b;
}

.form-error {
  font-family: var(--font-secondary);
  font-size: 0.62rem;
  color: #c07b7b;
  letter-spacing: 0.3px;
}

.checkout-submit {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-submit__btn {
  padding: 0.95rem 2rem;
  background: #1C3A4F;
  color: #EFE9DC;
  border: none;
  font-family: var(--font-secondary);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
  border-radius: 999px;
}

.checkout-submit__btn:hover {
  background: #26506B;
}

.checkout-submit__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.checkout-submit__back {
  font-family: var(--font-secondary);
  font-size: 0.7rem;
  color: #aaa;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.25s;
}

.checkout-submit__back:hover {
  color: #1C3A4F;
}

.mp-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-secondary);
  font-size: 0.68rem;
  font-weight: 300;
  color: #aaa;
  letter-spacing: 0.3px;
}

.mp-badge svg {
  width: 16px;
  height: 16px;
  opacity: 0.4;
}

/* Order summary item name in checkout */
.order-summary__item-name {
  font-family: var(--font-secondary);
  font-size: 0.82rem;
  color: #1C3A4F;
}

.order-summary__item-qty {
  font-size: 0.72rem;
  color: #aaa;
}

/* Resultado del pago */
.checkout-resultado {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
}

.checkout-resultado__box {
  text-align: center;
  max-width: 480px;
}

.checkout-resultado__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.checkout-resultado__title {
  font-family: var(--font-primary);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #1C3A4F;
  margin-bottom: 1rem;
}

.checkout-resultado__msg {
  font-family: var(--font-secondary);
  font-size: 0.82rem;
  font-weight: 300;
  color: #777;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.checkout-resultado__pedido {
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  color: #aaa;
  letter-spacing: 1px;
}

/* ============================================================
   NOSOTROS PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.about-img-placeholder {
  aspect-ratio: 3/4;
  background-color: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-placeholder span {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 300;
  color: var(--negro);
  opacity: 0.3;
  letter-spacing: 0.2em;
}

.about-text__label {
  font-family: var(--font-secondary);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1rem;
}

.about-text__title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--crema);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-text__body {
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--plata);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.stat__number {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--plata);
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.value-card {
  padding: 2.5rem 1.5rem;
  background-color: rgba(214, 198, 173, 0.08);
}

.value-card__icon {
  font-size: 1.6rem;
  color: var(--champagne);
  margin-bottom: 1rem;
}

.value-card__title {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--crema);
  margin-bottom: 0.75rem;
}

.value-card__text {
  font-family: var(--font-secondary);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--plata);
  line-height: 1.7;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3.5rem 2rem 5rem;
  align-items: start;
}

.contact-form__title {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 300;
  color: var(--negro);
  margin-bottom: 2rem;
  margin-top: 3rem;
}

.contact-info__title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--negro);
  margin-bottom: 1.5rem;
}

.contact-info__item {
  margin-bottom: 1.25rem;
}

.contact-info__label {
  font-family: var(--font-secondary);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.3rem;
}

.contact-info__value {
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--negro);
}

.contact-info__value a {
  color: var(--negro);
  transition: color var(--transition);
}

.contact-info__value a:hover {
  color: var(--taupe);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 4rem;
}

.pagination__btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--taupe);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.pagination__btn:hover,
.pagination__btn.active {
  border-color: var(--negro);
  color: var(--negro);
}

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.producto-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  align-items: start;
}

.producto-detail__img {
  width: 100%;
  aspect-ratio: 1/1.1;
  object-fit: cover;
}

.producto-detail__category {
  font-family: var(--font-secondary);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.75rem;
}

.producto-detail__name {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--negro);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.producto-detail__price {
  font-family: var(--font-secondary);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--negro);
  margin-bottom: 2rem;
}

.producto-detail__nota-label {
  font-family: var(--font-secondary);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.5rem;
}

.producto-detail__nota {
  font-family: var(--font-secondary);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--taupe);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.producto-detail__desc {
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--negro);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.producto-detail__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Productos page overrides (before media queries so they can be overridden) */
body.page-productos {
  background-color: #ffffff;
}

body.page-productos .section {
  padding: 2rem 2rem;
}

/* ============================================================
   RESPONSIVE - TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .mas-vendidos__grid        { grid-template-columns: repeat(2, 1fr); }
  .productos-grid-nuve       { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .cart-layout,
  .checkout-layout           { grid-template-columns: 1fr; }
  .order-summary             { position: static; }
  .about-grid                { grid-template-columns: 1fr; gap: 3rem; }
  .footer__top               { grid-template-columns: 1fr 1fr; }
  .pillars                   { gap: 2rem; }
  .contact-layout            { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 2rem; }
}

/* ============================================================
   RESPONSIVE - LARGE TABLET (≤ 992px)
   ============================================================ */
@media (max-width: 992px) {
  .navbar                { padding: 0 30px; }
  .navbar__nav           { gap: 36px; }
  .navbar__link          { font-size: 12px; letter-spacing: 2px; }
  .mas-vendidos__grid    { grid-template-columns: repeat(2, 1fr); }
  .productos-grid-nuve   { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .nuve-card__img-wrap   { height: 195px; }
  .cart-layout,
  .checkout-layout       { grid-template-columns: 1fr 320px; }
  .colecciones-panel     { padding: 2rem 2.5rem; }
}

/* ============================================================
   RESPONSIVE - MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* ---- Navbar ---- */
  .navbar                { height: 60px; padding: 0 1rem; }
  .navbar__logo-img      { height: 52px; }
  .navbar__cart          { font-size: 18px; min-width: 44px; min-height: 44px; }
  .navbar__nav           { display: none; }
  .navbar__icon-link     { display: none; }
  .navbar__hamburger     { display: flex; }
  .mobile-menu           { top: 60px; left: 0; right: 0; width: 100%; }

  /* ---- Hero slider ---- */
  .hero-slider           { height: 55vh; }
  .slider__slide img     { object-position: center center; }


  /* ---- Colecciones ---- */
  .colecciones-panels    { flex-direction: column; }
  .colecciones-panel     { padding: 3rem 1.5rem; min-height: 160px; }
  .colecciones-panel__title { font-size: 1.4rem; }

  /* ---- Más Vendidos ---- */
  .mv-header             { flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
  .mas-vendidos__section { padding: 1.5rem 0 1.5rem 1rem; overflow: hidden; }
  .mas-vendidos__grid    { display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 0.75rem; padding-right: 1rem; padding-bottom: 0.5rem; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; max-width: none; margin: 0; }
  .mas-vendidos__grid::-webkit-scrollbar { display: none; }
  .mas-vendidos__grid > * { min-width: 72vw; max-width: 72vw; flex-shrink: 0; scroll-snap-align: start; }
  .mv-card__img-wrap     { height: 200px; }

  /* ---- Productos ---- */
  body.page-productos .section  { padding: 1rem; }
  .productos-grid-nuve          { grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
  .filter-bar                   { flex-direction: column; align-items: stretch; padding: 0; gap: 0.6rem; }
  .filter-bar__search           { min-width: unset; width: 100%; padding: 0.75rem 0.75rem; font-size: 0.8rem; }
  .filter-bar__select           { min-width: unset; width: 100%; padding: 0.75rem 0.75rem; font-size: 0.8rem; }
  .nuve-card__img-wrap          { height: 185px; }
  .nuve-card__body              { padding: 0.8rem 0.85rem 0.9rem; gap: 3px; }
  .nuve-card__nombre            { font-size: 0.85rem; }
  .nuve-card__marca             { font-size: 0.58rem; }
  .nuve-card__precio            { font-size: 0.88rem; }
  .nuve-card__btn               { font-size: 0.58rem; letter-spacing: 1.5px; padding: 0.65rem; }

  /* ---- Cart / Checkout ---- */
  .cart-page-header         { padding: 1.25rem 1rem 0; }
  .cart-page-title          { font-size: 1rem; letter-spacing: 3px; padding-bottom: 0.75rem; }
  .cart-layout,
  .checkout-layout          { padding: 1.25rem 1rem 3rem; gap: 1.25rem; grid-template-columns: 1fr; }
  .cart-empty               { padding: 2.5rem 1rem; }
  .cart-empty__title        { font-size: 1.1rem; letter-spacing: 2px; }

  /* item: imagen + info lado a lado, qty+subtotal+remove abajo */
  .cart-item                { grid-template-columns: 80px 1fr; gap: 0.875rem; padding: 1.1rem 0; align-items: start; }
  .cart-item__img-wrap      { height: 90px; }
  .cart-item__name          { font-size: 0.85rem; }
  .cart-item__marca         { font-size: 0.62rem; }
  .cart-item__tipo          { font-size: 0.6rem; }
  .cart-item__price         { font-size: 0.72rem; }

  /* fila inferior: qty | precio | eliminar */
  .cart-item__right         {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.6rem;
    border-top: 1px solid #ECE4D5;
    gap: 0.5rem;
  }
  .cart-item__subtotal      { font-size: 0.85rem; font-weight: 600; }
  .cart-item__remove        { font-size: 0.58rem; letter-spacing: 0.5px; }
  .qty-control              { border-color: #E7DECD; }
  .qty-control__btn         { width: 32px; height: 32px; font-size: 0.9rem; }
  .qty-control__value       { width: 28px; font-size: 0.78rem; }

  /* order summary */
  .order-summary            { padding: 1.25rem 1rem; }
  .order-summary__title     { font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 1rem; padding-bottom: 0.75rem; }
  .order-summary__row       { font-size: 0.75rem; padding: 0.5rem 0; }
  .order-summary__row--total { font-size: 0.88rem; }
  .order-summary__actions   { margin-top: 1rem; gap: 0.5rem; }
  .order-summary__btn-primary,
  .order-summary__btn-secondary { padding: 0.8rem 1rem; font-size: 0.62rem; letter-spacing: 2px; }

  /* ---- Checkout form ---- */
  .checkout-progress     { margin-bottom: 1rem; }
  .checkout-form__title  { font-size: 1rem; letter-spacing: 2px; }
  .form-grid             { grid-template-columns: 1fr; gap: 1rem; }
  .form-group--full      { grid-column: 1; }

  /* ---- Newsletter ---- */
  .newsletter            { padding: 2rem 1.25rem; }
  .newsletter__title     { font-size: 1rem; }
  .newsletter__form      { flex-direction: column; }
  .newsletter__input     { border-right: 1px solid var(--negro); }

  /* ---- Footer ---- */
  .footer                { padding: 0 0 0.5rem; }
  .footer__top-wrap      { padding: 2rem 1rem 1.5rem; }
  .footer__top           { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__logo-img      { height: 130px; margin: 0 auto; }
  .footer__bottom        { padding-top: 1rem; }
  .footer__heading       { margin-bottom: 0.75rem; }

  /* ---- Modal ---- */
  .prod-modal__box       { width: 100%; }
  .prod-modal__img-wrap  { height: 200px; padding: 1.25rem 1.5rem; }
  .prod-modal__info      { padding: 1.25rem 1.5rem 1.75rem; }
  .prod-modal__nombre    { font-size: 1.15rem; }
  .prod-modal__precio    { font-size: 1rem; }

  /* ---- Section generic ---- */
  .section               { padding: 2rem 1rem; }
}

/* ============================================================
   RESPONSIVE - SMALL TABLET / LARGE PHONE (≤ 576px)
   ============================================================ */
@media (max-width: 576px) {
  .hero-slider           { height: 52vh; }
  .colecciones-panel     { padding: 2.5rem 1.25rem; min-height: 150px; }
  .mas-vendidos__grid > * { min-width: 75vw; max-width: 75vw; }
  .cart-item             { grid-template-columns: 80px 1fr; gap: 0.75rem; }
  .cart-item__img-wrap   { height: 90px; }
  .contact-layout        { padding: 2rem 1rem; gap: 2rem; }
  .checkout-resultado    { padding: 4rem 1.25rem 3rem; }
  .prod-modal__img-wrap  { height: 185px; padding: 1.1rem 1.25rem; }
  .prod-modal__info      { padding: 1.1rem 1.25rem 1.5rem; gap: 0.25rem; }
  .prod-modal__nombre    { font-size: 1.1rem; }
  .footer__top           { gap: 1.25rem; }
  .toast-container       { right: 0.75rem; left: 0.75rem; }
  .toast                 { max-width: 100%; }
}

/* ============================================================
   RESPONSIVE - SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-slider           { height: 50vh; }
  .colecciones-panel     { min-height: 130px; padding: 2rem 1rem; }
  .mv-card__img-wrap     { height: 180px; }
  .newsletter__title     { font-size: 0.95rem; }
  .newsletter__subtitle  { font-size: 0.68rem; }
}

/* ============================================================
   RESPONSIVE - EXTRA SMALL (≤ 390px)
   ============================================================ */
@media (max-width: 390px) {
  .navbar                { padding: 0 0.75rem; }
  .navbar__logo-img      { height: 44px; }
  .hero-slider           { height: 45vh; }
  .colecciones-panel     { min-height: 115px; padding: 1.75rem 0.875rem; }
  .colecciones-panel__title { font-size: 1.2rem; }
  .mas-vendidos__grid > * { min-width: 80vw; max-width: 80vw; }
  .mv-card__img-wrap     { height: 160px; }
  .prod-modal__img-wrap  { height: 160px; padding: 1rem; }
  .prod-modal__nombre    { font-size: 1rem; }
  .prod-modal__precio    { font-size: 0.95rem; }
  .prod-modal__info      { padding: 1rem 1.1rem 1.4rem; }
  .cart-page-title       { font-size: 0.9rem; letter-spacing: 2px; }
  .cart-item             { grid-template-columns: 68px 1fr; gap: 0.6rem; padding: 0.9rem 0; }
  .cart-item__img-wrap   { height: 74px; }
  .cart-item__name       { font-size: 0.78rem; }
  .cart-item__price      { font-size: 0.65rem; }
  .qty-control__btn      { width: 28px; height: 28px; font-size: 0.85rem; }
  .qty-control__value    { width: 24px; font-size: 0.72rem; }
  .cart-item__subtotal   { font-size: 0.8rem; }
  .order-summary         { padding: 0.875rem 0.875rem; }
  .order-summary__btn-primary,
  .order-summary__btn-secondary { padding: 0.75rem; font-size: 0.58rem; }
  .checkout-form__title  { font-size: 0.9rem; }
  .form-grid             { gap: 0.85rem; }
  .newsletter__form      { gap: 0; }
  .newsletter__input     { padding: 0.75rem 1rem; font-size: 0.75rem; }
  .newsletter__btn       { padding: 0.75rem 1rem; font-size: 0.62rem; }
  .footer__logo-img      { height: 110px; }
  .footer__nav a         { font-size: 0.72rem; }
}





/* Mobile: que los 4 botones (TODOS/FEMENINO/MASCULINO/TESTERS) entren
   en una sola fila sin desbordar. flex:1 los reparte por igual.
   (Va DESPUÉS de la base a propósito: con la misma especificidad gana
   la regla de más abajo; si fuera arriba, la base la pisaría.) */
@media (max-width: 768px) {
}

@media (max-width: 380px) {
}
/* ============================================================
   MÁS VENDIDOS (homepage)
   ============================================================ */
.mas-vendidos__section {
  background: #ffffff;
  padding: 2rem 2rem;
}

.mv-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.mv-header__title {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 4px;
  color: #1C3A4F;
  margin: 0;
}

.mv-header__link {
  font-family: var(--font-secondary);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: #555;
  text-decoration: none;
  border-bottom: 1px solid #999;
  padding-bottom: 2px;
}

.mv-header__link:hover {
  color: #1C3A4F;
  border-bottom-color: #1C3A4F;
}

.mas-vendidos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mv-card {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #E7DECD;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
  position: relative;
  cursor: pointer;
}

.mv-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
}

.mv-card__img-wrap {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  overflow: hidden;
}

.mv-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ============================================================
   PRODUCTOS GRID NÜVE
   ============================================================ */
.productos-grid-nuve {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nuve-card {
  background: var(--blanco);
  border: 1px solid var(--arena);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.3s;
}

.nuve-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
}

.nuve-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #E0D5C0;
  color: #8B7966;
  font-family: var(--font-secondary);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 3px 7px;
  border-radius: 2px;
  z-index: 1;
}

.nuve-card__img-wrap {
  background: var(--blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 210px;
  overflow: hidden;
}

.nuve-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.nuve-card:hover .nuve-card__img-wrap img {
  transform: scale(1.04);
}

/* ============================================================
   SLIDER DE IMÁGENES EN CARDS (flechas a los costados)
   ============================================================ */
.card-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.card-slider__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.9s ease-in-out;
}

.card-slider__img {
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1C3A4F;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.card-slider:hover .card-slider__arrow {
  opacity: 1;
}

.card-slider__arrow:hover {
  background: #132836;
}

.card-slider__arrow--prev { left: 6px; }
.card-slider__arrow--next { right: 6px; }

/* En táctil no hay hover: dejamos las flechas siempre visibles */
@media (hover: none), (max-width: 768px) {
  .card-slider__arrow { opacity: 0.9; }
}

.nuve-card__body {
  padding: 0.85rem 0.9rem 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.nuve-card__nombre {
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 400;
  color: #1C3A4F;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.nuve-card__marca {
  font-family: var(--font-secondary);
  font-size: 0.6rem;
  color: #A66B3D;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nuve-card__tipo {
  font-family: var(--font-secondary);
  font-size: 0.6rem;
  color: #bbb;
  letter-spacing: 0.3px;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nuve-card__precio {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  color: #1C3A4F;
  margin-top: auto;
  padding-top: 0.4rem;
  margin-bottom: 0.5rem;
}

.nuve-card__btn {
  width: 100%;
  padding: 0.75rem;
  background: var(--bosque);
  color: var(--crema);
  /* Borde a la vista y puntas ovaladas */
  border: 1px solid var(--bosque);
  border-radius: 999px;
  font-family: var(--font-secondary);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.3s;
  text-transform: uppercase;
}

.nuve-card__btn:hover {
  background: transparent;
  color: var(--bosque);
}

/* ============================================================
   TESTER (¿Qué es un tester?)
   ============================================================ */
.tester {
  background-color: var(--negro);
  color: var(--crema);
  padding-top: 7%;
  padding-bottom: 2%;
  text-align: center;
}

.tester__title {
  font-family: var(--font-primary);
  font-variant: small-caps;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--crema);
  margin-top: 3rem;
}

.tester__text {
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 10px;
  line-height: 1.9;
  color: var(--taupe);
  margin: 0;
  padding-left: 10px;
  padding-right: 10px;
}

.tester__text strong {
  font-weight: 500;
  color: var(--crema);
}

/* ============================================================
   RESPONSIVE GRILLA DE PRODUCTOS
   (va DESPUÉS de los estilos base a propósito: en CSS, con la
   misma especificidad, gana la regla que aparece más abajo. Si
   estas reglas se pusieran arriba, la base repeat(4,1fr) las
   pisaría y el grid quedaría siempre en 4 columnas.)
   ============================================================ */

/* Tablet landscape → 3 columnas */
@media (max-width: 1024px) {
  .productos-grid-nuve { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .nuve-card__img-wrap { height: 200px; }
}

/* Tablet portrait → 2 columnas */
@media (max-width: 768px) {
  .productos-grid-nuve { grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
  .nuve-card__img-wrap { height: 220px; }
  .nuve-card__nombre   { font-size: 0.85rem; }
  .nuve-card__marca    { font-size: 0.58rem; }
  .nuve-card__precio   { font-size: 0.88rem; }
  .nuve-card__btn      { font-size: 0.58rem; letter-spacing: 1.5px; padding: 0.65rem; }
}

/* Celular → una card debajo de la otra (lista horizontal compacta) */
@media (max-width: 576px) {
  .productos-grid-nuve  { grid-template-columns: 1fr; gap: 0.75rem; }
  .nuve-card            { flex-direction: row; align-items: stretch; }
  .nuve-card__img-wrap  { width: 38%; min-width: 130px; max-width: 150px; height: auto; min-height: 160px; border-right: 1px solid #ECE4D5; flex-shrink: 0; }
  .nuve-card__body      { padding: 0.85rem 0.95rem; gap: 4px; justify-content: center; }
  .nuve-card__nombre    { font-size: 0.9rem; }
  .nuve-card__marca     { font-size: 0.6rem; }
  .nuve-card__tipo      { display: block; white-space: normal; overflow: visible; }
  .nuve-card__precio    { margin-top: 0.15rem; padding-top: 0; margin-bottom: 0.55rem; font-size: 0.95rem; }
  .nuve-card__btn       { font-size: 0.58rem; letter-spacing: 1.5px; padding: 0.6rem; }
  /* flechas del slider más chicas para la imagen reducida */
  .card-slider__arrow       { width: 24px; height: 24px; font-size: 0.95rem; }
  .card-slider__arrow--prev { left: 4px; }
  .card-slider__arrow--next { right: 4px; }
}

/* Celular chico */
@media (max-width: 480px) {
  .nuve-card__img-wrap { width: 36%; min-width: 118px; max-width: 138px; min-height: 146px; }
  .nuve-card__body     { padding: 0.75rem 0.8rem; }
  .nuve-card__nombre   { font-size: 0.85rem; }
  .nuve-card__precio   { font-size: 0.9rem; }
  .tester__title {margin-top: 40px;}
}

/* Celular extra chico */
@media (max-width: 390px) {
  .nuve-card__img-wrap { width: 35%; min-width: 106px; max-width: 126px; min-height: 134px; }
  .nuve-card__body     { padding: 0.65rem 0.7rem; }
  .nuve-card__nombre   { font-size: 0.8rem; }
  .nuve-card__tipo     { font-size: 0.55rem; }
  .nuve-card__precio   { font-size: 0.85rem; margin-bottom: 0.45rem; }
  .nuve-card__btn      { font-size: 0.54rem; padding: 0.55rem; letter-spacing: 1px; }
}

/* ============================================================
   CARDS DE PERFUME EN MOBILE — mismo diseño en home (MÁS
   VENDIDOS) y catálogos (femeninos, masculinos, testers).
   Todos esos grids usan .productos-grid-nuve, así que las
   reglas aplican a los tres por igual: 1 card por fila,
   centrada, layout vertical (imagen arriba que llena el
   recuadro, datos abajo).
   (Mayor especificidad → pisa las reglas genéricas de .nuve-card.)
   ============================================================ */
@media (max-width: 768px) {
  /* padding simétrico y sin recorte de la sección del home */
  .mas-vendidos__section { padding: 1.5rem 1rem; overflow: visible; }

  /* una card por fila, centrada */
  .productos-grid-nuve {
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-items: center;
  }

  /* card vertical (imagen arriba, datos abajo), un poco más angosta */
  .productos-grid-nuve .nuve-card {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 300px;
  }
  /* imagen un poco más ancha que alta, para una card no tan grande */
  .productos-grid-nuve .nuve-card__img-wrap {
    width: 100%;
    min-width: 0;
    max-width: none;
    height: auto;
    aspect-ratio: 5 / 4;
    min-height: 0;
    border-right: none;
  }
  /* la imagen llena todo el recuadro, sin margen blanco */
  .productos-grid-nuve .nuve-card__img-wrap img,
  .productos-grid-nuve .card-slider,
  .productos-grid-nuve .card-slider__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* datos debajo de la imagen, alineados a la izquierda */
  .productos-grid-nuve .nuve-card__body {
    padding: 1rem 1.1rem 1.2rem;
    text-align: left;
    align-items: flex-start;
  }
  .productos-grid-nuve .nuve-card__tipo {
    white-space: normal;
    overflow: visible;
  }
}

/* ============================================================
   MODAL DETALLE PRODUCTO
   ============================================================ */
.prod-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  justify-content: flex-end;
}

.prod-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(2px);
}

.prod-modal__box {
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
  width: 380px;
  max-width: 100%;
  height: 100%;
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,0.2);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
}

.prod-modal__box.open {
  transform: translateX(0);
}

.prod-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 1rem;
  color: #aaa;
  cursor: pointer;
  z-index: 1;
  transition: color 0.2s;
}

.prod-modal__close:hover { color: #1C3A4F; }

.prod-modal__img-wrap {
  position: relative;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 2rem;
  height: 240px;
  flex-shrink: 0;
  border-bottom: 1px solid #E7DECD;
}

.prod-modal__img-wrap img {
  max-height: 190px;
  max-width: 100%;
  object-fit: contain;
}

.prod-modal__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1C3A4F;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.prod-modal__arrow:hover { background: #132836; }
.prod-modal__arrow--prev { left: 10px; }
.prod-modal__arrow--next { right: 10px; }

.prod-modal__info {
  padding: 1.4rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.prod-modal__marca {
  font-family: var(--font-secondary);
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: #A66B3D;
  text-transform: uppercase;
  margin: 0;
}

.prod-modal__nombre {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  font-weight: 400;
  color: #1C3A4F;
  margin: 0;
  line-height: 1.2;
}

.prod-modal__tipo {
  font-family: var(--font-secondary);
  font-size: 0.65rem;
  color: #aaa;
  letter-spacing: 0.8px;
  margin: 0;
}

.prod-modal__desc {
  font-family: var(--font-secondary);
  font-size: 0.76rem;
  color: #666;
  line-height: 1.6;
  margin: 0.4rem 0 0.6rem;
}

.prod-modal__precio-wrap {
  margin: 0.3rem 0;
  padding-top: 0.5rem;
  border-top: 1px solid #ECE4D5;
}

.prod-modal__precio {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  font-weight: 600;
  color: #1C3A4F;
}

.prod-modal__qty-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.4rem 0 0.9rem;
}

.prod-modal__qty-wrap button {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  background: none;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 2px;
  color: #1C3A4F;
  transition: background 0.2s;
}

.prod-modal__qty-wrap button:hover { background: #ECE4D5; }

.prod-modal__qty-wrap span {
  font-family: var(--font-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
}

.prod-modal__btn {
  width: 100%;
  padding: 0.9rem;
  background: var(--bosque);
  color: var(--crema);
  border: 1px solid var(--bosque);
  border-radius: 999px;
  font-family: var(--font-secondary);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: auto;
}

.prod-modal__btn:hover { background: transparent; color: var(--bosque); }

/* ============================================================
   LOGO — neon blend para fondos oscuros
   ============================================================ */
.navbar__logo-img {
  mix-blend-mode: screen;
}









/* ============================================================
   KABODHI — HEADER CON DOMO CURVO + HERO
   ============================================================ */
:root {
  --nav-h: 64px;      /* alto de la barra (mas angosta) */
  --nav-arch: 44px;   /* profundidad del domo curvo (puntas mas ovaladas) */
}

/* ---- Barra ---- */
.navbar {
  background: var(--crema);
  border-bottom: none;
  height: var(--nav-h);
  min-height: 0;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  overflow: visible;
}
.navbar::before { display: none; }

/* ---- Domo curvo bajo la barra ---- */
.navbar::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: var(--nav-arch);
  background: var(--crema);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  box-shadow: 0 14px 22px -16px rgba(28, 58, 79, 0.22);
  pointer-events: none;
}
.navbar.scrolled { box-shadow: none; }
.navbar.scrolled::after { box-shadow: 0 16px 26px -14px rgba(28, 58, 79, 0.30); }

/* ---- Logo: wordmark + adorno ---- */
.navbar__logo-wrap { justify-self: start; }
.navbar__logo-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
/* Circulo emblema (fondo transparente) */
.navbar__logo-circle {
  height: 52px;
  width: auto;
  display: block;
}
/* Titulo KABODHI + adorno (viene con fondo blanco: multiply lo funde con el crema) */
.navbar__logo-name {
  height: 34px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.navbar__logo-text {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--bosque);
  text-transform: uppercase;
  line-height: 1;
  padding-left: 0.4em;
  transition: color var(--transition);
}
.navbar__logo-link:hover .navbar__logo-text { color: var(--terracota); }

.navbar__logo-flourish {
  position: relative;
  width: 78px;
  height: 7px;
  display: block;
}
.navbar__logo-flourish::before {
  content: "";
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--terracota);
  opacity: 0.85;
}
.navbar__logo-flourish::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terracota);
  transform: translate(-50%, -50%);
}

/* ---- Nav (centrado) ---- */
.navbar__nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.8vw, 2.75rem);
  margin: 0;
}
.navbar__link {
  color: var(--bosque);
  font-family: var(--font-secondary);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.navbar__link:hover,
.navbar__link.active { color: var(--terracota); }
.navbar__link::after { bottom: -6px; background: var(--terracota); }

/* ---- Iconos (derecha) ---- */
.navbar__icons {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.navbar__icon-btn {
  color: var(--bosque);
  font-size: 1.02rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  text-decoration: none;
  transition: color var(--transition);
}
.navbar__icon-btn:hover { color: var(--terracota); }
.navbar__cart {
  color: var(--bosque);
  font-size: 1.02rem;
  min-width: auto;
  min-height: auto;
}
.navbar__cart:hover { color: var(--terracota); }
.cart-badge {
  top: -7px; right: -9px;
  background: var(--terracota);
  border-color: var(--crema);
}

/* ---- Buscador desplegable ---- */
.navbar__search {
  position: absolute;
  top: 100%;
  right: clamp(1.25rem, 4vw, 3.5rem);
  margin-top: calc(var(--nav-arch) - 8px);
  background: var(--crema);
  border: 1px solid rgba(28, 58, 79, 0.16);
  padding: 0.55rem 0.85rem;
  display: none;
  z-index: 1001;
  box-shadow: var(--shadow-md);
}
.navbar__search.open { display: flex; }
.navbar__search input {
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  color: var(--bosque);
  width: 230px;
}
.navbar__search input::placeholder { color: var(--tierra); }

/* ---- Dropdown ---- */
.navbar__dropdown-menu {
  background: var(--crema);
  border: 1px solid rgba(28, 58, 79, 0.14);
  top: calc(100% + var(--nav-arch));
}
.navbar__dropdown-item { color: var(--bosque); }
.navbar__dropdown-item:hover { color: var(--terracota); background: var(--arena); }

/* ---- Hamburguesa + mobile menu ---- */
.navbar__hamburger span { background: var(--bosque); }
.mobile-menu {
  top: var(--nav-h);
  background: var(--crema);
  border-bottom: 1px solid rgba(28, 58, 79, 0.12);
}
.mobile-menu a {
  color: var(--bosque);
  border-bottom: 1px solid rgba(28, 58, 79, 0.08);
}
.mobile-menu a:hover { color: var(--terracota); }


/* ---- Offset global bajo el header fijo ---- */
body { padding-top: calc(var(--nav-h) + var(--nav-arch)); }

/* ============================================================
   HERO (home) — banner + boton COMPRAR
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 35 / 10;   /* calza con el banner (3.5:1) */
  margin-top: 0;
  background: var(--crema);
  overflow: hidden;
}
/* Difuminado: el banner se disuelve hacia el azul de la seccion de abajo */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 38%;
  background: linear-gradient(to top,
    rgb(35, 81, 99) 0%,
    rgba(35, 81, 99, 0.78) 20%,
    rgba(35, 81, 99, 0.4) 44%,
    rgba(35, 81, 99, 0.12) 70%,
    rgba(35, 81, 99, 0) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero__track {
  display: flex;
  height: 100%;
  transition: transform 0.9s ease-in-out;
}
.hero__slide {
  min-width: 100%;
  height: 100%;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;            /* la franja calza con la imagen: sin recorte */
  object-position: center;
  display: block;
  opacity: 1;                   /* 100% nitido */
}
/* Puntos del slider */
.hero__dots {
  position: absolute;
  bottom: 4.5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(28, 58, 79, 0.22);
  border: 1px solid rgba(28, 58, 79, 0.4);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), border-color var(--transition);
}
.hero__dot.active {
  background: var(--terracota);
  border-color: var(--terracota);
}
.hero__cta {
  z-index: 3;
  position: absolute;
  left: 50%;
  bottom: 11%;
  transform: translateX(-50%);
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.95);
  padding: 1rem 3.4rem;
  text-decoration: none;
  backdrop-filter: blur(0px);
  transition: backdrop-filter var(--transition);
}
/* Hover: solo se difumina el fondo detras del boton, sin cambiar colores */
.hero__cta:hover {
  backdrop-filter: blur(6px);
  color: #ffffff;
  background: transparent;
}

/* ---- Responsive header/hero ---- */
@media (max-width: 900px) {
  .navbar__nav { display: none; }
  .navbar { grid-template-columns: auto 1fr auto; }
  .navbar__hamburger { display: flex; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; --nav-arch: 26px; }
  .navbar { padding: 0 1rem; }
  .navbar__logo-circle { height: 38px; }
  .navbar__logo-name { height: 22px; }
  .navbar__logo-link { gap: 8px; }
  .navbar__icons { gap: 1rem; }
  .navbar__icon-btn.navbar__search-toggle { display: none; }
  .hero { height: 68vh; min-height: 440px; }
  .hero__img { object-position: center; }
  .hero__cta { padding: 0.85rem 2.6rem; font-size: 0.72rem; bottom: 8%; }
}


/* ============================================================
   KABODHI — SECCION BENEFICIOS (circulo radial Melena de Leon)
   ============================================================ */
.beneficios {
  position: relative;
  /* Usa SOLO el fragmento superior de la imagen azul (donde estan los hongos);
     debajo queda el azul solido. Cuando no exista la imagen, cae al gradiente. */
  background:
    linear-gradient(180deg, rgba(35, 81, 99, 0.5) 0%, rgba(22, 62, 79, 0.6) 100%),
    url(../images/bg-beneficios.png) center top / cover no-repeat,
    linear-gradient(180deg, #235163 0%, #163e4f 100%);
  color: var(--crema);
  padding: 5.5rem 2rem 6rem;
  overflow: hidden;
}
/* Empalme continuo con el difuminado del banner (mismo azul, sin linea) */
.beneficios::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to bottom, rgb(35, 81, 99) 0%, rgba(35, 81, 99, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
.beneficios__inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  min-height: 720px;
}

/* ---- Centro: anillo + melena + texto ---- */
.beneficios__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.beneficios__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: url(../images/circulo-beneficios.png) center / contain no-repeat;
  z-index: 0;
}
/* Las perlas ya vienen en la imagen del circulo: ocultamos los puntos CSS */
.ring-dot {
  display: none;
}
/* Posiciones exactas sobre la circunferencia (centro del punto sobre la linea) */
.ring-dot--1 { left: 14.6%; top: 14.6%; }  /* sup izq  (315°) */
.ring-dot--2 { left: 0%;    top: 50%; }    /* izq      (270°) */
.ring-dot--3 { left: 14.6%; top: 85.4%; }  /* inf izq  (225°) */
.ring-dot--4 { left: 85.4%; top: 14.6%; }  /* sup der  (45°)  */
.ring-dot--5 { left: 100%;  top: 50%; }    /* der      (90°)  */
.ring-dot--6 { left: 85.4%; top: 85.4%; }  /* inf der  (135°) */

.beneficios__mush {
  position: relative;
  z-index: 2;
  width: 220px;
  height: auto;
  display: block;
  margin-bottom: 0.4rem;
  /* el fondo oscuro de la foto se funde con el azul */
  mix-blend-mode: screen;
}
.beneficios__title {
  position: relative;
  z-index: 2;
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.12;
  color: var(--crema);
  margin: 0.2rem 0 0.7rem;
}
.beneficios__desc {
  position: relative;
  z-index: 2;
  font-family: var(--font-secondary);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245, 241, 232, 0.85);
  max-width: 300px;
}

/* ---- Beneficios (6 alrededor) ---- */
.benef {
  position: absolute;
  width: 200px;
  text-align: center;
  transform: translate(-50%, -50%);
}
.benef__icon {
  font-size: 1.5rem;
  color: var(--crema);
  margin-bottom: 0.65rem;
  opacity: 0.95;
}
.benef__icon-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: inline-block;
}
.benef__title {
  font-family: var(--font-secondary);   /* Lato */
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--crema);
  line-height: 1.2;
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.benef__desc {
  font-family: var(--font-secondary);
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(245, 241, 232, 0.8);
}
/* Posiciones radiales (centro de cada bloque) */
/* Alineados a las 6 perlas del circulo decorativo */
.benef--tl { left: 50%; top: 5%; }    /* arriba (perla superior) */
.benef--ml { left: 19%; top: 25%; }   /* arriba-izquierda */
.benef--tr { left: 81%; top: 25%; }   /* arriba-derecha */
.benef--bl { left: 16%; top: 69%; }   /* abajo-izquierda */
.benef--mr { left: 84%; top: 69%; }   /* abajo-derecha */
.benef--br { left: 50%; top: 93%; }   /* abajo (perla inferior) */

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .beneficios { padding: 4rem 1.25rem 4.5rem; }
  .beneficios__inner {
    min-height: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.75rem 1rem;
  }
  .beneficios__center {
    position: relative;
    left: auto; top: auto;
    transform: none;
    order: -1;
    flex-basis: 100%;
    width: auto;
    max-width: 360px;
    margin: 0 auto 1rem;
  }
  .benef {
    position: relative;
    left: auto !important;
    top: auto !important;
    transform: none;
    flex-basis: 42%;
    width: auto;
  }
}
@media (max-width: 480px) {
  .benef { flex-basis: 100%; }
  .beneficios__title { font-size: 1.8rem; }
}

/* ============================================================
   KABODHI — HONGOS PRINCIPALES (seccion alternada)
   ============================================================ */
.hongos {
  background: #ffffff;
  padding: 5rem 2rem 4rem;
}
.hongos__list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.hongo-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 3.5rem;
}
/* Las fotos ya vienen compuestas con el fondo (blob) — se muestran directas */
.hongo-row__media { position: relative; }
.hongo-row__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
.hongo-row--img-right .hongo-row__media { order: 2; }

.hongo-row--img-left  .hongo-row__body { text-align: right; }
.hongo-row--img-right .hongo-row__body { text-align: left; }

.hongo-row__icon {
  font-size: 1.6rem;
  color: var(--terracota);
  margin-bottom: 0.9rem;
}
.hongo-row__iconimg {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: inline-block;
}
.hongo-row__title {
  font-family: var(--font-primary);
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--bosque);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}
.hongo-row__sub {
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--terracota);
  margin-bottom: 1.2rem;
}
.hongo-row__desc {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--tierra);
  max-width: 420px;
  margin-bottom: 1.5rem;
}
.hongo-row--img-left  .hongo-row__desc { margin-left: auto; }
.hongo-row--img-right .hongo-row__desc { margin-right: auto; }
.hongo-row__cta {
  font-family: var(--font-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracota);
  text-decoration: none;
  border-bottom: 1px solid var(--terracota);
  padding-bottom: 3px;
  transition: opacity var(--transition);
}
.hongo-row__cta:hover { opacity: 0.6; }

/* Footer de la seccion */
.hongos__footer {
  text-align: center;
  margin-top: 5rem;
}
.hongos__footer-text {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bosque);
  margin-bottom: 1.4rem;
}
.hongos__footer-btn {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bosque);
  border: 1px solid var(--bosque);
  border-radius: 999px;
  padding: 0.95rem 2.6rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.hongos__footer-btn:hover { background: var(--bosque); color: var(--crema); }

@media (max-width: 760px) {
  .hongos { padding: 3.5rem 1.25rem; }
  .hongo-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .hongo-row--img-right .hongo-row__media { order: 0; }
  .hongo-row__body,
  .hongo-row--img-left .hongo-row__body,
  .hongo-row--img-right .hongo-row__body { text-align: center; }
  .hongo-row__desc,
  .hongo-row--img-left .hongo-row__desc,
  .hongo-row--img-right .hongo-row__desc { margin-left: auto; margin-right: auto; }
  .hongo-row__media { max-width: 340px; margin: 0 auto; width: 100%; }
}

/* ============================================================
   KABODHI — ANIMACIONES (entrada al cargar + reveal al scrollear)
   Se aplican siempre (por pedido). Para respetar accesibilidad,
   cambiar "@media all" por "@media (prefers-reduced-motion: no-preference)".
   ============================================================ */
@media all {
  /* Base: solo opacidad (no toca transform, asi no rompe elementos posicionados) */
  .reveal {
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
  }
  .reveal.is-visible { opacity: 1; }
  /* Modificadores de movimiento (solo para elementos en flujo normal) */
  .reveal--up    { transform: translateY(32px); }
  .reveal--left  { transform: translateX(-52px); }
  .reveal--right { transform: translateX(52px); }
  .reveal--scale { transform: scale(0.9); }
  .reveal--up.is-visible,
  .reveal--left.is-visible,
  .reveal--right.is-visible,
  .reveal--scale.is-visible { transform: none; }

  /* Escalonado */
  .reveal--d1 { transition-delay: 0.08s; }
  .reveal--d2 { transition-delay: 0.16s; }
  .reveal--d3 { transition-delay: 0.24s; }
  .reveal--d4 { transition-delay: 0.32s; }
  .reveal--d5 { transition-delay: 0.40s; }
  .reveal--d6 { transition-delay: 0.48s; }

  /* Carga inicial: navbar baja, hero aparece */
  @keyframes navDrop { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }
  @keyframes heroIn  { from { opacity: 0; } to { opacity: 1; } }
  .navbar { animation: navDrop 0.9s ease both; }
  .hero   { animation: heroIn 1.3s ease both; }
  /* Banner estatico (sin zoom) y 100% nitido */
}

/* ============================================================
   MOBILE — legibilidad y area tactil
   Va al final para pisar los ajustes progresivos de los
   breakpoints anteriores, que dejaban el CTA en 8.6px de
   fuente y 31px de alto. Referencia: 44px de lado minimo.
   ============================================================ */
@media (max-width: 768px) {
  /* CTA principal: se leia a 8.6px y no daba para tocar comodo */
  .nuve-card__btn,
  .productos-grid-nuve .nuve-card__btn {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    padding: 0.9rem 0.75rem;
    min-height: 46px;
    line-height: 1.2;
  }

  .prod-modal__btn {
    font-size: 0.72rem;
    padding: 1rem;
    min-height: 48px;
  }

  /* La card se quedaba en 300px con 343px disponibles */
  .productos-grid-nuve .nuve-card {
    max-width: 100%;
  }

  /* Iconos del navbar: median 16x14, el del carrito incluido */
  .navbar__icon-btn,
  .navbar__cart {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Links del footer: 18px de alto es poco para el dedo */
  .footer__nav a,
  .footer__contact-item {
    display: inline-block;
    padding: 0.45rem 0;
    min-height: 24px;
  }

  /* Buscador y orden, al minimo comodo */
  .filter-bar__search,
  .filter-bar__select {
    min-height: 46px;
    font-size: 0.85rem;
  }
}

/* ============================================================
   MOBILE — controles del carrito
   Son el flujo de compra: "Eliminar" median 11px de alto y los
   +/- 28px. Se llevan a un tamano tocable sin cambiar el diseno.
   ============================================================ */
@media (max-width: 768px) {
  .qty-control__btn {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
  }

  .cart-item__remove {
    font-size: 0.7rem;
    padding: 0.6rem 0.2rem;
    min-height: 36px;
  }

  .order-summary__btn-vaciar {
    min-height: 42px;
    font-size: 0.72rem;
  }

  /* Boton principal del resumen y del checkout */
  .order-summary__btn-primary,
  .checkout-submit__btn {
    min-height: 48px;
    font-size: 0.78rem;
  }
}

/* Inputs del checkout: quedaban en 39px de alto en mobile */
@media (max-width: 768px) {
  .form-input {
    padding: 0.9rem 0;
    font-size: 1rem;   /* 16px evita el zoom automatico de iOS al enfocar */
    min-height: 46px;
  }
}

/* ============================================================
   BOTONES — relieve suave (neumorfico)
   Gradiente claro + doble sombra: oscura abajo-derecha y luz
   arriba-izquierda. Al presionar, las sombras van hacia adentro
   para que el boton se "hunda".
   El texto va en azul de marca y no en el gris del ejemplo, que
   sobre blanco daba un contraste de ~1.6:1 (ilegible).
   ============================================================ */
.nuve-card__btn,
.prod-modal__btn,
.hongos__footer-btn,
.order-summary__btn-primary,
.checkout-submit__btn,
.cart-empty__btn {
  background: linear-gradient(145deg, #ffffff, #e8e8e8);
  color: var(--bosque);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow:
    5px 5px 12px rgba(28, 58, 79, 0.18),
    -5px -5px 12px rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: box-shadow 0.25s ease, transform 0.15s ease;
}

.nuve-card__btn:hover,
.prod-modal__btn:hover,
.hongos__footer-btn:hover,
.order-summary__btn-primary:hover,
.checkout-submit__btn:hover,
.cart-empty__btn:hover {
  background: linear-gradient(145deg, #ffffff, #e2e2e2);
  color: var(--bosque);
  box-shadow:
    3px 3px 8px rgba(28, 58, 79, 0.22),
    -3px -3px 8px rgba(255, 255, 255, 0.95);
}

/* Presionado: el relieve se invierte hacia adentro */
.nuve-card__btn:active,
.prod-modal__btn:active,
.hongos__footer-btn:active,
.order-summary__btn-primary:active,
.checkout-submit__btn:active,
.cart-empty__btn:active {
  box-shadow:
    inset 4px 4px 9px rgba(28, 58, 79, 0.20),
    inset -4px -4px 9px rgba(255, 255, 255, 0.9);
  transform: translateY(1px);
}

.nuve-card__btn--agotado,
.nuve-card__btn:disabled {
  box-shadow: none;
  background: #f0f0f0;
  color: #9a9a9a;
}

/* Mismo relieve en los controles redondos y en el boton secundario.
   "Vaciar carrito" queda como texto: es terciario y destructivo. */
.qty-control__btn,
.order-summary__btn-secondary {
  background: linear-gradient(145deg, #ffffff, #e8e8e8);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    3px 3px 7px rgba(28, 58, 79, 0.16),
    -3px -3px 7px rgba(255, 255, 255, 0.95);
  transition: box-shadow 0.25s ease;
}

.qty-control__btn:hover,
.order-summary__btn-secondary:hover {
  box-shadow:
    2px 2px 5px rgba(28, 58, 79, 0.2),
    -2px -2px 5px rgba(255, 255, 255, 0.95);
}

.qty-control__btn:active,
.order-summary__btn-secondary:active {
  box-shadow:
    inset 3px 3px 6px rgba(28, 58, 79, 0.18),
    inset -3px -3px 6px rgba(255, 255, 255, 0.9);
}

/* ============================================================
   MOBILE — home mas liviano
   ============================================================ */
@media (max-width: 768px) {
  /* El circulo no entra centrado con los beneficios alrededor: se pasa a
     dos columnas —circulo + melena a la izquierda, detalles apilados a
     la derecha— y cada detalle lleva su icono al lado, como los puntos
     del anillo en desktop. */
  .beneficios {
    padding: 3rem 1.1rem 3.5rem;
  }

  .beneficios__inner {
    min-height: 0;
    display: grid;
    grid-template-columns: 40% 1fr;
    align-items: center;
    gap: 0.55rem 0.9rem;
  }

  /* Columna izquierda: el circulo con la melena, a lo alto de las 6 filas */
  .beneficios__center {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    grid-column: 1;
    grid-row: 1 / span 6;
    align-self: center;
    padding: 0.5rem 0;
  }

  .beneficios__ring {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* Imagen achicada para que entre al lado de los textos */
  .beneficios__mush {
    width: 78%;
    max-width: 130px;
    margin: 0 auto 0.3rem;
  }

  .beneficios__title {
    font-size: 1.1rem;
    line-height: 1.15;
  }

  .beneficios__desc {
    font-size: 0.62rem;
    line-height: 1.45;
  }

  /* Columna derecha: un detalle por fila, icono al lado del texto */
  .benef {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: auto;
    grid-column: 2;
    display: grid;
    grid-template-columns: 26px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 0.5rem;
    row-gap: 0.1rem;
    text-align: left;
  }

  /* El icono ocupa las dos filas de la columna 1; titulo y bajada van
     en la columna 2. Sin esto el auto-placement mandaba la bajada a la
     fila 2 de la columna del icono, o sea a 26px de ancho. */
  .benef__icon {
    margin: 0;
    width: 26px;
    height: 26px;
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .benef__icon-img {
    width: 100%;
    height: auto;
  }

  .benef__title {
    grid-column: 2;
    grid-row: 1;
    font-size: 0.78rem;
    margin: 0;
    line-height: 1.2;
  }

  .benef__desc {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.66rem;
    margin: 0;
    line-height: 1.35;
    opacity: 0.85;
  }

  /* El hero estaba en 68vh con min-height 440px. Como los banners son
     3.5:1 (los "-mobile" son la misma imagen que los de desktop), a esa
     altura el object-fit: cover recortaba casi todo a los costados.
     Con 16/9 baja a ~211px en un celular de 375px y se ve mas banner. */
  .hero {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}
