/* ─── RESET & BASE ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #a07830;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --gray: #888;
  --light: #f7f5f2;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --radius: 2px;
  --transition: .3s ease;
  --shadow: 0 4px 30px rgba(0,0,0,.08);
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--dark); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── ANNOUNCEMENT BAR ─────────────────────────── */
.announcement-bar {
  background: var(--black);
  color: var(--gold);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}
.announcement-bar span {
  display: inline-block;
  animation: ticker 30s linear infinite;
}
@keyframes ticker {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ─── HEADER ────────────────────────────────────── */
#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #e8e0d4;
  transition: box-shadow var(--transition);
}
#header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 48px; width: auto; }
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 32px;
}
.main-nav a {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  position: relative;
  padding-bottom: 2px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.main-nav a:hover::after { width: 100%; }
.header-actions { display: flex; gap: 8px; }
.icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  transition: color var(--transition);
  position: relative;
}
.icon-btn:hover { color: var(--gold); }
.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--gold);
  color: var(--black);
  font-size: .55rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--dark); transition: var(--transition); }

/* ─── BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  color: var(--black);
  border: 1px solid transparent;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid currentColor;
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}
.btn.full { width: 100%; }

/* ─── HERO ──────────────────────────────────────── */
.hero {
  display: block;
  width: 100%;
  background: #13121a;
  overflow: hidden;
}
.hero .hero-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ─── CATEGORY STRIP ────────────────────────────── */
.cat-strip {
  background: var(--black);
  padding: 40px 24px;
}
.cat-strip-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--white);
  transition: color var(--transition);
}
.cat-item:hover { color: var(--gold); }
.cat-icon {
  width: 60px; height: 60px;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  transition: all var(--transition);
}
.cat-item:hover .cat-icon {
  border-color: var(--gold);
  background: rgba(201,168,76,.1);
}
.cat-item span {
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ─── SECTION HEADERS ───────────────────────────── */
.products-section {
  padding: 80px 24px;
}
.products-section.bg-light { background: var(--light); }
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-label {
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--black);
  margin-bottom: 16px;
}
.gold-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}
.section-footer { text-align: center; margin-top: 48px; }

/* ─── PRODUCTS GRID ─────────────────────────────── */
.products-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.products-section.bg-light .product-card { background: var(--white); }
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.product-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  font-weight: 500;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}
.product-placeholder.large { height: 400px; border-radius: 0; }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 1;
}
.product-badge.red { background: #e53e3e; color: var(--white); }
.product-badge.black { background: var(--black); color: var(--gold); }
.product-actions {
  position: absolute;
  bottom: -50px;
  left: 0; right: 0;
  padding: 12px;
  background: rgba(0,0,0,.85);
  display: flex;
  gap: 8px;
  transition: bottom var(--transition);
}
.product-card:hover .product-actions { bottom: 0; }
.product-actions button {
  flex: 1;
  padding: 10px;
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
  transition: all var(--transition);
}
.product-actions button.primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.product-actions button:hover { opacity: .85; }
.product-info { padding: 16px; }
.product-brand {
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-prices { display: flex; align-items: center; gap: 10px; }
.product-price {
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
}
.product-original {
  font-size: .8rem;
  color: var(--gray);
  text-decoration: line-through;
}
.product-discount {
  font-size: .65rem;
  font-weight: 700;
  color: #e53e3e;
  letter-spacing: .05em;
}

/* ─── PROMO BANNER ──────────────────────────────── */
.promo-banner {
  background: linear-gradient(135deg, var(--black) 0%, #1c1208 100%);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.promo-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.promo-text .promo-label {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.promo-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 32px;
}
.promo-text h2 em { color: var(--gold); font-style: italic; }
.promo-deco { position: relative; }
.promo-logo-bg {
  height: 200px;
  width: auto;
  opacity: .1;
  filter: brightness(10);
}

/* ─── LIQUIDACIÓN ───────────────────────────────── */
.liquidacion-section {
  background: linear-gradient(180deg, var(--black) 0%, #0d0806 100%);
  padding: 80px 24px;
}
.liquidacion-header {
  text-align: center;
  margin-bottom: 48px;
}
.liquidacion-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 32px;
}
.liquidacion-section .product-card { background: var(--dark2); }
.liquidacion-section .product-name { color: var(--white); }
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cd-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.cd-box span {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  min-width: 64px;
  text-align: center;
  line-height: 1;
}
.cd-box small {
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.cd-sep {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  opacity: .5;
  margin-bottom: 16px;
}
.liquidacion-section .section-footer { margin-top: 48px; }

/* ─── NEWSLETTER ────────────────────────────────── */
.newsletter {
  background: var(--light);
  padding: 80px 24px;
}
.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.nl-logo {
  height: 60px;
  width: auto;
  margin: 0 auto 24px;
}
.newsletter h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 12px;
}
.newsletter p {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 32px;
}
.nl-form {
  display: flex;
  gap: 0;
  border: 1px solid #d4c4a0;
}
.nl-form input {
  flex: 1;
  padding: 14px 20px;
  font-family: var(--font-sans);
  font-size: .85rem;
  border: none;
  background: var(--white);
  outline: none;
  color: var(--dark);
}
.nl-form .btn { border-radius: 0; }

/* ─── FOOTER ────────────────────────────────────── */
footer {
  background: var(--black);
  color: rgba(255,255,255,.7);
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p {
  font-size: .8rem;
  line-height: 1.8;
  margin: 16px 0 24px;
}
.footer-logo { height: 64px; width: auto; margin-bottom: 0; filter: brightness(0) invert(1); opacity: 1; }
.footer-localweb { margin-top:20px; font-size:.68rem; color:rgba(255,255,255,.3); }
.footer-localweb a { color:var(--gold); text-decoration:none; font-weight:600; }
.footer-localweb a:hover { color:#fff; }
.socials { display: flex; gap: 16px; }
.socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
  color: rgba(255,255,255,.6);
}
.socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links h4 {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-links a {
  display: block;
  font-size: .8rem;
  margin-bottom: 10px;
  transition: color var(--transition);
  color: rgba(255,255,255,.6);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 24px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .72rem;
  color: rgba(255,255,255,.35);
}
.payment-icons { display: flex; gap: 12px; }
.payment-icons span {
  border: 1px solid rgba(255,255,255,.15);
  padding: 4px 10px;
  border-radius: 3px;
  font-size: .65rem;
  letter-spacing: .05em;
}

/* ─── MODAL ─────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  padding: 24px;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  max-width: 800px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  transform: translateY(20px);
  transition: transform var(--transition);
}
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  font-size: .9rem;
  color: var(--dark);
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.modal-img { background: #f5f5f5; display:flex; flex-direction:column; min-height:400px; }
.modal-img #modalImg {
  flex:1;
  display:flex; align-items:center; justify-content:center;
  background:#f5f5f5;
  overflow:hidden;
  min-height:360px;
}
.modal-img #modalImg img {
  width:100%; height:100%;
  object-fit:contain !important;
  background:#f5f5f5;
  max-height:480px;
}
/* Sobreescribir estilos del product-placeholder dentro del modal */
.modal-img .product-placeholder { background: #f5f5f5 !important; height:auto; min-height:360px; width:100%; }
.modal-thumbs { display: flex; gap: 8px; padding: 12px; background: var(--light); }
.modal-thumbs img {
  width: 56px; height: 70px; object-fit: cover; border-radius: 2px; cursor: pointer;
  opacity: .55; transition: opacity .2s, outline .2s; outline: 2px solid transparent;
}
.modal-thumbs img:hover { opacity: .85; }
.modal-thumbs img.active { opacity: 1; outline-color: var(--gold); }
.modal-info { padding: 40px 32px; }
.modal-badge {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.modal-info h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.2;
}
.modal-prices { display: flex; gap: 12px; align-items: baseline; margin-bottom: 16px; }
.modal-price { font-size: 1.4rem; font-weight: 600; }
.modal-original { font-size: .9rem; color: var(--gray); text-decoration: line-through; }
.modal-desc { font-size: .82rem; color: var(--gray); line-height: 1.7; margin-bottom: 24px; }
/* ─── COLOR PICKER ──────────────────────────────── */
.color-picker { margin-bottom: 20px; }
.color-picker p { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; font-weight: 500; }
.colors { display: flex; gap: 8px; flex-wrap: wrap; }
.color-btn {
  padding: 6px 14px; border: 2px solid #ddd; border-radius: 20px;
  font-size: .72rem; font-weight: 500; cursor: pointer; transition: all .15s;
  background: var(--white);
}
.color-btn.active { border-color: var(--dark); background: var(--dark); color: var(--white); }
.color-btn:hover:not(.active) { border-color: var(--gold); color: var(--gold); }

/* ─── SIZE PICKER ───────────────────────────────── */
.size-picker { margin-bottom: 24px; }
.size-picker p { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; font-weight: 500; }
.sizes { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn {
  min-width: 44px; height: 44px; padding: 0 8px;
  border: 1px solid #ddd;
  font-size: .75rem; font-weight: 500;
  transition: all var(--transition);
  border-radius: var(--radius);
  position: relative;
}
.size-btn.active, .size-btn:hover:not(.sin-stock) {
  border-color: var(--dark); background: var(--dark); color: var(--white);
}
.size-btn.sin-stock {
  opacity: .35; cursor: not-allowed; text-decoration: line-through;
}
.modal-actions { display: flex; flex-direction: column; gap: 10px; }

/* ─── CART DRAWER ───────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 150;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.active { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 400px; height: 100vh; height: 100dvh;
  background: var(--white);
  z-index: 160;
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex; flex-direction: column;
}
.cart-drawer.active { transform: translateX(0); }
.cart-head {
  flex-shrink: 0;
  padding: 24px;
  border-bottom: 1px solid #eee;
  display: flex; align-items: center; justify-content: space-between;
}
.cart-head h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 300; }
.cart-head button { font-size: 1.2rem; color: var(--gray); }
.cart-items { flex: 1; min-height: 0; overflow-y: auto; padding: 24px; }
.cart-empty { color: var(--gray); font-size: .85rem; text-align: center; margin-top: 40px; }
.cart-foot {
  flex-shrink: 0;
  padding: 24px;
  border-top: 1px solid #eee;
}
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
  font-size: .85rem;
}
.cart-total strong { font-size: 1.2rem; }

/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── TABLET ── */
@media (max-width: 800px) {
  /* Header */
  .header-inner { gap: 8px; padding: 0 16px; }
  .main-nav {
    display: none; flex-direction: column;
    position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
    background: var(--white); padding: 32px 24px;
    gap: 0; z-index: 90; overflow-y: auto;
    border-top: 1px solid #eee;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 16px 0; font-size: .85rem; letter-spacing: .08em;
    border-bottom: 1px solid #f0ece4;
  }
  .main-nav a::after { display: none; }
  .nav-toggle { display: flex; }
  /* Hero */
  .hero .hero-img { width: 100%; height: auto; }
  .hero-online-text { top: 38%; left: 68%; font-size: .45rem; letter-spacing: .3em; }
  .hero-quien-soy-btn { bottom: 10%; left: 68%; font-size: .62rem; padding: 8px 20px; border-width: 1.5px; }
  /* Cat strip */
  .cat-strip { padding: 28px 16px; }
  .cat-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  /* Sections */
  .products-section { padding: 52px 16px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  /* Promo banner */
  .promo-banner { padding: 52px 20px; }
  .promo-banner-inner { flex-direction: column; gap: 24px; }
  .promo-deco { display: none; }
  .promo-text h2 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  /* Liquidación */
  .liquidacion-section { padding: 52px 16px; }
  .liquidacion-section .products-grid { grid-template-columns: repeat(2, 1fr); }
  /* Newsletter */
  .newsletter { padding: 52px 20px; }
  .nl-form { flex-direction: column; }
  .nl-form input { width: 100%; }
  .nl-form .btn { width: 100%; border-radius: var(--radius); justify-content: center; }
  /* Modal producto */
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-box {
    grid-template-columns: 1fr; border-radius: 12px 12px 0 0;
    max-height: 90vh; overflow-y: auto;
  }
  .modal-img { background: var(--black); }
  .modal-img #modalImg { height: auto; min-height: 280px; max-height: 60vh; }
  .modal-img #modalImg img { object-fit: contain !important; max-height: 60vh; }
  .modal-info { padding: 28px 20px; }
  /* Cart */
  .cart-drawer { width: 100%; }
  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 20px; }
}

/* ── MOBILE ── */
@media (max-width: 480px) {
  /* Announcement bar */
  .announcement-bar { font-size: .62rem; padding: 7px 0; }
  /* Header */
  .header-inner { height: 60px; }
  .logo img { height: 40px; }
  /* Hero */
  .hero .hero-img { width: 100%; height: auto; }
  .hero-online-text { top: 36%; left: 68%; font-size: .38rem; letter-spacing: .25em; }
  .hero-quien-soy-btn { bottom: 8%; left: 68%; font-size: .55rem; padding: 6px 16px; border-width: 1.5px; }
  .btn { padding: 13px 24px; font-size: .68rem; }
  /* Cat strip */
  .cat-strip-inner { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .cat-icon { width: 48px; height: 48px; font-size: 1.1rem; }
  .cat-item span { font-size: .55rem; letter-spacing: .08em; }
  /* Sections */
  .products-section { padding: 40px 12px; }
  .section-header { margin-bottom: 28px; }
  .section-header h2 { font-size: 1.7rem; }
  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-info { padding: 10px 10px 12px; }
  .product-name { font-size: .9rem; }
  .product-price { font-size: .85rem; }
  /* Siempre visible en mobile (no depende del hover) */
  .product-actions { bottom: 0 !important; }
  /* Countdown */
  .cd-box span { font-size: 1.8rem; min-width: 48px; }
  /* Newsletter */
  .newsletter { padding: 40px 16px; }
  .newsletter h3 { font-size: 1.6rem; }
  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; padding: 36px 20px; }
  .footer-brand { grid-column: auto; }
  /* Modal consulta */
  .consulta-box { border-radius: 12px 12px 0 0; }
  .consulta-form-wrap { padding: 20px 16px; }
}

/* ══════════════════════════════════════════════════
   CATÁLOGO CON FILTROS
══════════════════════════════════════════════════ */
.catalogo-section {
  padding: 0 0 80px;
  background: var(--white);
}
.catalogo-wrap {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 0 24px;
}

/* ── Overlay mobile ── */
.filter-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 200;
  backdrop-filter: blur(2px);
}
.filter-overlay.active { display: block; }

/* ── Sidebar ── */
.filter-sidebar {
  width: 240px;
  min-width: 240px;
  background: var(--white);
  border-right: 1px solid #ede8e0;
  position: sticky;
  top: 72px;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  scrollbar-width: thin;
  padding-bottom: 24px;
}
.filter-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 18px 14px;
  border-bottom: 1px solid #ede8e0;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 2;
}
.filter-sidebar-head span {
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--dark);
}
.filter-clear-all {
  font-size: .62rem;
  color: var(--gold-dark);
  border: none;
  background: none;
  cursor: pointer;
  letter-spacing: .05em;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}
.filter-clear-all:hover { color: var(--gold); }
.filter-close-btn {
  display: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light);
  font-size: .8rem;
  color: var(--dark);
  align-items: center; justify-content: center;
  border: none;
  cursor: pointer;
}

/* ── Filter sections (accordion) ── */
.filter-section {
  border-bottom: 1px solid #f2ede6;
}
.filter-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 18px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.filter-section-title:hover { color: var(--gold-dark); }
.fs-arrow {
  font-size: .65rem;
  transition: transform .25s;
  color: var(--gray);
}
.filter-section-body {
  display: none;
  padding: 0 18px 14px;
  flex-direction: column;
  gap: 2px;
}
.filter-section-body.open { display: flex; }
.filter-section.open > .filter-section-body { display: flex; }

.filter-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e0d8cc;
  border-radius: 3px;
  padding: 8px 10px;
  background: var(--light);
}
.filter-search-wrap svg { color: var(--gray); flex-shrink: 0; }
.filter-search-wrap input {
  border: none;
  background: none;
  outline: none;
  font-size: .75rem;
  color: var(--dark);
  width: 100%;
  font-family: var(--font-sans);
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: .75rem;
  color: var(--dark);
  cursor: pointer;
  transition: color .15s;
  user-select: none;
}
.filter-check:hover { color: var(--gold-dark); }
.filter-check input[type=checkbox] {
  width: 14px; height: 14px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
.filter-check-special { font-size: .78rem; }
.filter-empty-hint {
  font-size: .68rem;
  color: var(--gray);
  font-style: italic;
}

.filter-select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #e0d8cc;
  border-radius: 3px;
  font-size: .74rem;
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  outline: none;
  cursor: pointer;
}
.filter-select:focus { border-color: var(--gold); }

.filter-range-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-range-wrap input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #e0d8cc;
  border-radius: 3px;
  font-size: .74rem;
  font-family: var(--font-sans);
  color: var(--dark);
  outline: none;
  min-width: 0;
}
.filter-range-wrap input:focus { border-color: var(--gold); }
.filter-range-sep { color: var(--gray); font-size: .8rem; flex-shrink: 0; }

.filter-apply-wrap {
  padding: 18px 18px 8px;
  display: none;
}

/* ── Catálogo main ── */
.catalogo-main {
  flex: 1;
  min-width: 0;
  padding: 0 0 0 36px;
}
.catalogo-header {
  padding: 48px 0 20px;
}
.catalogo-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0 20px;
  border-bottom: 1px solid #ede8e0;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.filter-mobile-btn {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border: 1px solid #ede8e0;
  border-radius: 3px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  background: var(--white);
  cursor: pointer;
  position: relative;
  transition: border-color .2s;
}
.filter-mobile-btn:hover { border-color: var(--gold); }
.filter-count-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--gold);
  color: var(--white);
  font-size: .55rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f2ece0;
  color: var(--dark);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 4px 10px 4px 10px;
  border-radius: 100px;
  border: 1px solid #e0d8cc;
  white-space: nowrap;
}
.filter-chip button {
  background: none;
  border: none;
  padding: 0 0 0 2px;
  font-size: .7rem;
  color: var(--gray);
  cursor: pointer;
  line-height: 1;
  transition: color .15s;
}
.filter-chip button:hover { color: var(--dark); }
.catalogo-toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.catalogo-count {
  font-size: .68rem;
  color: var(--gray);
  white-space: nowrap;
  letter-spacing: .04em;
}
.catalogo-sort {
  padding: 7px 12px;
  border: 1px solid #ede8e0;
  border-radius: 3px;
  font-size: .72rem;
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  outline: none;
  cursor: pointer;
}
.catalogo-sort:focus { border-color: var(--gold); }

/* ── Responsive catálogo ── */
@media (max-width: 900px) {
  .filter-sidebar {
    position: fixed;
    top: 0; left: -100%;
    width: 290px;
    height: 100vh;
    max-height: 100vh;
    z-index: 210;
    transition: left .3s ease;
    padding-bottom: 80px;
    box-shadow: 4px 0 24px rgba(0,0,0,.15);
  }
  .filter-sidebar.open { left: 0; }
  .filter-close-btn { display: flex; }
  .filter-apply-wrap { display: block; }
  .filter-mobile-btn { display: flex; }
  .catalogo-wrap { padding: 0 16px; }
  .catalogo-main { padding-left: 0; }
  .catalogo-header { padding: 32px 0 16px; }
}

/* ─── HEADER WA / DW BUTTONS ────────────────────── */
.hdr-wa-btn { color: #25D366; }
.hdr-wa-btn:hover { background: rgba(37,211,102,.1); }
.hdr-dw-btn { color: var(--gold); border: 1px solid var(--gold) !important; border-radius: 3px !important; padding: 4px 7px !important; font-size: .58rem !important; }
.hdr-dw-btn:hover { background: var(--gold); color: #fff; }

/* ─── HERO OVERLAY ──────────────────────────────── */
.hero { position: relative; }
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-online-text {
  position: absolute;
  top: 48%;
  left: 61%;
  transform: translateX(-50%);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: clamp(.38rem, .82vw, .6rem);
  letter-spacing: .55em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: .9;
}
.hero-quien-soy-btn {
  position: absolute;
  bottom: 14%;
  left: 63%;
  transform: translateX(-50%);
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: clamp(.85rem, 1.9vw, 1.15rem);
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: clamp(12px,1.9vw,20px) clamp(34px,5.5vw,64px);
  border-radius: 40px;
  cursor: pointer;
  pointer-events: all;
  white-space: nowrap;
  animation: titile 2.8s ease-in-out infinite;
  transition: background .25s, color .25s, box-shadow .25s;
}
.hero-quien-soy-btn:hover,
.hero-quien-soy-btn:active {
  background: var(--gold);
  color: #13121a;
  animation: none;
  box-shadow: 0 0 28px rgba(201,168,76,.6);
}
@keyframes titile {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201,168,76,0); }
  50%       { opacity: .75; box-shadow: 0 0 18px 5px rgba(201,168,76,.3); }
}

/* ─── POPUPS GENERALES ──────────────────────────── */
.vl-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.vl-overlay.open { display: flex; }
.vl-popup {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.vl-popup-close {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0,0,0,.08);
  border: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: .82rem;
  z-index: 2;
}
.vl-popup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 10px 10px 0 0;
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
}
.wa-header { background: #25D366; }
.dw-header { background: linear-gradient(135deg,#1a1a2e,#16213e); }
.qs-header { background: linear-gradient(135deg,#c9a84c,#a07830); font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; }
.vl-form-row { padding: 0 20px; margin-bottom: 14px; }
.vl-form-row label { display: block; font-size: .72rem; color: #888; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; }
.vl-form-row input, .vl-form-row select, .vl-form-row textarea {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 9px 12px;
  font-size: .85rem;
  font-family: var(--font-sans);
  color: var(--dark);
  outline: none;
  transition: border-color .2s;
}
.vl-form-row input:focus, .vl-form-row select:focus, .vl-form-row textarea:focus { border-color: #25D366; }
.vl-form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vl-form-row.two-col > div label { display: block; font-size: .72rem; color: #888; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; }
#waForm { padding-top: 16px; padding-bottom: 4px; }
.vl-btn-send {
  display: block;
  width: calc(100% - 40px);
  margin: 8px 20px 20px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 13px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.vl-btn-send:hover { background: #1da851; }
.vl-btn-sitio {
  display: inline-block;
  background: linear-gradient(135deg,#c9a84c,#a07830);
  color: #fff;
  padding: 12px 32px;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
}
.vl-btn-sitio:hover { opacity: .85; }
.qs-popup { max-width: 520px; }

/* ─── HERO OVERLAY MOBILE ───────────────────────── */
@media (max-width: 768px) {
  .hero-online-text { font-size: .38rem; letter-spacing: .25em; }
  .hero-quien-soy-btn { font-size: .58rem; padding: 6px 16px; border-width: 1.5px; }
}
@media (max-width: 480px) {
  .hero-online-text { font-size: .3rem; letter-spacing: .2em; }
  .hero-quien-soy-btn { font-size: .46rem; padding: 4px 11px; border-width: 1px; }
}
