/* ============================================================
   MONA MODDA — Stylesheet v2
   Paleta: blanco #FFFFFF / negro #1A1A1A / rosa pastel #F4C2C2
   BY NICOLE — Vestuario Femenino Premium
   Tipografía: Playfair Display + Inter
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500&display=swap');

/* === CSS VARIABLES === */
:root {
  --color-bg:          #FFFFFF;
  --color-bg-alt:      #1A1A1A;
  --color-text:        #1A1A1A;
  --color-text-inv:    #FFFFFF;
  --color-accent:      #F4C2C2;
  --color-accent-h:    #E8A8A8;
  --color-accent-soft: #FDF2F2;
  --color-muted:       #888888;
  --color-border:      #EFEFEF;
  --color-border-2:    #DDDDDD;
  --color-surface:     #FAFAFA;
  --color-surface-2:   #F5F5F5;
  --color-muted-inv:   #8A8A8A;

  /* Aliases */
  --bg:        var(--color-bg);
  --surface:   var(--color-surface);
  --surface-2: var(--color-surface-2);
  --border:    var(--color-border);
  --border-2:  var(--color-border-2);
  --text:      var(--color-text);
  --muted:     var(--color-muted);
  --white:     var(--color-text-inv);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-label:   'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;

  --ticker-h:  36px;
  --header-h:  64px;
  --offset:    calc(var(--ticker-h) + var(--header-h));

  --ease:  0.4s ease;
  --r:     4px;
  --max-w: 1240px;
  --gutter: clamp(1rem, 4vw, 2rem);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* === TICKER BANNER === */
.ticker {
  background: var(--color-bg-alt);
  height: var(--ticker-h);
  overflow: hidden;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
}
.ticker__track {
  display: flex;
  align-items: center;
  animation: ticker-scroll 28s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  display: inline-flex;
  align-items: center;
  padding: 0 1.75rem;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--color-text-inv);
  text-transform: uppercase;
}
.ticker__dot {
  width: 3px; height: 3px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === HEADER === */
.header {
  position: fixed;
  top: var(--ticker-h); left: 0; right: 0;
  z-index: 190;
  height: var(--header-h);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--ease), box-shadow var(--ease);
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.05);
}
.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.header__logo { display: flex; align-items: center; flex-shrink: 0; }
.header__logo-img { height: 50px; width: auto; display: block; }

.header__nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 768px) { .header__nav { display: flex; } }
.header__nav a {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: color var(--ease);
}
.header__nav a:hover,
.header__nav a.active { color: var(--color-text); }

.header__actions { display: flex; align-items: center; gap: 0.5rem; }

/* Cart button */
.cart-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  border: 1px solid var(--color-border-2);
  border-radius: var(--r);
  transition: all var(--ease);
}
.cart-btn:hover { border-color: var(--color-text); }
.cart-badge {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 18px; height: 18px;
  background: var(--color-bg-alt);
  color: white;
  font-size: 10px;
  font-weight: 500;
  border-radius: 50%;
  padding: 0 3px;
  line-height: 1;
}

/* Hamburger */
.hamburger { display: flex; flex-direction: column; gap: 5px; padding: 8px 6px; }
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--color-text);
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--offset); left: 0; right: 0; bottom: 0;
  background: var(--color-bg);
  z-index: 180;
  padding: 2.5rem var(--gutter);
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--ease), padding-left var(--ease);
}
.mobile-menu a:hover { color: var(--color-accent-h); padding-left: 0.5rem; }

/* === PAGE OFFSET === */
.page-top { padding-top: var(--offset); }

/* === CONTAINER & SECTION === */
.container { max-width: var(--max-w); margin: 0 auto; }
.section { padding: clamp(5rem, 10vw, 7.5rem) var(--gutter); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
/* Negro: outline negro → hover fill negro */
.btn--primary {
  background: var(--color-bg-alt);
  color: var(--color-text-inv);
  border-color: var(--color-bg-alt);
}
.btn--primary:hover {
  background: transparent;
  color: var(--color-bg-alt);
  border-color: var(--color-bg-alt);
}
/* Outline gris → hover negro */
.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border-2);
}
.btn--outline:hover {
  background: var(--color-bg-alt);
  color: var(--color-text-inv);
  border-color: var(--color-bg-alt);
}
/* Outline negro → hover fill negro */
.btn--dark {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}
.btn--dark:hover {
  background: var(--color-bg-alt);
  color: var(--color-text-inv);
  border-color: var(--color-bg-alt);
}
.btn--ghost {
  background: transparent;
  color: var(--color-muted);
  border-color: var(--color-border);
}
.btn--ghost:hover { color: var(--color-text); border-color: var(--color-border-2); }
.btn--lg { padding: 1.1rem 3rem; font-size: 12px; }
.btn--full { width: 100%; }
.btn--whatsapp {
  background: #25D366;
  color: white;
  border-color: #25D366;
  font-size: 13px;
  padding: 1.1rem 2rem;
}
.btn--whatsapp:hover { background: #1ebe57; border-color: #1ebe57; }
.btn--icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-bg-alt);
  color: var(--color-text-inv);
  border-radius: var(--r);
  transition: all var(--ease);
  padding: 0; flex-shrink: 0; border: none;
}
.btn--icon:hover { background: var(--color-accent); }
/* Rosa pastel con texto negro */
.btn--accent {
  background: var(--color-accent);
  color: var(--color-text);
  border-color: var(--color-accent);
}
.btn--accent:hover {
  background: var(--color-accent-h);
  border-color: var(--color-accent-h);
  color: var(--color-text);
}

/* === HERO — editorial 50/50 === */
.hero {
  min-height: calc(100vh - var(--offset));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--color-bg);
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.hero__left {
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 5vw, 4rem) clamp(4rem, 8vw, 7rem) clamp(2rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__accent-line {
  width: 48px;
  height: 1px;
  background: var(--color-accent);
  margin-bottom: 2rem;
}
.hero__eyebrow {
  display: block;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--color-muted);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}
.hero__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--color-muted);
  font-weight: 400;
  margin-bottom: 2.75rem;
  line-height: 1.6;
}
.hero__divider {
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  margin-bottom: 2.75rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.hero__note {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  color: var(--color-muted);
  letter-spacing: 0.1em;
}

.hero__right {
  position: relative;
  background: var(--color-accent-soft);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(320px, 55vw, 100%);
}
.hero__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: inherit;
}
.hero__monogram {
  font-family: var(--font-display);
  font-size: clamp(7rem, 15vw, 14rem);
  font-weight: 400;
  color: var(--color-accent);
  opacity: 0.35;
  user-select: none;
  letter-spacing: 0.05em;
  line-height: 1;
}
.hero__collection-tag {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  background: rgba(255,255,255,0.92);
  padding: 0.4rem 0.875rem;
  border: 1px solid var(--color-border-2);
}

/* Legacy hero classes no longer used in main layout */
.hero__bg, .hero__scanlines, .hero__content,
.hero__tagline, .hero__video, .hero__video-overlay,
.hero__title--serif, .hero__title-drako { display: none; }

/* === SECTION TITLES === */
.section-label {
  display: block;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--color-muted);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--color-accent);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--color-text);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: 1rem;
}

/* === PRODUCTS GRID === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

/* === PRODUCT CARD === */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.4s ease;
}
.product-card:hover {
  border-color: var(--color-accent);
}
.product-card.agotado { opacity: 0.55; }
.product-card__image-link { display: block; }
.product-card__image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-surface-2);
}
.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
@media (hover: hover) {
  .product-card:hover .product-card__image-wrap img {
    transform: scale(1.03);
  }
}
.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
@media (hover: hover) {
  .product-card:hover .product-card__overlay { opacity: 1; }
}
.product-card__overlay-text {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  border: 1px solid rgba(255,255,255,0.7);
  padding: 0.5rem 1.25rem;
}
.product-card__agotado-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.82);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-muted);
  text-transform: uppercase;
}
.product-card__info {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.product-card__cat {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--color-muted);
  text-transform: uppercase;
}
.product-card__name {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  color: var(--color-text);
}
.product-card__name a { transition: color var(--ease); }
.product-card__name a:hover { color: var(--color-muted); }
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
}
.product-card__price {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-muted);
  letter-spacing: 0.01em;
}

/* === FILTERS === */
.filters { display: flex; gap: 0.5rem; margin-bottom: 3rem; flex-wrap: wrap; }
.filter-btn {
  padding: 0.45rem 1.25rem;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--color-muted);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--ease);
}
.filter-btn:hover { color: var(--color-text); border-color: var(--color-border-2); }
.filter-btn.active {
  background: var(--color-bg-alt);
  color: var(--color-text-inv);
  border-color: var(--color-bg-alt);
}

/* === PAGE HERO (tienda/carrito/producto) === */
.page-hero {
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter);
  background: var(--color-bg-alt);
}
.page-hero__eyebrow {
  display: block;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text-inv);
}
.page-hero__sub {
  margin-top: 0.75rem;
  font-size: 13px;
  color: var(--color-muted-inv);
  letter-spacing: 0.04em;
}

/* === BREADCRUMB === */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  flex-wrap: wrap;
}
.breadcrumb a { transition: color var(--ease); }
.breadcrumb a:hover { color: var(--color-text); }
.breadcrumb__sep { opacity: 0.35; }

/* === PRODUCT DETAIL === */
.product-detail { display: grid; gap: 2rem; }
@media (min-width: 768px) {
  .product-detail { grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
}
@media (min-width: 1024px) {
  .product-detail { grid-template-columns: 54% 1fr; gap: 4.5rem; }
}
.product-gallery__main {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--r);
}
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.product-info__cat {
  display: block;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--color-accent-h);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.product-info__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 0.875rem;
}
.product-info__price {
  font-family: var(--font-label);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}
.product-info__desc {
  color: var(--color-muted);
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}
.product-info__label {
  display: block;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}
.product-info__agotado {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--r);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  text-transform: uppercase;
}

/* Size selector */
.sizes-selector { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.size-btn {
  min-width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border-2);
  border-radius: var(--r);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding: 0 0.875rem;
  transition: all var(--ease);
}
.size-btn:hover { border-color: var(--color-text); }
.size-btn.selected { background: var(--color-bg-alt); border-color: var(--color-bg-alt); color: white; }
.sizes-selector.shake { animation: shake 0.35s ease; }

/* Quantity selector */
.qty-wrap {
  display: flex;
  align-items: center;
  width: fit-content;
  border: 1px solid var(--color-border-2);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 1.75rem;
}
.qty-btn {
  width: 44px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--color-text);
  font-size: 1.1rem;
  transition: all var(--ease);
}
.qty-btn:hover { background: var(--color-surface-2); }
.qty-display {
  min-width: 52px;
  text-align: center;
  font-family: var(--font-label);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  border-left: 1px solid var(--color-border-2);
  border-right: 1px solid var(--color-border-2);
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === ABOUT — fondo rosa suave, editorial === */
.about {
  background: var(--color-accent-soft);
}
.about__inner { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) {
  .about__inner { grid-template-columns: 1.5fr 1fr; gap: 5rem; }
}
.about__logo {
  height: 100px;
  width: auto;
  display: block;
  filter: none;
  margin: 0 0 2rem;
  opacity: 0.6;
}
.about__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}
.about__title em { font-style: italic; color: var(--color-accent-h); }
.about__text { color: var(--color-muted); line-height: 1.85; font-size: 14px; margin-bottom: 0.875rem; max-width: 480px; }
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.about__stat-n {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-accent-h);
  line-height: 1;
}
.about__stat-l {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  text-transform: uppercase;
  margin-top: 0.35rem;
}
.about__visual {
  aspect-ratio: 4 / 5;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(244,194,194,0.3);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about__visual-text {
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 400;
  color: rgba(0,0,0,0.05);
  letter-spacing: 0.02em;
  user-select: none;
}
.about__visual-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-accent);
}
.about__visual-logo {
  height: 60%;
  width: auto;
  opacity: 0.12;
}
/* Placeholder foto */
.about__photo-placeholder {
  aspect-ratio: 4 / 5;
  background: rgba(255,255,255,0.6);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(244,194,194,0.35);
}
.about__placeholder-logo {
  height: 180px;
  width: auto;
  opacity: 0.25;
}

/* === BENEFITS STRIP === */
.benefits-section {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.benefits-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .benefits-strip__inner { grid-template-columns: 1fr; }
}
.benefit-strip-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2.5rem 2.5rem;
  border-right: 1px solid var(--color-border);
  transition: background var(--ease);
}
.benefit-strip-item:last-child { border-right: none; }
@media (max-width: 767px) {
  .benefit-strip-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 1.75rem var(--gutter);
  }
  .benefit-strip-item:last-child { border-bottom: none; }
}
.benefit-strip-item:hover { background: var(--color-accent-soft); }
.benefit-strip-item__icon { color: var(--color-accent-h); flex-shrink: 0; }
.benefit-strip-item__text h3 {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}
.benefit-strip-item__text p {
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.6;
}

/* === FOOTER — blanco, borde superior negro === */
.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-text);
  padding-top: 0;
}
.footer__brand {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) 2.5rem;
  border-bottom: 1px solid var(--color-border);
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer__logo-img {
  height: 90px;
  width: auto;
  display: block;
  margin: 0 auto 1rem;
  filter: none;
  opacity: 0.8;
  transition: opacity var(--ease);
}
.footer__logo-img:hover { opacity: 1; }
.footer__desc {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.footer__social { display: flex; gap: 0.625rem; justify-content: center; }
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid var(--color-border-2);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-muted);
  transition: color var(--ease), border-color var(--ease);
}
.footer__social a:hover { color: var(--color-text); border-color: var(--color-text); }

.footer__links-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 640px) {
  .footer__links-grid { grid-template-columns: 1fr 1fr; }
}
.footer__col-title {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--color-text);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer__links a { font-size: 13px; color: var(--color-muted); transition: color var(--ease); }
.footer__links a:hover { color: var(--color-text); }
.footer__link-more { color: var(--color-accent-h) !important; font-weight: 500; }
.footer__despacho-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.footer__despacho-icon { color: var(--color-muted); flex-shrink: 0; margin-top: 2px; }
.footer__despacho-text { font-size: 13px; color: var(--color-muted); line-height: 1.6; }

.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem var(--gutter);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}
.footer__copy { font-size: 11px; color: var(--color-muted); }
.footer__wa-note {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  text-transform: uppercase;
}
.footer__wa-note span { color: var(--color-text); }
.footer__made {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12px;
  color: var(--color-muted);
}
/* Grid legacy — usado en tienda/carrito/producto */
.footer__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) 2.5rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 0;
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }
.footer__logo { margin-bottom: 1.25rem; }
.footer__logo a { display: block; }

/* === CART PAGE === */
.cart-layout { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .cart-layout { grid-template-columns: 1fr 360px; align-items: start; } }
.cart-items {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--r);
  overflow: hidden;
}
.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  background: var(--color-bg);
  padding: 1rem;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
}
.cart-item:last-child { border-bottom: none; }
@media (min-width: 640px) { .cart-item { grid-template-columns: 100px 1fr auto; } }
.cart-item__img { aspect-ratio: 3 / 4; overflow: hidden; background: var(--color-surface-2); border-radius: var(--r); }
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__name { font-family: var(--font-label); font-size: 14px; font-weight: 500; color: var(--color-text); margin-bottom: 0.2rem; line-height: 1.3; }
.cart-item__meta { font-size: 11px; color: var(--color-muted); letter-spacing: 0.08em; margin-bottom: 0.75rem; text-transform: uppercase; }
.cart-item__price { font-family: var(--font-label); font-size: 1.1rem; font-weight: 400; color: var(--color-text); }
.cart-item__controls { display: flex; align-items: center; gap: 0.375rem; }
.ci-qty-btn {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-surface-2);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--r);
  font-size: 13px;
  cursor: pointer;
  transition: all var(--ease);
  flex-shrink: 0;
}
.ci-qty-btn:hover { background: var(--color-border-2); }
.ci-qty { min-width: 28px; text-align: center; font-family: var(--font-label); font-weight: 500; font-size: 13px; color: var(--color-text); }
.cart-item__remove { background: none; border: none; color: var(--color-muted); cursor: pointer; padding: 6px; transition: color var(--ease); display: flex; align-items: center; justify-content: center; }
.cart-item__remove:hover { color: var(--color-text); }
.cart-item__right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }
.cart-summary {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--offset) + 1rem);
}
.cart-summary__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--color-text); margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--color-border); }
.cart-summary__row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.75rem; font-size: 13px; color: var(--color-muted); }
.cart-summary__row strong { color: var(--color-text); font-weight: 500; }
.cart-summary__divider { border: none; border-top: 1px solid var(--color-border); margin: 1rem 0; }
.cart-summary__total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.cart-summary__total-label { font-family: var(--font-label); font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-muted); }
.cart-summary__total-price { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--color-text); }
.cart-note { font-size: 12px; color: var(--color-muted); text-align: center; margin-top: 0.875rem; line-height: 1.6; }
.cart-empty { text-align: center; padding: 5rem 2rem; border: 1px solid var(--color-border); border-radius: var(--r); background: var(--color-surface); }
.cart-empty__icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.15; }
.cart-empty__title { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--color-text); margin-bottom: 0.75rem; }
.cart-empty__text { font-size: 13px; color: var(--color-muted); margin-bottom: 2rem; }

/* === SIZE MODAL === */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(10,10,10,0.65); z-index: 500; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--color-bg);
  border: 1px solid var(--color-border-2);
  border-radius: var(--r);
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  position: relative;
  animation: modal-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.96) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close-btn { position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: var(--color-muted); font-size: 1.3rem; cursor: pointer; line-height: 1; transition: color var(--ease); width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; }
.modal-close-btn:hover { color: var(--color-text); }
.modal-cat { font-family: var(--font-label); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; color: var(--color-accent-h); text-transform: uppercase; margin-bottom: 0.4rem; }
.modal-name { font-family: var(--font-display); font-size: 1.75rem; font-weight: 400; color: var(--color-text); line-height: 1.1; margin-bottom: 0.4rem; }
.modal-price { font-family: var(--font-label); font-size: 1.1rem; font-weight: 400; color: var(--color-text); margin-bottom: 1.5rem; }
.modal-size-label { display: block; font-family: var(--font-label); font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-muted); margin-bottom: 0.75rem; }
.modal-hint { font-size: 11px; color: var(--color-accent-h); margin-top: 0.625rem; display: none; font-family: var(--font-label); letter-spacing: 0.04em; }
.modal-hint.show { display: block; }

/* === TOAST === */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--color-bg);
  border: 1px solid var(--color-border-2);
  border-left: 2px solid var(--color-accent);
  padding: 0.875rem 1.5rem;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text);
  z-index: 600;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: var(--r);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  opacity: 0;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast__icon { color: var(--color-accent-h); font-size: 14px; }

/* === LOADING SKELETONS === */
.loading-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2.5vw, 2rem); }
@media (min-width: 640px) { .loading-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .loading-grid { grid-template-columns: repeat(4, 1fr); } }
.skeleton { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--r); overflow: hidden; animation: pulse 1.8s ease-in-out infinite; }
.skeleton__image { aspect-ratio: 3 / 4; background: var(--color-surface-2); }
.skeleton__text { padding: 1rem; }
.skeleton__line { height: 11px; background: var(--color-surface-2); border-radius: 2px; margin-bottom: 0.5rem; }
.skeleton__line--short { width: 55%; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

/* === SCROLL ANIMATIONS === */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(1) { transition-delay: 0s; }
.fade-in:nth-child(2) { transition-delay: 0.07s; }
.fade-in:nth-child(3) { transition-delay: 0.14s; }
.fade-in:nth-child(4) { transition-delay: 0.21s; }
.fade-in:nth-child(5) { transition-delay: 0.28s; }
.fade-in:nth-child(6) { transition-delay: 0.35s; }
.fade-in:nth-child(7) { transition-delay: 0.42s; }
.fade-in:nth-child(8) { transition-delay: 0.49s; }

/* === SWATCHES EN CARD === */
.product-card__swatches { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.swatch {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  flex-shrink: 0;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
}
.swatch:hover {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--color-accent-h);
  transform: scale(1.1);
}
.swatch--agotado { opacity: 0.35; cursor: default; }
.swatch--agotado::after {
  content: '';
  position: absolute;
  top: 50%; left: -2px; right: -2px;
  height: 1px;
  background: rgba(0,0,0,0.4);
  transform: rotate(-45deg);
}

/* === SELECTOR DE COLOR EN PRODUCTO === */
.color-selector { display: flex; gap: 0.875rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.color-dot-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.375rem; cursor: pointer; }
.color-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.color-dot-wrap:hover .color-dot { transform: scale(1.06); }
.color-dot-wrap.selected .color-dot { box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px var(--color-accent-h); }
.color-dot-wrap.agotado { opacity: 0.4; cursor: not-allowed; }
.color-dot-wrap.agotado .color-dot-label { text-decoration: line-through; }
.color-dot-label { font-family: var(--font-label); font-size: 10px; font-weight: 500; letter-spacing: 0.06em; color: var(--color-muted); text-transform: uppercase; white-space: nowrap; }
.color-dot-wrap.selected .color-dot-label { color: var(--color-text); }

/* === GALERÍA DE IMÁGENES === */
.product-gallery { display: flex; flex-direction: column; gap: 0.75rem; }
.product-gallery__main-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--r);
  cursor: zoom-in;
  position: relative;
}
.product-gallery__main-wrap img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.2s ease; }
.product-gallery__thumbs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.gallery-thumb {
  width: 72px; height: 72px;
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.2s ease;
  background: var(--color-surface-2);
  flex-shrink: 0;
}
.gallery-thumb:hover { opacity: 0.8; }
.gallery-thumb.active { border-color: var(--color-accent); opacity: 1; }

/* === TABS === */
.product-tabs { margin-top: 2.5rem; }
.tab-nav {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 0.625rem 0;
  margin-right: 2rem;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  background: none; border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.tab-btn:hover { color: var(--color-text); }
.tab-btn.active { color: var(--color-text); border-bottom-color: var(--color-accent); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-text { font-size: 13px; color: var(--color-muted); line-height: 1.85; }
.tab-text + .tab-text { margin-top: 0.625rem; }
.tab-detail-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-h);
  display: block;
  margin: 1rem 0 0.25rem;
}

/* === TABLA DE MEDIDAS === */
.medidas-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 0.5rem; }
.medidas-table th {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  text-align: left;
  padding: 0.5rem 0.75rem 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
}
.medidas-table td {
  padding: 0.625rem 0.75rem 0.625rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 13px;
}
.medidas-table tr:last-child td { border-bottom: none; }
.medidas-table td:first-child { font-family: var(--font-label); font-weight: 500; letter-spacing: 0.05em; color: var(--color-text); }

/* === MISC === */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
}
.divider { border: none; border-top: 1px solid var(--color-border); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-border-2); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-muted); }

/* === PRODUCT BADGES === */
.product-badge {
  position: absolute;
  top: 0.625rem; left: 0.625rem;
  z-index: 2;
  padding: 0.2rem 0.6rem;
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  line-height: 1.7;
}
.product-badge--new            { background: white; border: 1px solid var(--color-accent-h); color: var(--color-text); }
.product-badge--oferta         { background: var(--color-text); color: white; }
.product-badge--ultima-unidad  { background: white; border: 1px solid var(--color-border-2); color: var(--color-muted); }
.product-badge--pre-venta      { background: white; border: 1px solid var(--color-border-2); color: var(--color-muted); }
.product-badge--restock        { background: var(--color-accent-soft); border: 1px solid var(--color-accent); color: var(--color-text); }
.product-badge--limitado       { background: var(--color-text); color: white; }
.product-badge--agotado        { background: white; border: 1px solid var(--color-border-2); color: var(--color-muted); }

/* === OFFER PRICE (cards) === */
.price-offer { display: flex; align-items: center; gap: 0.35rem; flex-wrap: wrap; }
.price-offer__original { font-family: var(--font-label); font-size: 11px; color: var(--color-muted); text-decoration: line-through; }
.price-offer__new { font-family: var(--font-label); font-size: 13px; font-weight: 400; color: var(--color-text); }
.price-offer__pct { font-family: var(--font-label); font-size: 9px; font-weight: 500; background: var(--color-accent); color: #000; padding: 0.1rem 0.3rem; border-radius: 2px; letter-spacing: 0.05em; }

/* === OFFER PRICE (product detail) === */
.price-detail-offer { display: flex; align-items: baseline; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.price-detail-offer__new { font-family: var(--font-label); font-size: 1.75rem; font-weight: 400; color: var(--color-text); letter-spacing: 0.01em; }
.price-detail-offer__original { font-family: var(--font-label); font-size: 1.1rem; font-weight: 400; color: var(--color-muted); text-decoration: line-through; }
.price-detail-offer__pct { font-family: var(--font-label); font-size: 11px; font-weight: 500; background: var(--color-accent); color: #000; padding: 0.25rem 0.6rem; border-radius: 2px; align-self: center; letter-spacing: 0.05em; }

/* === TESTIMONIALS === */
.testimonials-outer { display: flex; align-items: center; gap: 0.75rem; }
.testimonials-viewport { overflow: hidden; flex: 1; min-width: 0; }
.testimonials-track { display: flex; gap: 1.5rem; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); }
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r);
  padding: 2rem;
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
}
@media (max-width: 900px) { .testimonial-card { flex: 0 0 calc(50% - 0.75rem); } }
@media (max-width: 600px) { .testimonial-card { flex: 0 0 100%; } }
.testimonial-stars { color: var(--color-accent-h); font-size: 13px; letter-spacing: 3px; margin-bottom: 0.875rem; }
.testimonial-text { font-size: 14px; line-height: 1.8; color: var(--color-text); margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  border: 1px solid var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-accent-h);
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-family: var(--font-label); font-size: 12px; font-weight: 500; color: var(--color-text); letter-spacing: 0.04em; }
.testimonial-meta { font-size: 11px; color: var(--color-muted); margin-top: 1px; }
.testimonial-arrow {
  width: 40px; height: 40px;
  border: 1px solid var(--color-border-2);
  border-radius: var(--r);
  background: var(--color-bg);
  color: var(--color-muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--ease);
}
.testimonial-arrow:hover:not(:disabled) { color: var(--color-text); border-color: var(--color-text); }
.testimonial-arrow:disabled { opacity: 0.25; cursor: default; }

/* === FAQ === */
.faq-accordion { border-top: 1px solid var(--color-border); }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.375rem 0;
  background: none; border: none;
  color: var(--color-text);
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color var(--ease);
}
.faq-btn:hover { color: var(--color-accent-h); }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1px solid var(--color-border-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--color-muted);
  transition: transform 0.3s ease, border-color 0.3s ease;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--color-accent-h); color: var(--color-accent-h); }
.faq-answer {
  display: none;
  padding: 0 0 1.375rem;
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.85;
  max-width: 720px;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p { margin-bottom: 0.6rem; line-height: 1.75; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { margin: 0.4rem 0 0.75rem; padding: 0; list-style: none; }
.faq-answer ul li { position: relative; padding-left: 1.25rem; margin-bottom: 0.4rem; line-height: 1.65; font-size: 13px; }
.faq-answer ul li::before { content: '—'; position: absolute; left: 0; color: var(--color-accent-h); }

/* FAQ sobre fondo oscuro */
.faq-accordion--dark { border-top-color: rgba(255,255,255,.1); }
.faq-accordion--dark .faq-item { border-bottom-color: rgba(255,255,255,.1); }
.faq-accordion--dark .faq-btn { color: var(--color-text-inv); }
.faq-accordion--dark .faq-icon { border-color: rgba(255,255,255,.2); color: var(--color-accent); }
.faq-accordion--dark .faq-answer { color: var(--color-muted-inv); }
/* FAQ sobre fondo claro (alias para compatibilidad) */
.faq-accordion--light { border-top-color: var(--color-border); }
.faq-accordion--light .faq-item { border-bottom-color: var(--color-border); }
.faq-accordion--light .faq-btn { color: var(--color-text); }
.faq-accordion--light .faq-icon { border-color: var(--color-border-2); color: var(--color-accent-h); }
.faq-accordion--light .faq-answer { color: var(--color-muted); }

/* === DARK SECTION === */
.section--dark { background: var(--color-bg-alt); }
.section--dark .section-label { color: var(--color-accent); }
.section--dark .section-title { color: var(--color-text-inv); }

/* === LOOKBOOK === */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) and (min-width: 641px) {
  .lookbook-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}
.lookbook-item {
  overflow: hidden;
  border-radius: var(--r);
  position: relative;
  background: var(--color-accent-soft);
  border: 1px solid var(--color-border);
  /* altura controlada por viewport — formato vertical */
  height: clamp(440px, 72vh, 840px);
}
.lookbook-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.lookbook-item.video-loaded .lookbook-video { opacity: 1; }
.lookbook-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-accent-soft);
  transition: opacity 0.6s ease;
}
.lookbook-item.video-loaded .lookbook-placeholder { opacity: 0; pointer-events: none; }
.lookbook-placeholder__logo { height: 70px; width: auto; opacity: 0.18; }
.lookbook-item__label {
  position: absolute;
  bottom: 1rem; left: 1rem;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(0,0,0,0.5);
  text-transform: uppercase;
  z-index: 2;
  background: rgba(255,255,255,0.7);
  padding: 0.25rem 0.5rem;
}
.lookbook-item.video-loaded .lookbook-item__label { color: rgba(255,255,255,0.85); background: transparent; }

/* === BOTÓN FLOTANTE WHATSAPP — sutil === */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--color-accent);
  color: var(--color-accent-h);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}
.wa-float svg { width: 24px; height: 24px; display: block; }
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 24px rgba(244,194,194,0.35);
  border-color: var(--color-accent-h);
}
@media (max-width: 640px) {
  .wa-float { width: 44px; height: 44px; bottom: 1rem; right: 1rem; }
  .wa-float svg { width: 20px; height: 20px; }
}

/* === SALES POPUP === */
.sales-popup {
  position: fixed;
  bottom: 1.5rem; left: 1.5rem;
  z-index: 700;
  background: var(--color-bg);
  border: 1px solid var(--color-border-2);
  border-left: 2px solid var(--color-accent);
  border-radius: var(--r);
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 300px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
  pointer-events: none;
}
.sales-popup.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
@media (max-width: 480px) {
  .sales-popup {
    bottom: auto;
    top: calc(var(--offset) + 0.5rem);
    left: auto; right: 0.75rem;
    max-width: 230px;
  }
}
.sales-popup__icon {
  width: 36px; height: 36px;
  border-radius: var(--r);
  background: var(--color-accent-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent-h);
}
.sales-popup__body { flex: 1; min-width: 0; }
.sales-popup__name { font-family: var(--font-label); font-size: 12px; font-weight: 500; color: var(--color-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sales-popup__text { font-size: 11px; color: var(--color-muted); line-height: 1.4; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sales-popup__close { background: none; border: none; color: var(--color-muted); cursor: pointer; font-size: 15px; flex-shrink: 0; line-height: 1; padding: 0 0 0 0.25rem; transition: color var(--ease); }
.sales-popup__close:hover { color: var(--color-text); }

/* === VIDEO THUMB === */
.gallery-thumb--video {
  position: relative;
  background: var(--color-bg-alt);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.gallery-thumb--video svg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 4px rgba(0,0,0,.5));
}

/* === TRUST ICONS (producto) === */
.trust-icons {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.5;
}
.trust-item svg { flex-shrink: 0; margin-top: 1px; color: var(--color-accent-h); }

/* === PRODUCT BADGE (detail page) === */
.product-detail-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.75rem;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 0.875rem;
}
.product-detail-badge--new            { background: white; border: 1px solid var(--color-accent); color: var(--color-text); }
.product-detail-badge--oferta         { background: var(--color-text); color: white; }
.product-detail-badge--ultima-unidad  { background: transparent; border: 1px solid var(--color-border-2); color: var(--color-muted); }
.product-detail-badge--pre-venta      { background: transparent; border: 1px solid var(--color-border-2); color: var(--color-muted); }
.product-detail-badge--restock        { background: var(--color-accent-soft); border: 1px solid var(--color-accent); color: var(--color-text); }
.product-detail-badge--limitado       { background: var(--color-text); color: white; }
.product-detail-badge--agotado        { background: transparent; border: 1px solid var(--color-border-2); color: var(--color-muted); }

/* ============================================================
   MOBILE OPTIMIZATIONS — max-width: 768px
   Mirrors Drako House mobile rules, adapted for Mona Modda
   ============================================================ */
@media (max-width: 768px) {

  /* — Base tipografía — */
  body { font-size: 14px; }

  /* — Header: 56px, logo 32px — */
  :root { --header-h: 56px; }
  .header__logo-img { height: 32px; }

  /* — Gutter lateral: 16px — */
  :root { --gutter: 16px; }

  /* — Secciones: padding vertical 48px — */
  .section { padding: 48px 16px; }
  .page-hero { padding: 32px 16px; }

  /* — Hero editorial: apilado — */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__left {
    padding: 48px 16px 36px;
    order: 1;
    align-items: center;
    text-align: center;
  }
  .hero__accent-line { margin-bottom: 1rem; }
  .hero__eyebrow { margin-bottom: 0.875rem; }
  .hero__title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    margin-bottom: 0.75rem;
  }
  .hero__sub {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
  .hero__divider { display: none; }
  .hero__actions { margin-bottom: 0.75rem; }
  .hero__right {
    order: 2;
    min-height: 52vw;
  }
  .hero__monogram { font-size: 28vw; }
  .hero__collection-tag { font-size: 9px; padding: 0.3rem 0.625rem; }

  /* — Títulos de sección — */
  .section-num {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 0.25rem;
  }
  .section-label { font-size: 10px; letter-spacing: 0.18em; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .section-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }
  .page-hero__title { font-size: clamp(2rem, 8vw, 3rem); }

  /* — Botones — */
  .btn { font-size: 11px; padding: 0.75rem 1.5rem; }
  .btn--lg { font-size: 11px; padding: 0.75rem 1.75rem; }

  /* — Grid de productos: siempre 2 columnas — */
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
  .product-card__info { padding: 0.75rem; gap: 0.2rem; }
  .product-card__cat { font-size: 9px; letter-spacing: 0.14em; }
  .product-card__name { font-size: 12px; }
  .product-card__price { font-size: 13px; }
  .product-card__footer { padding-top: 0.5rem; }
  .swatch { width: 14px; height: 14px; }
  .product-card__swatches { gap: 3px; }

  /* — Beneficios: 3 columnas en una fila — */
  .benefits-strip__inner {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .benefit-strip-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 1.25rem 0.875rem;
    border-right: 1px solid var(--color-border) !important;
    border-bottom: none !important;
  }
  .benefit-strip-item:last-child { border-right: none !important; }
  .benefit-strip-item__text h3 { font-size: 11px; }
  .benefit-strip-item__text p { font-size: 10px; line-height: 1.5; }
  .benefit-strip-item__icon svg { width: 18px; height: 18px; }

  /* — About: apilado (ya es 1 col), stats siempre en fila — */
  .about { }
  .about__inner { gap: 2rem; }
  .about__logo { height: 70px; margin-bottom: 1.25rem; }
  .about__title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .about__text { max-width: 100%; font-size: 13px; }
  .about__stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
  .about__stat-n { font-size: 1.75rem; }
  .about__stat-l { font-size: 9px; }
  .about__photo-placeholder { aspect-ratio: 4 / 3; }

  /* — Lookbook: grid 2×2, mostrar todos — */
  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
  }
  .lookbook-item { display: block !important; aspect-ratio: 4 / 5; height: auto !important; }
  .lookbook-item__label { font-size: 9px; padding: 0.2rem 0.4rem; }

  /* — Testimonios: 1 por vista — */
  .testimonials-outer { gap: 0.5rem; }
  .testimonial-card {
    flex: 0 0 100% !important;
    padding: 1.25rem;
  }
  .testimonial-stars { font-size: 12px; margin-bottom: 0.625rem; }
  .testimonial-text { font-size: 13px; margin-bottom: 1rem; }
  .testimonial-name { font-size: 11px; }
  .testimonial-meta { font-size: 10px; }
  .testimonial-arrow { width: 36px; height: 36px; }

  /* — FAQ — */
  .faq-btn { font-size: 13px; padding: 1rem 0; }
  .faq-answer { font-size: 12px; }

  /* — Footer: compacto, sin Contacto (están los íconos) — */
  .footer__brand { padding: 1.25rem 16px 1rem; }
  .footer__logo-img { height: 44px; }
  .footer__desc { font-size: 12px; margin-bottom: 0.75rem; }
  .footer__social a { width: 28px; height: 28px; }
  .footer__links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1rem 16px;
  }
  .footer__links-grid > div:last-child { display: none; }
  .footer__col-title { font-size: 10px; margin-bottom: 0.625rem; }
  .footer__links a { font-size: 12px; }
  .footer__links li { margin-bottom: 0.3rem; }
  .footer__bottom {
    padding: 1.25rem 16px;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
  }
  .footer__copy { font-size: 10px; }
  .footer__made { font-size: 11px; }

  /* Footer grid legacy (tienda/carrito/producto) */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem 16px;
  }
  .footer__grid > div:nth-child(1) { grid-column: 1 / -1; }
  .footer__logo-img { height: 56px; }

  /* — Popup ventas: arriba bajo el header — */
  .sales-popup {
    max-width: min(280px, calc(100vw - 1.5rem));
    top: calc(var(--offset) + 0.5rem);
    bottom: auto;
    left: auto;
    right: 0.75rem;
    padding: 0.625rem 0.75rem;
    gap: 0.5rem;
  }
  .sales-popup__icon { width: 28px; height: 28px; }
  .sales-popup__name { font-size: 11px; }
  .sales-popup__text { font-size: 10px; }

  /* — WhatsApp flotante: 48px — */
  .wa-float {
    width: 48px;
    height: 48px;
    bottom: 1rem;
    right: 1rem;
  }
  .wa-float svg { width: 22px; height: 22px; }

  /* — Producto detail: apilado — */
  .product-detail { gap: 1.5rem; }
  .product-info__name { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .product-info__price { font-size: 1.25rem; }
  .product-info__desc { font-size: 13px; margin-bottom: 1.5rem; padding-bottom: 1.5rem; }
  .size-btn { min-width: 44px; height: 44px; font-size: 12px; }
  .tab-btn { font-size: 11px; margin-right: 1.25rem; }

  /* — Carrito — */
  .cart-item { grid-template-columns: 76px 1fr; gap: 0.75rem; }
  .cart-item__name { font-size: 13px; }
  .cart-item__meta { font-size: 10px; }
  .cart-summary__title { font-size: 1.25rem; }
  .cart-summary__total-price { font-size: 1.75rem; }

  /* — Filtros: scroll horizontal — */
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filter-btn { white-space: nowrap; flex-shrink: 0; }

  /* — Mobile menu links — */
  .mobile-menu a { font-size: 2rem; padding: 1rem 0; }

}
