/* ===== VARIABLES ===== */
:root {
  --color-bg: #ffffff;
  --color-surface: #f7f4f0;
  --color-text: #1B1B1B;
  --color-text-muted: #666666;
  --color-accent: #B8956A;
  --color-accent-hover: #9a7a55;
  --color-border: rgba(0,0,0,0.1);
  --color-border-strong: rgba(0,0,0,0.2);
  --color-header-bg: #ffffff;
  --color-header-text: #1B1B1B;
  --color-wa-green: #25D366;
  --color-wa-hover: #1ebe59;
  --font-sans: 'Montserrat', sans-serif;
  --font-display: 'Montserrat', sans-serif;
  --radius: 0px;
  --radius-sm: 2px;
  --shadow-card: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 4px 20px rgba(0,0,0,0.12);
  --transition: 0.2s ease;
  --max-width: 1200px;
  --header-h: 68px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--color-text); background: var(--color-bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== UTILS ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-header-bg);
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo { display: flex; align-items: center; gap: 10px; color: var(--color-text); }
.logo-img { height: 42px; width: 42px; object-fit: contain; filter: brightness(0); }
.logo-text { display: none; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: var(--color-text);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 12px;
  transition: color var(--transition);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.main-nav a:hover, .main-nav a.active { color: var(--color-accent); }
.main-nav a.nav-cta {
  background: var(--color-wa-green);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}
.main-nav a.nav-cta:hover { background: var(--color-wa-hover); color: #fff; }

.menu-toggle { display: none; color: var(--color-text); padding: 8px; }

/* ===== HERO CAROUSEL ===== */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-carousel {
  position: relative;
  min-height: 520px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  min-height: 520px;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: all;
  position: relative;
  padding: 72px 0 72px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
/* Hero arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.25);
  transition: background var(--transition);
  line-height: 1;
}
.hero-arrow:hover { background: rgba(255,255,255,0.3); }
.hero-prev { left: 16px; }
.hero-next { right: 16px; }
/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  transition: background var(--transition), transform var(--transition);
}
.hero-dot.active { background: #fff; transform: scale(1.3); }
.hero-badge {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.8vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 em { color: var(--color-accent); font-style: normal; }
.hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 480px;
  font-weight: 400;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-text);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 12px 28px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  transition: opacity var(--transition);
}
.btn-primary:hover { background: var(--color-accent); opacity: 1; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.6);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 12px 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition);
}
.btn-outline:hover { border-color: #fff; color: #fff; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== BENEFITS BAR ===== */
.benefits-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
}
.benefits-bar .container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--color-text);
}
.benefit-item svg { color: var(--color-accent); flex-shrink: 0; }
.benefit-item strong { display: block; font-weight: 700; font-size: 0.82rem; }
.benefit-item span { color: var(--color-text-muted); font-size: 0.76rem; }

/* ===== CATALOG SECTION ===== */
.catalog-section { padding: 56px 0; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-header p { color: var(--color-text-muted); font-size: 0.9rem; max-width: 440px; margin: 0 auto; }

/* ===== FILTERS — ICON CARDS ===== */
.catalog-search-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.catalog-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 480px;
  background: #f5f2ee;
  border: 1.5px solid #e0d8cf;
  border-radius: 40px;
  padding: 0 16px;
  gap: 8px;
  transition: border-color 0.2s;
}
.catalog-search:focus-within {
  border-color: var(--color-accent);
  background: #fff;
}
.catalog-search svg {
  flex-shrink: 0;
  color: #9e8a72;
}
.catalog-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  color: var(--color-text);
  padding: 12px 0;
  outline: none;
  font-family: inherit;
}
.catalog-search input::placeholder { color: #b0a090; }
.catalog-search__clear {
  background: none;
  border: none;
  cursor: pointer;
  color: #b0a090;
  font-size: 0.9rem;
  padding: 4px;
  line-height: 1;
  display: none;
}
.catalog-search__clear.visible { display: block; }
.filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 14px 10px;
  background: #fff;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  min-width: 80px;
}
.filter-cat-card:hover {
  border-color: var(--color-text);
  background: var(--color-surface);
}
.filter-cat-card.active {
  border-color: var(--color-text);
  background: var(--color-text);
}
.filter-cat-card.active .cat-name { color: #fff; }
.filter-cat-card.active .cat-icon { color: #fff; }
.cat-icon {
  width: 36px;
  height: 36px;
  color: var(--color-text);
}
.cat-icon svg { width: 100%; height: 100%; }
.cat-name {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--color-text-muted);
  line-height: 1.2;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-card-hover); }

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-surface);
  cursor: pointer;
}
.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.04); }
.product-card__img-overlay { display: none; }

/* Discount badge */
.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-text);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}

.product-card__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--color-text);
  text-transform: uppercase;
}
.product-card__name a:hover { color: var(--color-accent); }
.product-card__desc {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.product-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.product-card__price { display: none; }

.product-card__prices {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}
.price-main {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
}
.price-consultar {
  font-size: 0.88rem;
  color: #888;
  font-style: italic;
}
.price-cuotas {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}
.price-cuotas strong {
  color: var(--color-accent);
  font-weight: 700;
}
.price-promo {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}
.price-promo strong {
  color: #1a7a3c;
  font-weight: 700;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-text);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: opacity var(--transition);
}
.btn-wa:hover { background: var(--color-accent); opacity: 1; }
.btn-wa svg { flex-shrink: 0; }

/* ===== PAYMENT LOGOS ===== */
.pay-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.pay-img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  opacity: 0.95;
}
.pay-img[alt="Mastercard"] { height: 22px; }

/* ===== NO RESULTS ===== */
.no-results { text-align: center; padding: 60px 0; color: var(--color-text-muted); display: none; }
.no-results.visible { display: block; }

/* ===== LOCATIONS SECTION ===== */
.locations-section {
  background: var(--color-surface);
  padding: 56px 0;
  border-top: 1px solid var(--color-border);
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  margin-top: 40px;
}
.location-card {
  background: #fff;
  padding: 28px;
  text-align: center;
}
.location-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: #fff;
}
.location-card h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.location-card p { font-size: 0.82rem; color: var(--color-text-muted); line-height: 1.6; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-text { color: #fff; font-size: 1.1rem; }
.footer-brand p { font-size: 0.82rem; margin-top: 12px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.82rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--color-accent); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: border-color var(--transition), color var(--transition);
}
.footer-social a:hover { border-color: var(--color-accent); color: var(--color-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.76rem; }

/* ===== FLOATING WA BUTTON ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-wa-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox__inner img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox__close {
  position: absolute;
  top: -42px;
  right: 0;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox__close:hover { background: rgba(255,255,255,0.3); }
.lightbox__caption {
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  margin-top: 12px;
}

/* ===== DETAIL PAGE ===== */
.detail-hero { padding: 40px 0; }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.detail-gallery__main {
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--color-surface);
  cursor: pointer;
}
.detail-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.detail-gallery__thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.detail-gallery__thumb {
  width: 68px;
  height: 68px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
}
.detail-gallery__thumb.active,
.detail-gallery__thumb:hover { border-color: var(--color-text); }
.detail-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.detail-info__cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}
.detail-info h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.2;
}
.detail-info__price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
}
.detail-info__divider { border: none; border-top: 1px solid var(--color-border); margin: 20px 0; }
.detail-info__desc { font-size: 0.92rem; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 28px; }
.btn-wa-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-wa-green);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px 32px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  transition: opacity var(--transition);
  width: 100%;
  justify-content: center;
}
.btn-wa-large:hover { background: var(--color-wa-hover); opacity: 1; }
.detail-info__note {
  text-align: center;
  font-size: 0.76rem;
  color: var(--color-text-muted);
  margin-top: 8px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 14px 0; border-bottom: 1px solid var(--color-border); margin-bottom: 0; }
.breadcrumb a, .breadcrumb span { font-size: 0.8rem; color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb span { color: var(--color-text); font-weight: 600; }
.breadcrumb .sep { margin: 0 8px; }

/* ===== RELATED ===== */
.related-section { padding: 48px 0; background: var(--color-surface); }

/* ===== MOBILE MENU ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 150;
  padding: 80px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  border-left: 1px solid var(--color-border);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  color: var(--color-text);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mobile-nav a:hover { color: var(--color-accent); }
.mobile-nav a.nav-cta {
  background: var(--color-wa-green);
  border: none;
  color: #fff;
  margin-top: 20px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--color-text);
  font-size: 1.4rem;
  padding: 8px;
}

/* ===== NOSOTROS SECTION ===== */
.nosotros-section { padding: 56px 0; background: #fff; border-top: 1px solid var(--color-border); }
.nosotros-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.nosotros-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--color-border); border: 1px solid var(--color-border); }
.nosotros-stat {
  background: var(--color-surface);
  padding: 24px;
  text-align: center;
}
.nosotros-stat__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-text);
}
.nosotros-stat__label { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 4px; font-weight: 500; }
.nosotros-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.2;
}
.nosotros-text .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 10px;
}
.nosotros-text p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* ===== PRODUCT MODAL ===== */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: none;
  overflow-y: auto;
  background: rgba(0,0,0,0.7);
  padding: 24px 16px;
}
.product-modal.open { display: block; }
.product-modal__box {
  background: #fff;
  max-width: 960px;
  width: 100%;
  margin: 0 auto 40px;
  position: relative;
  overflow: hidden;
}
.product-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.06);
  color: var(--color-text);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--transition);
  line-height: 1;
}
.product-modal__close:hover { background: rgba(0,0,0,0.14); }
.product-modal__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: 36px;
}
.product-modal__main-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-surface);
}
.product-modal__main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-modal__thumbs {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.modal-thumb {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.modal-thumb.active, .modal-thumb:hover { border-color: var(--color-text); }
.modal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-modal__info { display: flex; flex-direction: column; }
.product-modal__cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.product-modal__name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 14px;
}
.modal-price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}
.product-modal__price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
}
.modal-price-cuotas {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
}
.modal-price-promo {
  font-size: 0.85rem;
  color: #1a7a3c;
  font-weight: 600;
}
.product-modal__desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  flex: 1;
}
.product-modal__related {
  border-top: 1px solid var(--color-border);
  padding: 28px 36px;
  background: var(--color-surface);
}
.product-modal__related h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

/* ===== MODAL CAROUSEL ===== */
.modal-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  cursor: grab;
}
.modal-carousel:active { cursor: grabbing; }
.modal-carousel::-webkit-scrollbar { display: none; }
.modal-carousel .product-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  cursor: pointer;
}
.modal-carousel .product-card__name {
  font-size: 0.82rem;
}
.modal-carousel .product-card__footer {
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
}
.modal-carousel .btn-wa {
  justify-content: center;
  font-size: 0.75rem;
  padding: 8px 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .benefits-bar .container { gap: 20px; }
  .hero-carousel, .hero-slide { min-height: 480px; }
  .hero-slide.active { padding: 52px 0 80px; }
  .hero-arrow { display: none; }
  .hero h1 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
  .filters { justify-content: center; flex-wrap: wrap; overflow-x: visible; }
  .filter-cat-card { flex-shrink: 1; min-width: 72px; }
  .nosotros-grid { grid-template-columns: 1fr; gap: 28px; }
  .product-modal { padding: 0; }
  .product-modal__box { min-height: 100dvh; margin: 0; }
  .product-modal__top { grid-template-columns: 1fr; gap: 20px; padding: 20px; }
  .product-modal__related { padding: 20px; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card__footer { flex-direction: column; align-items: stretch; }
  .btn-wa { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .benefits-bar .container { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 12px; justify-items: start; }
  .hero h1 { font-size: 1.35rem; }
  .hero-slide.active { padding: 44px 0 84px; }
  .hero p { font-size: 0.88rem; margin-bottom: 20px; }
  .hero-actions { gap: 8px; }
  .hero-dots { bottom: 22px; }
}
