/* GREEN EYES — minimal premium */
:root {
  --bg: #FAFAF8;
  --paper: #F2F1ED;
  --cement: #ECEAE4;
  --ink: #1A1A1A;
  --ink-2: #6B6B68;
  --ink-3: #9A9A95;
  --line: #E5E4DF;
  --line-2: #D8D6CF;
  --white: #FFFFFF;
  --guinda: #722F37;
  --oliva: #5E6B4E;
  --navy: #1F2937;
  --beige: #D4C9B8;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --container: 1440px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
}
img { display: block; max-width: 100%; height: auto; }
iframe, video, embed, object { max-width: 100%; }
.container, section, header, footer, main, article { max-width: 100%; }
.section-title, .section-title-lg, h1, h2, h3, p { overflow-wrap: break-word; word-wrap: break-word; }
button {
  font-family: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
input, textarea, select { font-family: inherit; font-size: 14px; color: inherit; }

.wordmark {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 32px;
  gap: 24px;
}
.header-nav { display: flex; gap: 36px; }
.header-nav a {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.header-nav a:hover { color: var(--ink-2); }
.header-logo {
  font-size: 19px;
  letter-spacing: 0.26em;
  font-weight: 400;
  text-align: center;
}
.header-right {
  display: flex; justify-content: flex-end; align-items: center; gap: 22px;
}
.header-icon-btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; letter-spacing: 0.06em;
  padding: 6px 0;
}
.cart-count {
  display: inline-flex;
  align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--ink); color: var(--bg);
  border-radius: 9px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0;
}
.icon-svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.4; fill: none; }

.announce {
  background: var(--ink); color: var(--bg);
  text-align: center;
  font-size: 11.5px; letter-spacing: 0.18em;
  padding: 9px 16px;
  text-transform: uppercase;
}

/* HERO */
.hero {
  position: relative;
  height: calc(100vh - 92px);
  min-height: 620px;
  max-height: 820px;
  overflow: hidden;
  background: var(--paper);
}
.hero img { width: 100%; height: 100%; object-fit: cover; }
.hero-meta {
  position: absolute;
  left: 40px; bottom: 36px;
  color: var(--white);
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
.hero-meta .eyebrow { color: rgba(255,255,255,0.85); }
.hero-meta-title {
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 8px;
}
.hero-cta-row {
  position: absolute;
  right: 40px; bottom: 36px;
  display: flex; gap: 12px;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 22px;
  font-size: 11.5px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 500;
  border: 1px solid var(--ink);
  background: var(--ink); color: var(--bg);
  cursor: pointer;
  transition: all .25s ease;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-ghost-light {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.9);
}
.btn-ghost-light:hover { background: var(--white); color: var(--ink); }
.btn-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}
.btn-text:hover { color: var(--ink-2); }

/* SECTIONS */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px;
  gap: 24px;
}
.section-title {
  font-size: 28px;
  letter-spacing: -0.01em;
  font-weight: 400;
  line-height: 1.1;
}
.section-title-lg {
  font-size: 42px;
  letter-spacing: -0.02em;
  font-weight: 400;
  line-height: 1.05;
}

/* DROP INVIERNO */
.drop {
  background: var(--paper);
  display: grid; grid-template-columns: 1.1fr 1fr;
  min-height: 560px;
}
.drop-image { background: #d8d6cf; overflow: hidden; }
.drop-image img { width: 100%; height: 100%; object-fit: cover; }
.drop-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px;
  max-width: 560px;
}
.drop-content .eyebrow { margin-bottom: 18px; }
.drop-content h2 {
  font-size: 44px; font-weight: 400; letter-spacing: -0.02em;
  line-height: 1.05; margin-bottom: 14px;
}
.drop-content p {
  font-size: 15px; color: var(--ink-2);
  margin-bottom: 30px;
  max-width: 380px;
}
.drop-bullets {
  list-style: none; margin: 0 0 36px 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13.5px;
}
.drop-bullets li {
  display: flex; align-items: baseline; gap: 12px;
  padding-bottom: 8px; border-bottom: 1px solid var(--line-2);
}
.drop-bullets li:last-child { border-bottom: 0; }
.drop-bullets span:first-child { color: var(--ink-3); font-size: 11px; letter-spacing: 0.1em; }
.drop-bullets span:last-child { color: var(--ink); margin-left: auto; font-variant-numeric: tabular-nums; }

/* PREMIUM */
.premium { background: var(--bg); }
.premium-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* PRODUCT CARD */
.product-card {
  cursor: pointer;
  position: relative;
  display: flex; flex-direction: column;
}
.product-media {
  aspect-ratio: 4 / 5;
  background: var(--cement);
  overflow: hidden;
  position: relative;
}
.product-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .35s ease, transform .8s ease;
}
.product-media img.alt {
  position: absolute; inset: 0;
  opacity: 0;
}
.product-card:hover .product-media img.main { opacity: 0; }
.product-card:hover .product-media img.alt { opacity: 1; }
.product-card:hover .product-media img { transform: scale(1.02); }
.product-add {
  position: absolute;
  right: 12px; bottom: 12px;
  width: 36px; height: 36px;
  background: var(--white); color: var(--ink);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 300;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease, background .2s, color .2s;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.product-card:hover .product-add { opacity: 1; transform: translateY(0); }
.product-add:hover { background: var(--ink); color: var(--white); }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--bg); color: var(--ink);
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500;
  padding: 4px 9px;
}
.product-tag.dark { background: var(--ink); color: var(--bg); }
.product-info {
  padding: 14px 2px 0;
  display: flex; justify-content: space-between; gap: 12px;
  align-items: flex-start;
}
.product-info-left { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.product-name {
  font-size: 13.5px; font-weight: 500; color: var(--ink);
}
.product-desc {
  font-size: 12px; color: var(--ink-2);
  font-weight: 400;
}
.product-price {
  font-size: 13.5px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.product-colors {
  display: flex; gap: 5px; margin-top: 8px;
}
.color-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
}

/* CATALOG / FILTERS */
.catalog-head {
  display: flex; flex-direction: column; gap: 28px;
  margin-bottom: 36px;
}
.filters {
  display: flex; flex-wrap: wrap; gap: 4px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  justify-content: space-between;
  align-items: center;
}
.filter-group { display: flex; flex-wrap: wrap; gap: 4px; }
.filter-btn {
  padding: 8px 14px;
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 500;
  color: var(--ink-2);
  border-radius: 2px;
  transition: all .2s;
}
.filter-btn:hover { color: var(--ink); }
.filter-btn.active {
  background: var(--ink); color: var(--bg);
}
.filter-count {
  font-size: 11.5px; color: var(--ink-3);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 24px;
}

/* POR QUE */
.why { background: var(--paper); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-card {
  padding: 38px 30px;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 240px;
}
.why-num {
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--ink-3); font-weight: 500;
}
.why-card h3 {
  font-size: 19px; font-weight: 400; letter-spacing: -0.01em;
  line-height: 1.25;
}
.why-card p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }

/* TIENDA FISICA */
.store {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--bg);
}
.store-photo { aspect-ratio: 5/4; overflow: hidden; background: var(--cement); }
.store-photo img { width: 100%; height: 100%; object-fit: cover; }
.store-content {
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 22px;
}
.store-content h2 {
  font-size: 36px; font-weight: 400; letter-spacing: -0.02em;
  line-height: 1.08;
}
.store-detail {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 14px 20px;
  padding-top: 22px; border-top: 1px solid var(--line);
  font-size: 13.5px;
}
.store-detail dt { color: var(--ink-3); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; padding-top: 2px; }
.store-detail dd { color: var(--ink); }
.store-cta { display: flex; gap: 12px; margin-top: 6px; }
.store-map {
  margin-top: 4px;
  aspect-ratio: 16/9;
  position: relative; overflow: hidden;
  background: #e8e6e0;
  border: 1px solid var(--line);
}
.store-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.4) contrast(0.95); }

/* TESTIMONIOS */
.testi { background: var(--paper); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.wa-card {
  background: #ECE5DD;
  padding: 22px;
  position: relative;
  min-height: 220px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
}
.wa-header {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 12.5px; font-weight: 500;
}
.wa-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--whatsapp-dark); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
}
.wa-bubble {
  background: #DCF8C6;
  padding: 9px 12px;
  border-radius: 8px 8px 8px 1px;
  font-size: 13.5px;
  max-width: 88%;
  align-self: flex-start;
  position: relative;
  color: #303030;
}
.wa-bubble.them {
  background: white;
  align-self: flex-end;
  border-radius: 8px 8px 1px 8px;
}
.wa-time {
  font-size: 10px; color: var(--ink-3);
  text-align: right; margin-top: 4px;
}
.wa-spacer { flex: 1; }
.wa-meta {
  font-size: 11px; color: var(--ink-3);
  letter-spacing: 0.08em; text-transform: uppercase;
  padding-top: 6px;
  display: flex; gap: 10px; align-items: center;
}

/* FOOTER */
.site-footer {
  background: var(--ink); color: #cfcec9;
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-size: 17px; letter-spacing: 0.26em; color: white;
  font-weight: 300; margin-bottom: 18px;
}
.footer-col h4 {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: white; margin-bottom: 16px; font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a { font-size: 13px; color: #cfcec9; }
.footer-col a:hover { color: white; }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: #8a8985;
  gap: 24px;
}

/* WHATSAPP FAB */
.wa-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  width: 56px; height: 56px;
  background: var(--whatsapp); color: white;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(37,211,102,0.4), 0 2px 6px rgba(0,0,0,0.12);
  transition: transform .25s;
}
.wa-fab:hover { transform: scale(1.06); }
.wa-fab svg { width: 28px; height: 28px; fill: white; }
.wa-fab-label {
  position: absolute; right: 64px; top: 50%; transform: translateY(-50%);
  background: var(--ink); color: white;
  font-size: 12px; letter-spacing: 0.06em;
  padding: 8px 12px; border-radius: 2px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.wa-fab:hover .wa-fab-label { opacity: 1; }

/* Lock body scroll when drawer/modal is open (no JS needed) */
body:has(.drawer.open),
body:has(.modal-scrim.open) {
  overflow: hidden;
}

/* CART DRAWER */
.scrim {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20,20,20,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.scrim.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; right: 0; top: 0; bottom: 0; z-index: 110;
  width: 460px; max-width: 100%;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  padding: 22px 26px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line);
}
.drawer-head h3 { font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; }
.drawer-close { font-size: 22px; line-height: 1; padding: 4px 8px; }
.drawer-body {
  flex: 1; overflow-y: auto;
  padding: 8px 26px;
}
.cart-empty {
  padding: 80px 0;
  text-align: center;
  color: var(--ink-2);
}
.cart-empty p { margin-bottom: 24px; }
.cart-item {
  display: grid; grid-template-columns: 76px 1fr auto;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item-img {
  width: 76px; height: 95px;
  background: var(--cement); overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.cart-item-info .name { font-size: 13.5px; font-weight: 500; }
.cart-item-info .desc { font-size: 11.5px; color: var(--ink-2); }
.cart-item-info .meta { font-size: 11.5px; color: var(--ink-3); }
.qty-row { display: inline-flex; align-items: center; gap: 0; margin-top: auto; }
.qty-btn {
  width: 26px; height: 26px;
  border: 1px solid var(--line-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.qty-btn:hover { border-color: var(--ink); }
.qty-val {
  min-width: 30px; text-align: center;
  font-size: 13px; font-variant-numeric: tabular-nums;
}
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 8px; }
.cart-item-right .price { font-size: 13.5px; font-variant-numeric: tabular-nums; }
.cart-item-remove { font-size: 11px; color: var(--ink-3); text-decoration: underline; }
.cart-item-remove:hover { color: var(--ink); }

.drawer-foot {
  border-top: 1px solid var(--line);
  padding: 22px 26px 26px;
  display: flex; flex-direction: column; gap: 14px;
}
.totals-row {
  display: flex; justify-content: space-between;
  font-size: 13px;
}
.totals-row.total {
  font-size: 16px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-weight: 500;
}
.btn-wa {
  background: var(--whatsapp-dark); color: white;
  border-color: var(--whatsapp-dark);
}
.btn-wa:hover { background: var(--whatsapp); border-color: var(--whatsapp); color: white; }
.totals-note { font-size: 11.5px; color: var(--ink-3); text-align: center; line-height: 1.5; }

/* CHECKOUT FORM */
.checkout-form { display: flex; flex-direction: column; gap: 14px; padding: 6px 0 12px; }
.checkout-form h4 {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-2); margin-top: 6px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-2);
}
.field input, .field textarea, .field select {
  padding: 11px 12px;
  border: 1px solid var(--line-2);
  background: var(--white);
  border-radius: 2px;
  outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ink); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.radio-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.radio-card {
  padding: 12px;
  border: 1px solid var(--line-2);
  cursor: pointer;
  text-align: left;
  font-size: 12.5px;
  display: flex; flex-direction: column; gap: 2px;
  transition: all .2s;
  border-radius: 2px;
}
.radio-card strong { font-weight: 500; font-size: 13px; }
.radio-card span { color: var(--ink-3); font-size: 11px; }
.radio-card.active { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.radio-card.active span { color: rgba(255,255,255,0.7); }
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; color: var(--ink-2); letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 0;
}
.back-link:hover { color: var(--ink); }

/* PRODUCT MODAL */
.modal-scrim {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,20,20,0.5);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.modal-scrim.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--bg);
  max-width: 980px; width: 100%;
  max-height: 88vh;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform .35s ease;
}
.modal-scrim.open .modal { transform: translateY(0); }
.modal-media { background: var(--cement); display: grid; grid-template-rows: 1fr 1fr; gap: 2px; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }
.modal-body {
  padding: 36px 36px 28px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 18px;
}
.modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  z-index: 10;
}
.modal-eyebrow { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); }
.modal h2 { font-size: 28px; font-weight: 400; letter-spacing: -0.01em; line-height: 1.1; }
.modal .desc { font-size: 14px; color: var(--ink-2); line-height: 1.6; }
.modal .price { font-size: 22px; font-variant-numeric: tabular-nums; font-weight: 400; }
.modal-section h4 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 10px; }
.size-row { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn {
  min-width: 44px; height: 40px; padding: 0 12px;
  border: 1px solid var(--line-2);
  font-size: 12.5px; letter-spacing: 0.05em;
}
.size-btn:hover { border-color: var(--ink); }
.size-btn.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.color-row { display: flex; gap: 10px; }
.swatch {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  position: relative;
}
.swatch.active::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--ink);
}
.modal-features {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12.5px; color: var(--ink-2);
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.modal-features div { display: flex; gap: 8px; }
.modal-features div::before { content: '—'; color: var(--ink-3); }

/* RESPONSIVE — tablet */
@media (max-width: 980px) {
  .container { padding: 0 20px; }
  .header-bar {
    padding: 12px 18px;
    grid-template-columns: 44px 1fr 44px;
    gap: 8px;
  }
  .header-nav { display: none; }
  .header-logo {
    font-size: 15px;
    letter-spacing: 0.22em;
    text-align: center;
  }
  .header-icon-btn {
    min-width: 44px; min-height: 44px;
    justify-content: center;
  }
  .header-right { gap: 0; }
  .announce {
    font-size: 10px;
    letter-spacing: 0.14em;
    padding: 7px 12px;
  }

  /* Mobile-safe hero height (svh handles Safari URL bar collapse) */
  .hero {
    height: 72vh;
    height: 72svh;
    min-height: 480px;
    max-height: 720px;
  }
  .hero-meta { left: 20px; bottom: 24px; }
  .hero-meta-title { font-size: 12px; }
  .hero-cta-row { right: 20px; bottom: 24px; }
  .hero-cta-row .btn { padding: 11px 18px; font-size: 11px; }

  .section { padding: 56px 0; }
  .section-tight { padding: 40px 0; }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
  }
  .section-title-lg {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.08;
  }

  .drop { grid-template-columns: 1fr; min-height: auto; }
  .drop-image { aspect-ratio: 4/3; }
  .drop-content {
    padding: 44px 24px;
    max-width: 100%;
  }
  .drop-content h2 {
    font-size: clamp(28px, 7vw, 36px);
    line-height: 1.08;
  }
  .drop-content p { font-size: 14px; }

  .premium-grid { grid-template-columns: 1fr 1fr; gap: 28px 14px; }
  .catalog-grid { grid-template-columns: 1fr 1fr; gap: 28px 14px; }

  /* Product cards: show + always (no hover on mobile) */
  .product-add {
    opacity: 1;
    transform: none;
    width: 40px; height: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  }
  .product-name { font-size: 13px; }
  .product-desc { font-size: 11.5px; }
  .product-price { font-size: 13px; }

  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-card { padding: 30px 24px; min-height: auto; }
  .why-card h3 { font-size: 17px; }

  .store { grid-template-columns: 1fr; }
  .store-photo { aspect-ratio: 4/3; }
  .store-content {
    padding: 44px 24px;
    gap: 18px;
  }
  .store-content h2 { font-size: clamp(26px, 7vw, 32px); }
  .store-detail {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }
  .store-detail dt { padding-top: 12px; }
  .store-detail dt:first-of-type { padding-top: 0; }
  .store-cta { flex-direction: column; align-items: stretch; }
  .store-cta .btn { width: 100%; }

  .testi-grid { grid-template-columns: 1fr; gap: 16px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; padding-bottom: 36px; }

  .drawer { width: 100%; }
  .drawer-head { padding: 18px 20px; padding-top: calc(18px + env(safe-area-inset-top, 0)); }
  .drawer-body { padding: 8px 20px; }
  .drawer-foot { padding: 18px 20px calc(20px + env(safe-area-inset-bottom, 0)); }

  .modal {
    grid-template-columns: 1fr;
    max-height: 92vh;
    max-height: 92svh;
  }
  .modal-media {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    aspect-ratio: 4/5;
    max-height: 50vh;
  }
  .modal-media img:nth-child(2) { display: none; }
  .modal-body { padding: 22px 20px 28px; gap: 14px; }
  .modal h2 { font-size: 22px; }
  .modal .price { font-size: 18px; }

  /* Bigger tap targets */
  .qty-btn { width: 36px; height: 36px; font-size: 15px; }
  .qty-val { min-width: 36px; }
  .swatch { width: 32px; height: 32px; }
  .color-dot { width: 13px; height: 13px; }
  .size-btn { min-width: 48px; height: 44px; font-size: 13px; }
  .filter-btn { padding: 10px 14px; font-size: 12px; }

  /* WA FAB — respect iOS home indicator */
  .wa-fab {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0));
    width: 52px; height: 52px;
  }
  .wa-fab svg { width: 26px; height: 26px; }
  .wa-fab-label { display: none; }
}

/* RESPONSIVE — phone */
@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .premium-grid { grid-template-columns: 1fr 1fr; gap: 22px 12px; }
  .catalog-grid { grid-template-columns: 1fr 1fr; gap: 22px 12px; }

  .filters {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-bottom: 14px;
  }
  .filter-group {
    overflow-x: auto;
    flex-wrap: nowrap;
    margin: 0 -16px;
    padding: 0 16px 4px;
    scrollbar-width: none;
  }
  .filter-group::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; }
  .filter-count { text-align: right; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Stack drop CTAs full-width */
  .drop-content > div:last-child { flex-direction: column; align-items: stretch; }
  .drop-content > div:last-child .btn { width: 100%; }
  .drop-content > div:last-child .btn-text { justify-content: center; padding-top: 4px; }

  .checkout-form .field-row { grid-template-columns: 1fr; }
  .checkout-form .radio-row { grid-template-columns: 1fr; }

  /* Cart item compacto */
  .cart-item { grid-template-columns: 64px 1fr auto; gap: 12px; padding: 16px 0; }
  .cart-item-img { width: 64px; height: 80px; }
  .cart-item-info .name { font-size: 13px; }
}

/* Phones muy chicos */
@media (max-width: 380px) {
  .premium-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .product-media { aspect-ratio: 1 / 1.15; }
}
