/* ============================================================
   ALVEALPRO - Frontend Design Profesional B2B
   Blanco + Negro + #c1ff2c (verde)
   ============================================================ */

:root {
  --green: #c1ff2c;
  --green-hover: #d4ff6e;
  --green-light: rgba(193,255,44,.12);
  --dark: #1f282f;
  --darker: #11181f;
  --text: #1f282f;
  --text-light: #6c757d;
  --text-muted: #9ca3af;
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 2px 8px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.1);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-cond: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a { color: var(--text); text-decoration: none; transition: color .15s; }
a:hover { color: var(--text); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; padding: 0; margin: 0; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   UTILITY BAR
   ============================================================ */
.utility-bar {
  background: var(--darker);
  color: #fff;
  font-size: 12px;
  min-height: 34px;
}
.utility-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
}
.utility-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.utility-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.7);
}
.utility-bar-left .material-icons { font-size: 16px; color: var(--text); }
.utility-bar-right { display: flex; gap: 16px; }
.utility-bar-right a {
  color: rgba(255,255,255,.7);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.utility-bar-right a:hover { color: var(--text); }

/* ============================================================
   MAIN HEADER
   ============================================================ */
.main-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}
.header-logo { flex: 0 0 180px; }
.wordmark {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--text);
}
.wordmark span { color: var(--text);
  color: var(--green); }

.header-search { flex: 1; max-width: 480px; }
.header-search form {
  display: flex;
  height: 40px;
  border: 2px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
  background: var(--bg-alt);
}
.header-search form:focus-within {
  border-color: var(--text);
  box-shadow: 0 0 0 3px var(--green-light);
  background: var(--bg);
}
.header-search input {
  flex: 1;
  padding: 0 16px;
  border: 0;
  background: transparent;
  font-size: 14px;
  outline: none;
  font-family: var(--font);
}
.header-search button {
  width: 48px;
  border: 0;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .15s;
}
.header-search button:hover { color: var(--text); }
.header-search button .material-icons { font-size: 22px; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.quote-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
}
.quote-btn:hover { background: var(--darker); }
.quote-btn .material-icons { font-size: 20px; }
.quote-btn .badge {
  background: var(--green);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 10px;
  min-width: 20px;
  text-align: center;
}

/* ============================================================
   NAVEGACIÓN (dropdowns desktop + drawer mobile)
   ============================================================ */
.nav-bar {
  border-top: 1px solid var(--border-light);
  padding: 0;
}
.nav-menu {
  display: flex;
  align-items: stretch;
  gap: 2px;
  flex-wrap: nowrap;
  max-width: 100%;
}
.nav-menu > [hidden] { display: none !important; }
/* Anti-flash: antes de que el JS reparta, ocultar categorías sobrantes */
.nav-menu:not(.nav-ready) .nav-primary-item:nth-child(n+8) { display: none; }
.nav-item { position: relative; display: flex; flex: 0 0 auto; }
.nav-item-static {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 12px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  white-space: nowrap;
  transition: all .15s;
  cursor: pointer;
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--text); font-weight: 700; box-shadow: inset 0 -2px 0 var(--green); }
.nav-caret { font-size: 18px !important; opacity: .6; }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .15s, transform .15s, visibility .15s;
  z-index: 200;
}
.nav-item.has-dropdown:hover > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px 10px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--border-light);
}
.nav-dropdown-head span { font-size: 13px; font-weight: 700; color: var(--text); }
.nav-dropdown-head a { font-size: 12px; color: var(--text-light); }
.nav-dropdown-head a:hover { color: var(--text); }
.nav-dropdown-list { display: flex; flex-direction: column; }
.nav-dropdown-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-light);
  transition: all .12s;
}
.nav-dropdown-list li a:hover { background: var(--bg-alt); color: var(--text); }
.nav-dropdown-list li a span { font-size: 11px; color: var(--text-muted); }
/* Respaldo: ninguna lista de dropdown crece infinito */
.nav-dropdown-list { max-height: min(70vh, 460px); overflow-y: auto; }

/* Dropdown ancho: muchas subcategorías -> columnas */
.nav-dropdown--wide {
  width: min(640px, calc(100vw - 40px));
  min-width: 380px;
  max-width: calc(100vw - 40px);
}
.nav-dropdown-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 8px;
  align-content: start;
}
/* Si hay muchísimas (>12), 3 columnas en pantallas amplias */
@media (min-width: 1100px) {
  .nav-dropdown--wide.nav-dropdown--xwide { width: min(760px, calc(100vw - 40px)); }
  .nav-dropdown--xwide .nav-dropdown-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
/* Evitar que el dropdown ancho se salga por la derecha del viewport */
.nav-dropdown.align-right { left: auto; right: 0; }

/* Mega dropdown (Más categorías) */
.nav-more { margin-left: 0; }
.nav-dropdown-mega {
  width: min(560px, calc(100vw - 40px));
  min-width: 0;
  left: auto;
  right: 0;
  max-width: calc(100vw - 40px);
}
.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 8px;
  max-height: 60vh;
  overflow-y: auto;
}

/* Botón hamburguesa (oculto en desktop) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 6px;
}
.nav-toggle .material-icons { font-size: 26px; }

/* ============================================================
   MOBILE NAV DRAWER
   ============================================================ */
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 998;
  opacity: 0; visibility: hidden;
  transition: all .3s;
}
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav {
  position: fixed;
  top: 0; left: -340px;
  width: 320px; max-width: 88vw;
  height: 100vh;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 24px rgba(0,0,0,.15);
  transition: left .3s ease;
  overflow-y: auto;
}
.mobile-nav.active { left: 0; }
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0;
  background: var(--bg);
  z-index: 1;
}
.mobile-nav-close { background: none; border: none; cursor: pointer; color: var(--text-light); padding: 4px; }
.mobile-nav-close:hover { color: var(--text); }
.mobile-nav-search { padding: 14px 18px; border-bottom: 1px solid var(--border-light); }
.mobile-nav-search form {
  display: flex; height: 40px;
  border: 2px solid var(--border);
  border-radius: 50px; overflow: hidden;
  background: var(--bg-alt);
}
.mobile-nav-search input { flex: 1; border: 0; background: transparent; padding: 0 14px; font-size: 14px; outline: none; }
.mobile-nav-search button { width: 44px; border: 0; background: transparent; color: var(--text-light); cursor: pointer; }
.mobile-nav-list { padding: 8px 0 40px; }
.mobile-nav-group { border-bottom: 1px solid var(--border-light); }
.mobile-nav-top, .mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
}
.mobile-nav-top span, .mobile-nav-sub a span { font-size: 11px; color: var(--text-muted); font-weight: 400; }
.mobile-nav-toggle .material-icons { transition: transform .2s; color: var(--text-light); }
.mobile-nav-group.open .mobile-nav-toggle .material-icons { transform: rotate(180deg); }
.mobile-nav-sub { display: none; padding: 0 0 8px; background: var(--bg-alt); }
.mobile-nav-group.open .mobile-nav-sub { display: block; max-height: 320px; overflow-y: auto; }
.mobile-nav-sub a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px 10px 30px;
  font-size: 13px;
  color: var(--text-light);
}
.mobile-nav-sub a:hover { color: var(--text); }
.mobile-nav-sub-all { font-weight: 600; color: var(--text) !important; }
body.nav-open { overflow: hidden; }
.quote-btn-label { display: inline; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
  color: #fff;
  padding: clamp(40px,5vw,64px) 0;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -10%;
  top: -30%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193,255,44,.08) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; max-width: 640px; }
.hero h1 {
  font-size: clamp(28px,3.5vw,44px);
  font-weight: 900;
  letter-spacing: -.02em;
  margin: 0 0 12px;
  line-height: 1.1;
}
.hero h1 span { color: var(--text);
  color: var(--green); }
.hero p {
  font-size: clamp(15px,1.2vw,17px);
  color: rgba(255,255,255,.65);
  margin: 0 0 28px;
  line-height: 1.7;
  max-width: 520px;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--green);
  color: var(--dark);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  border: none;
  cursor: pointer;
}
.hero-btn:hover { background: var(--green-hover); color: var(--dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(193,255,44,.25); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.section-header h2 {
  font-size: clamp(20px,2vw,26px);
  font-weight: 800;
  margin: 0;
  letter-spacing: -.015em;
}
.section-header a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.section-header a:hover { color: var(--text); }

/* ============================================================
   BRANDS
   ============================================================ */
.brands-bar {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
  overflow-x: auto;
  margin-bottom: 40px;
}
.brands-bar span {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
  white-space: nowrap;
}
.brands-bar a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
  transition: color .15s;
}
.brands-bar a:hover { color: var(--text); }

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 48px;
}
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}
.product-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-image img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: transform .3s;
}
.product-card:hover .product-card-image img { transform: scale(1.08); }
.product-card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.product-card-brand { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.product-card-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-title a { color: var(--text); }
.product-card-title a:hover { color: var(--text); }
.product-card-actions { display: flex; gap: 6px; }
.product-card-actions .btn { flex: 1; justify-content: center; padding: 8px 10px; font-size: 12px; }

/* ============================================================
   CATEGORIES GRID
   ============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 48px;
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all .2s;
  min-height: 120px;
  text-align: center;
}
.category-card:hover { border-color: var(--text); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.category-card .material-icons { font-size: 32px; color: var(--text); margin-bottom: 8px; }
.category-card strong { font-size: 14px; font-weight: 600; color: var(--text); }
.category-card small { font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* ============================================================
   CATALOG LAYOUT (with sidebar filters)
   ============================================================ */
.catalog-layout { display: grid; grid-template-columns: 260px 1fr; gap: 24px; align-items: start; margin-bottom: 48px; }

/* Filters sidebar */
.filters-sidebar {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: sticky;
  top: 100px;
}
.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.filters-header h5 { margin: 0; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.filters-header .clear {
  font-size: 12px;
  color: var(--text-light);
  cursor: pointer;
  transition: color .15s;
}
.filters-header .clear:hover { color: var(--text); }
.filter-group {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}
.filter-group:last-child { border-bottom: none; }
.filter-group-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.filter-group-title .material-icons { font-size: 18px; color: var(--text-light); transition: transform .15s; }
.filter-options { max-height: 240px; overflow-y: auto; }
.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-light);
  transition: color .15s;
}
.filter-option:hover { color: var(--text); }
.filter-option input[type="checkbox"] { accent-color: var(--text); width: 16px; height: 16px; cursor: pointer; }
.filter-option .count { margin-left: auto; color: var(--text-muted); font-size: 11px; }

/* Catalog top bar */
.catalog-top {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.catalog-top .count { font-size: 13px; color: var(--text-light); }
.catalog-top .count strong { color: var(--text); }
.catalog-top select {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  outline: none;
  cursor: pointer;
  background: var(--bg);
}
.catalog-top select:focus { border-color: var(--text); }
.catalog-top-left { display: flex; align-items: center; gap: 12px; }
.filters-toggle-btn {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-size: 13px;
  cursor: pointer;
  color: var(--text);
}
.filters-toggle-btn .material-icons { font-size: 18px; }

/* Chips de filtros activos */
.catalog-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.catalog-chips:empty { display: none; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 999px;
  background: var(--bg-alt); border: 1px solid var(--border);
  font-size: 12px; color: var(--text);
}
.chip button {
  border: none; background: none; cursor: pointer; color: var(--text-light);
  display: inline-flex; align-items: center; padding: 0;
}
.chip button:hover { color: var(--danger, #dc2626); }

/* Indicador de carga */
.catalog-loading {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 40px; color: var(--text-light); font-size: 14px;
}
.catalog-loading .material-icons { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Drawer de filtros (móvil) */
.filters-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45);
  opacity: 0; visibility: hidden; transition: opacity .25s; z-index: 200;
}
.filters-overlay.active { opacity: 1; visibility: visible; }
.filters-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(360px, 88vw);
  background: var(--bg); z-index: 210; transform: translateX(100%);
  transition: transform .28s ease; display: flex; flex-direction: column;
  box-shadow: -8px 0 30px rgba(0,0,0,.12);
}
.filters-drawer.active { transform: translateX(0); }
.filters-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.filters-drawer-header h5 { margin: 0; font-size: 15px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.filters-drawer-close { border: none; background: none; cursor: pointer; color: var(--text-light); }
.filters-drawer-body { flex: 1; overflow-y: auto; padding: 12px 20px; }
.filters-drawer-footer { display: flex; gap: 10px; padding: 14px 20px; border-top: 1px solid var(--border); }
.filters-drawer-footer .btn { flex: 1; justify-content: center; }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

/* Gallery */
.product-gallery {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
}
.product-gallery-main {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.product-gallery-main img { max-width: 90%; max-height: 90%; object-fit: contain; }
.product-gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.product-gallery-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color .15s;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-gallery-thumb:hover { border-color: var(--text); }
.product-gallery-thumb.active { border-color: var(--text); }
.product-gallery-thumb img { max-width: 85%; max-height: 85%; object-fit: contain; }

/* Product info */
.product-info {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.product-info-brand { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.product-info-name { font-size: clamp(18px,2vw,24px); font-weight: 700; margin: 0 0 8px; line-height: 1.2; }
.product-info-sku { font-size: 13px; color: var(--text-light); margin-bottom: 16px; display: flex; align-items: center; gap: 4px; }
.product-info-sku strong { color: var(--text); }
.product-info-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.product-info-badges .badge {
  background: var(--bg-alt);
  color: var(--text-light);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--border);
}
.product-info-desc { font-size: 15px; line-height: 1.7; color: var(--text); margin-bottom: 20px; }
.product-info-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.product-info-actions .btn { flex: 1; padding: 12px 20px; font-size: 14px; justify-content: center; }
.product-info-actions .btn-whatsapp { background: #25D366; color: #fff; }
.product-info-actions .btn-whatsapp:hover { background: #1ebe5d; }

/* Product specs */
.product-specs {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.product-specs h3 { font-size: 15px; font-weight: 600; margin: 0 0 12px; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--border-light); }
.specs-table th, .specs-table td { padding: 8px 0; text-align: left; font-size: 14px; }
.specs-table th { font-weight: 500; color: var(--text-light); width: 35%; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
  font-family: var(--font);
}
.btn-primary { background: var(--dark); color: #fff; }
.btn-primary:hover { background: var(--darker); color: #fff; }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--text); color: var(--text); }
.btn-green { background: var(--green); color: var(--dark); }
.btn-green:hover { background: var(--green-hover); color: var(--dark); }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn .material-icons { font-size: 18px; }

/* ============================================================
   QUOTE SIDEBAR (drawer)
   ============================================================ */
.quote-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}
.quote-overlay.active { opacity: 1; visibility: visible; }
.quote-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: var(--bg);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,.15);
  transition: right .3s ease;
}
.quote-drawer.active { right: 0; }
.quote-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.quote-drawer-header h3 { margin: 0; font-size: 16px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.quote-drawer-header .material-icons { color: var(--text); }
.quote-drawer-close { background: none; border: none; cursor: pointer; color: var(--text-light); padding: 4px; }
.quote-drawer-close:hover { color: var(--text); }
.quote-drawer-body { flex: 1; overflow-y: auto; padding: 16px; }
.quote-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  background: var(--bg);
}
.quote-item-img {
  width: 70px; height: 70px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-alt);
  flex-shrink: 0;
}
.quote-item-img img { width: 100%; height: 100%; object-fit: contain; }
.quote-item-info { flex: 1; min-width: 0; }
.quote-item-name { font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.quote-item-sku { font-size: 11px; color: var(--text-light); margin-bottom: 6px; }
.quote-item-qty { display: flex; align-items: center; gap: 6px; }
.quote-item-qty button {
  width: 24px; height: 24px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all .15s;
}
.quote-item-qty button:hover { border-color: var(--text); background: var(--green-light); }
.quote-item-qty span { font-size: 13px; font-weight: 600; min-width: 24px; text-align: center; }
.quote-item-remove { background: none; border: none; color: var(--text-light); cursor: pointer; padding: 4px; }
.quote-item-remove:hover { color: #dc3545; }
.quote-empty {
  text-align: center; padding: 60px 20px; color: var(--text-light);
}
.quote-empty .material-icons { font-size: 48px; opacity: .3; display: block; margin-bottom: 12px; }
.quote-drawer-footer {
  display: flex;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.quote-drawer-footer .btn { flex: 1; justify-content: center; padding: 12px; font-size: 14px; }

/* ============================================================
   CHECKOUT / QUOTE FORM
   ============================================================ */
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 24px; margin-bottom: 48px; }
.checkout-form, .checkout-summary {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.checkout-form h2, .checkout-summary h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--text); }
.form-group .required { color: #dc3545; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  font-family: var(--font);
  background: var(--bg);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--text);
  box-shadow: 0 0 0 3px var(--green-light);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 8px; cursor: pointer; font-size: 13px; color: var(--text-light); }
.form-checkbox input { width: auto; margin-top: 2px; }
.btn-block { width: 100%; justify-content: center; padding: 12px; font-size: 15px; }

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.summary-item-name { font-size: 13px; font-weight: 500; }
.summary-item-sku { font-size: 11px; color: var(--text-light); }
.summary-item-qty { font-size: 14px; font-weight: 600; }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  margin: 16px 0;
  border-top: 2px solid var(--border);
  font-size: 14px;
  font-weight: 600;
}
.summary-total strong { color: var(--text);
  color: var(--green); font-size: 16px; }
.summary-info {
  display: flex;
  gap: 10px;
  padding: 14px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}
.summary-info .material-icons { color: var(--text); flex-shrink: 0; }

/* ============================================================
   CONFIRMATION
   ============================================================ */
.confirmation { text-align: center; padding: 60px 20px; max-width: 600px; margin: 0 auto; }
.confirmation-icon {
  width: 80px; height: 80px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.confirmation-icon .material-icons { font-size: 40px; color: var(--text);
  color: var(--green); }
.confirmation h1 { font-size: 28px; font-weight: 700; margin: 0 0 8px; }
.confirmation p { font-size: 15px; color: var(--text-light); margin: 0 0 28px; }
.confirmation-number {
  background: var(--bg-alt);
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 28px;
}
.confirmation-number span { display: block; font-size: 13px; color: var(--text-light); margin-bottom: 4px; }
.confirmation-number strong { font-size: 22px; color: var(--text); }
.confirmation-steps {
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 28px;
}
.confirmation-steps h3 { font-size: 16px; font-weight: 600; margin: 0 0 16px; }
.confirmation-steps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}
.confirmation-steps li:last-child { border-bottom: none; }
.confirmation-steps .material-icons { color: var(--text); flex-shrink: 0; }
.confirmation-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.confirmation-contact { padding-top: 20px; border-top: 1px solid var(--border); }
.confirmation-contact p { font-size: 13px; margin: 0 0 12px; }
.confirmation-contact-links { display: flex; gap: 16px; justify-content: center; }
.confirmation-contact-links a { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 48px; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.contact-card {
  display: flex; align-items: center; gap: 12px;
  padding: 16px; background: var(--bg-alt);
  border-radius: var(--radius-sm);
}
.contact-card .material-icons, .contact-card .fab { font-size: 24px; color: var(--text); }
.contact-card h4 { font-size: 13px; font-weight: 600; margin: 0 0 2px; }
.contact-card p, .contact-card a { font-size: 13px; color: var(--text-light); margin: 0; }
.contact-card a:hover { color: var(--text); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { display: flex; align-items: center; gap: 6px; padding: 16px 0; font-size: 13px; color: var(--text-light); }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .sep { color: var(--border); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-benefits {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 32px 0;
  margin-top: 40px;
}
.footer-benefits-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.footer-benefit { display: flex; align-items: center; gap: 10px; }
.footer-benefit .material-icons { font-size: 28px; color: var(--text); }
.footer-benefit .vm-value-icon svg { width: 28px; height: 28px; color: var(--text); }
.footer-benefit strong { display: block; font-size: 13px; font-weight: 600; }
.footer-benefit small { font-size: 12px; color: var(--text-light); }

.footer-main {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand .wordmark { font-size: 20px; }
.footer-brand > span { display: block; font-size: 11px; color: var(--text-light); letter-spacing: 1px; margin-top: 4px; }
.footer-col h4 { font-size: 13px; font-weight: 700; margin: 0 0 12px; }
.footer-col li { margin-bottom: 6px; }
.footer-col a, .footer-col li { font-size: 13px; color: var(--text-light); display: flex; align-items: center; gap: 6px; }
.footer-col a:hover { color: var(--text); }
.footer-col .material-icons { font-size: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all .15s;
}
.footer-social a:hover { border-color: var(--text); background: var(--green); color: var(--dark); }

.footer-bottom {
  background: var(--dark);
  color: rgba(255,255,255,.5);
  padding: 16px 0;
  text-align: center;
  font-size: 13px;
}

/* ============================================================
   PRODUCT DETAIL (rediseño nivel Thomann)
   ============================================================ */

.product-page { margin-top: 16px; }

/* Hero */
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

/* Gallery */
.product-gallery { position: sticky; top: 24px; }

.gallery-main {
  position: relative;
  overflow: hidden;
  cursor: crosshair;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fafafa;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .15s ease-out;
}
#zoom-lens {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(0,0,0,.2);
  background: rgba(255,255,255,.25);
  pointer-events: none;
  display: none;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0,0,0,.1);
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.gallery-thumbs::-webkit-scrollbar { height: 4px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.gallery-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  border: 2px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  background: #fff;
  transition: border-color .15s;
}
.gallery-thumb:hover { border-color: var(--text-light); }
.gallery-thumb.active { border-color: var(--text); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Info column */
.product-hero-info { display: flex; flex-direction: column; gap: 14px; }

.product-brand {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.product-title {
  font-size: clamp(22px,2.5vw,34px);
  font-weight: 800;
  line-height: 1.12;
  margin: 0;
  color: var(--text);
}
.product-sku {
  font-size: 13px;
  color: var(--text-light);
}

/* Feature badges */
.product-features-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-alt);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}
.feature-badge i { font-size: 18px; color: var(--text); flex-shrink: 0; }

/* Availability */
.product-availability { margin-top: 2px; }
.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.avail-badge i { font-size: 18px; }
.avail-info { background: #e8f5e9; color: #2e7d32; }
.avail-warning { background: #fff3e0; color: #e65100; }

/* Short description */
.product-short-desc { font-size: 15px; line-height: 1.65; color: var(--text-light); }

/* Bundle contents */
.bundle-contents {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 16px;
  margin-top: 4px;
}
.bundle-contents h3 { font-size: 13px; font-weight: 700; margin: 0 0 10px; text-transform: uppercase; letter-spacing: .03em; color: var(--text); }
.bundle-items { display: flex; flex-wrap: wrap; gap: 8px; }
.bundle-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  border: 1px solid var(--border);
  max-width: 100%;
}
.bundle-item img { width: 28px; height: 28px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }

/* Specs highlight */
.specs-highlight { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sh-item { background: var(--bg-alt); padding: 10px 14px; border-radius: 10px; }
.sh-key { display: block; font-size: 11px; color: var(--text-light); margin-bottom: 2px; text-transform: uppercase; letter-spacing: .03em; }
.sh-val { font-size: 14px; font-weight: 600; }

/* Actions */
.product-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.qty-selector { display: flex; align-items: center; gap: 8px; }
.qty-selector label { font-size: 13px; font-weight: 500; color: var(--text); }
.qty-control { display: flex; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.qty-control button {
  width: 36px; height: 36px; border: none; background: var(--bg-alt);
  cursor: pointer; font-size: 18px; font-weight: 600; color: var(--text);
  line-height: 1; transition: background .15s;
}
.qty-control button:hover { background: var(--border-light); }
.qty-control input {
  width: 48px; text-align: center; border: none; font-size: 14px; font-weight: 600;
  outline: none; -moz-appearance: textfield;
}
.qty-control input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.btn-quote {
  flex: 1; padding: 12px 24px; font-size: 15px; font-weight: 600;
  border-radius: 10px; justify-content: center;
  min-width: 200px;
}
.btn-whatsapp {
  width: 48px; padding: 0; justify-content: center; border-radius: 10px;
  background: #25D366; color: #fff; font-size: 22px; border: none;
  transition: background .15s;
}
.btn-whatsapp:hover { background: #1ebe5d; color: #fff; }

/* Share */
.product-share { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-light); margin-top: 4px; }
.product-share a, .product-share button {
  width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px; border: 1px solid var(--border); background: #fff; color: var(--text);
  font-size: 16px; cursor: pointer; transition: all .15s; text-decoration: none;
}
.product-share a:hover, .product-share button:hover { background: var(--bg-alt); border-color: var(--text-light); }

/* Tabs */
.product-tabs-section { margin-bottom: 48px; }
.tabs-nav {
  display: flex; gap: 4px; border-bottom: 2px solid var(--border);
  margin-bottom: 24px; overflow-x: auto; padding-bottom: 0;
}
.tabs-nav::-webkit-scrollbar { height: 0; }
.tab-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 20px; border: none; background: none;
  font-size: 14px; font-weight: 500; color: var(--text-light);
  cursor: pointer; white-space: nowrap;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: color .15s, border-color .15s;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--text); border-bottom-color: var(--text); }
.tab-btn i { font-size: 18px; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* Specs groups */
.specs-group { margin-bottom: 32px; }
.specs-group-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700; margin: 0 0 16px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
  color: var(--text);
}
.specs-group-title i { font-size: 20px; color: var(--text); }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--border-light); }
.specs-table tr:nth-child(even) { background: var(--bg-alt); }
.specs-table th, .specs-table td { padding: 10px 14px; text-align: left; font-size: 14px; }
.specs-table th { font-weight: 500; color: var(--text-light); width: 35%; }

/* Bundle grid (tabs) */
.bundle-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.bundle-card { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: box-shadow .2s; }
.bundle-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.bundle-card-img { height: 130px; background: #fafafa; display: flex; align-items: center; justify-content: center; padding: 16px; }
.bundle-card-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.bundle-card-body { padding: 12px 14px; }
.bundle-card-body h4 { font-size: 13px; font-weight: 500; margin: 0; color: var(--text); }

/* Description tab */
.description-content { font-size: 15px; line-height: 1.8; color: var(--text); }
.description-content h3 { font-size: 18px; font-weight: 700; margin: 28px 0 12px; }
.description-content h4 { font-size: 16px; font-weight: 600; margin: 20px 0 10px; }
.description-content p { margin: 0 0 12px; }
.description-content ul, .description-content ol { padding-left: 20px; margin: 12px 0; }
.description-content li { margin-bottom: 6px; }
.description-content img { max-width: 100%; border-radius: 8px; margin: 16px 0; }

/* Alternatives / related */
.product-alternatives { margin-bottom: 48px; }
.section-title { font-size: 20px; font-weight: 700; margin: 0 0 20px; }
.alternatives-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.alt-card { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: box-shadow .2s; }
.alt-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.alt-card-img { height: 150px; display: flex; align-items: center; justify-content: center; padding: 20px; background: #fafafa; }
.alt-card-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.alt-card-body { padding: 12px 14px; }
.alt-card-brand { font-size: 11px; color: var(--text-light); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .03em; }
.alt-card-title { font-size: 14px; font-weight: 500; margin-bottom: 10px; line-height: 1.3; }
.alt-card-title a { color: var(--text); text-decoration: none; }
.alt-card-title a:hover { color: var(--text); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: absolute; top: 20px; right: 30px; color: #fff;
  font-size: 44px; cursor: pointer; z-index: 2; line-height: 1;
  opacity: .7; transition: opacity .15s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12); color: #fff; border: none;
  font-size: 48px; width: 56px; height: 80px; cursor: pointer;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  z-index: 2; transition: background .15s;
}
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
#lb-img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 6px; }

/* Sticky quote bar */
.sticky-quote-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--border);
  padding: 10px 0; z-index: 999;
  box-shadow: 0 -4px 16px rgba(0,0,0,.1);
  transform: translateY(100%); transition: transform .3s ease;
}
.sticky-quote-bar.visible { transform: translateY(0); }
.sticky-quote-inner { display: flex; align-items: center; gap: 12px; }
.sticky-name { flex: 1; font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-quote-bar .btn-quote { min-width: auto; padding: 10px 20px; font-size: 13px; }

/* SKU line + rank */
.product-sku-line { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.product-rank { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--text); font-weight: 500; }
.product-rank i { font-size: 16px; }

/* Availability extra */
.avail-extra { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--text-light); margin-left: 8px; }
.avail-extra i { font-size: 14px; }

/* Bundle item text + link */
.bundle-item-text { display: flex; flex-direction: column; gap: 2px; }
.bundle-item-link { font-size: 11px; color: var(--text); text-decoration: none; }
.bundle-item-link:hover { text-decoration: underline; }
.bundle-card-btn { margin-top: 8px; }

/* Secondary actions */
.product-actions-secondary { display: flex; gap: 6px; margin-left: auto; }
.btn-icon {
  width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; border: 1px solid var(--border); background: #fff;
  color: var(--text); font-size: 20px; cursor: pointer; transition: all .15s; text-decoration: none;
}
.btn-icon:hover { background: var(--bg-alt); border-color: var(--text-light); }

/* Variations grid */
.variations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; margin-bottom: 48px; }
.var-card { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: box-shadow .2s; }
.var-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.var-card-img { height: 150px; display: flex; align-items: center; justify-content: center; padding: 20px; background: #fafafa; display:block; }
.var-card-img img { max-width: 100%; max-height: 100%; object-fit: contain; display:block; margin:0 auto; }
.var-card-body { padding: 12px 14px; }
.var-card-sku { font-size: 11px; color: var(--text-light); margin-bottom: 4px; }
.var-card-title { font-size: 14px; font-weight: 500; margin-bottom: 10px; line-height: 1.3; }
.var-card-title a { color: var(--text); text-decoration: none; }
.var-card-title a:hover { color: var(--text); }

/* Accessories grid (tabs) */
.accessories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.acc-card { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: box-shadow .2s; }
.acc-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.acc-card-img { height: 140px; display: flex; align-items: center; justify-content: center; padding: 16px; background: #fafafa; }
.acc-card-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.acc-card-body { padding: 12px 14px; }
.acc-card-brand { font-size: 11px; color: var(--text-light); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .03em; }
.acc-card-title { font-size: 14px; font-weight: 500; margin-bottom: 4px; line-height: 1.3; }
.acc-card-title a { color: var(--text); text-decoration: none; }
.acc-card-title a:hover { color: var(--text); }
.acc-card-sku { font-size: 11px; color: var(--text-light); margin-bottom: 8px; }

/* Product actions layout fix */
.product-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 4px; }
.product-actions .qty-selector { flex-shrink: 0; }
.product-actions .btn-quote { min-width: 160px; }

.share mobile */
@media (max-width: 767px) {
  .product-actions-secondary { margin-left: 0; width: 100%; justify-content: center; }
  .btn-icon { width: 48px; }
  .variations-grid { grid-template-columns: repeat(2, 1fr); }
  .var-card-img { height: 120px; }
  .accessories-grid { grid-template-columns: repeat(2, 1fr); }
  .acc-card-img { height: 110px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .main-header-inner { flex-wrap: wrap; align-items: center; }
  .product-detail { grid-template-columns: 1fr; }
  .product-hero { grid-template-columns: 1fr; gap: 24px; }
  .product-gallery { position: static; }
  .sticky-quote-bar { display: block; }
  .checkout-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters-sidebar { display: none; }
  .filters-toggle-btn { display: inline-flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-info-actions { flex-direction: column; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { order: -1; }
  .steps { grid-template-columns: 1fr; }
  .proof-logos { grid-template-columns: repeat(3, 1fr); }
  .home-cta { padding: 24px; }
  /* Menú: ocultar nav desktop, mostrar hamburguesa */
  #nav-desktop { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .header-logo { flex: 1 1 auto; text-align: left; }
  .header-search { flex: 0 0 100%; max-width: none; order: 10; margin-top: 4px; }
}

@media (max-width: 767px) {
  .utility-bar-left span:not(:first-child) { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-benefits-inner { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .quote-drawer { width: 100%; }
  .proof-logos { grid-template-columns: repeat(2, 1fr); }
  /* Product page mobile */
  .product-features-bar { grid-template-columns: 1fr; }
  .specs-highlight { grid-template-columns: 1fr; }
  .product-actions { flex-direction: column; }
  .qty-selector { width: 100%; }
  .qty-control { flex: 1; display: flex; }
  .qty-control input { flex: 1; }
  .btn-quote { width: 100%; min-width: 0; }
  .btn-whatsapp { width: 100%; }
  .tabs-nav { gap: 0; }
  .tab-btn { padding: 10px 12px; font-size: 12px; flex: 1; justify-content: center; }
  .tab-btn i { display: none; }
  .gallery-thumb { width: 56px; height: 56px; }
  .bundle-grid { grid-template-columns: repeat(2, 1fr); }
  .bundle-card-img { height: 100px; }
  .alternatives-grid { grid-template-columns: repeat(2, 1fr); }
  .alt-card-img { height: 120px; }
  .lightbox-nav { width: 40px; height: 60px; font-size: 32px; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  #lb-img { max-width: 100vw; max-height: 100vh; border-radius: 0; }
  .quote-btn-label { display: none; }
}

@media (max-width: 420px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* ============================================================
   HOME HERO (rediseño: 2 columnas con imagen)
   ============================================================ */
.hero--home {
  position: relative;
  padding: clamp(48px,6vw,88px) 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 500px at 85% -10%, rgba(193,255,44,.10) 0%, transparent 60%),
    linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--green-light);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-eyebrow .material-icons { font-size: 16px; }
.hero--home h1 { max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 36px; }
.hero-btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}
.hero-btn-ghost:hover { background: rgba(255,255,255,.16); color: #fff; transform: translateY(-2px); }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 28px; font-weight: 800; color: #fff; line-height: 1; }
.hero-stats span { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 4px; letter-spacing: .03em; }

/* Visual del hero (imagen producto placeholder) */
.hero-visual { display: flex; justify-content: center; }
.hero-visual-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-visual-card::after {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193,255,44,.18) 0%, transparent 70%);
  bottom: -80px; right: -60px;
}
.hero-visual-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.4));
}
.hero-visual-badge {
  position: absolute;
  bottom: 14px; left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  background: var(--green);
  padding: 6px 12px;
  border-radius: 50px;
}
.hero-visual-badge .material-icons { font-size: 16px; }

/* ============================================================
   SECCIÓN ALTERNADA (fondo claro)
   ============================================================ */
.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
  margin-bottom: 48px;
}
.section-header-center { justify-content: center; text-align: center; flex-direction: column; gap: 6px; }
.section-header-center a { display: none; }

/* ============================================================
   3 PASOS "CÓMO COTIZAR"
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  --step-accent: var(--green);
}
.step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: all .2s;
}
.step:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--step-accent); }
.step-num {
  width: 36px; height: 36px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--step-accent);
  color: #111;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  margin-bottom: 12px;
}
.step-icon svg { width: 34px; height: 34px; color: currentColor; }
.step h3 { font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.step p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin: 0; }

/* ============================================================
   PRUEBA SOCIAL (placeholders)
   ============================================================ */
.proof {
  background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
  padding: 56px 0;
  margin-bottom: 48px;
}
.proof .section-header h2 { color: #fff; }
.proof .section-sub { color: rgba(255,255,255,.55); }
.proof-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.proof-logo {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,.5);
  letter-spacing: .03em;
  line-height: 1.4;
}
.proof-logo strong { display: block; font-size: 14px; color: #fff; font-weight: 700; margin-top: 2px; }
.proof-quote {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.proof-quote .material-icons {
  font-size: 40px;
  color: var(--text);
  opacity: .5;
}
.proof-quote p { color: #fff; font-size: 17px; line-height: 1.6; margin: 8px 0 12px; }
.proof-quote span { color: rgba(255,255,255,.5); font-size: 13px; }

/* ============================================================
   BRANDS (tiles con monograma)
   ============================================================ */
.brands-section { margin-bottom: 48px; }
.section-sub { font-size: 13px; color: var(--text-light); font-weight: 400; }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}
.brand-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .2s;
  min-height: 80px;
}
.brand-tile:hover { border-color: var(--text); box-shadow: var(--shadow); transform: translateY(-2px); }
.brand-tile img {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-tile-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   HOME CTA
   ============================================================ */
.home-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 48px;
}
.home-cta h3 { color: #fff; font-size: 20px; font-weight: 700; margin: 0 0 6px; }
.home-cta p { color: rgba(255,255,255,.6); font-size: 14px; margin: 0; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 32px 0 48px;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  transition: all .15s;
}
.pagination a:hover { border-color: var(--text); color: var(--text); background: var(--green-light); }
.pagination .page-current {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
  cursor: default;
}
.pagination .page-dots { border: none; background: none; min-width: 24px; color: var(--text-muted); }
.pagination .disabled { color: var(--text-muted); cursor: not-allowed; opacity: .5; }
.pagination .disabled:hover { background: var(--bg); border-color: var(--border); }

/* Collapsible filter options (cerrado por defecto) */
.filter-options { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.filter-options.expanded { max-height: 320px; overflow-y: auto; }
.filter-more { padding-top: 4px; }
.filter-more .clear { font-size: 12px; color: var(--text-light); }
.filter-more .clear:hover { color: var(--text); }

@media (max-width: 991px) {
  .hero-stats { gap: 24px; }
  .home-cta { padding: 24px; }
}

/* ===== VideoMusic Hero Slider ===== */
.vm-hero-slider-wrapper { position: relative; width: 100%; margin-bottom: 40px; }
.vm-hero-slider { position: relative; width: 100%; overflow: hidden; border-radius: 16px; }
.vm-hero { border-radius: 16px !important; margin-bottom: 0 !important; min-height: 460px; display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 24px; padding: 56px; transition: background .4s ease; }
.vm-hero-slider.is-carousel .vm-hero-slide-item { position: absolute; top: 0; left: 0; width: 100%; opacity: 0; visibility: hidden; z-index: 1; transition: opacity .6s cubic-bezier(.4,0,.2,1), visibility .6s; }
.vm-hero-slider.is-carousel .vm-hero-slide-item.is-active { position: relative; opacity: 1; visibility: visible; z-index: 2; }
.vm-hero__content { max-width: 560px; }
.vm-hero__badge { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); margin-bottom: 18px; backdrop-filter: blur(4px); }
.vm-hero__title { font-size: clamp(34px, 5vw, 58px); line-height: 1.02; font-weight: 900; letter-spacing: -.02em; margin: 0 0 18px; }
.vm-hero__description { font-size: clamp(15px, 1.6vw, 18px); line-height: 1.55; margin: 0 0 28px; max-width: 520px; }
.vm-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.vm-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; border-radius: 12px; font-weight: 700; font-size: 15px; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.vm-btn--primary { background: #ffffff; color: #111 !important; }
.vm-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.vm-btn--secondary { background: transparent; border: 1.5px solid; }
.vm-btn--secondary:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.vm-hero__image-wrapper { position: relative; display: flex; align-items: center; justify-content: center; }
.vm-hero__img { width: 100%; max-width: 420px; max-height: 360px; object-fit: contain; border-radius: 14px; filter: drop-shadow(0 20px 40px rgba(0,0,0,.35)); }
.vm-slider-controls { position: absolute; bottom: 22px; left: 56px; display: flex; align-items: center; gap: 16px; z-index: 10; }
.vm-slider-arrow { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); color: #fff; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s ease; }
.vm-slider-arrow:hover { background: var(--green, #c1ff2c); border-color: var(--green, #c1ff2c); color: #111; transform: scale(1.06); }
.vm-slider-arrow svg { width: 18px; height: 18px; stroke: currentColor; }
.vm-slider-dots { display: flex; align-items: center; gap: 8px; }
.vm-slider-dot { background: rgba(255,255,255,.35); border: none; width: 9px; height: 9px; border-radius: 50%; cursor: pointer; padding: 0; transition: all .25s ease; }
.vm-slider-dot:hover { background: rgba(255,255,255,.7); }
.vm-slider-dot.is-active { background: var(--green, #c1ff2c); width: 26px; border-radius: 5px; }
@media (max-width: 1080px) {
  .vm-hero { grid-template-columns: 1fr; text-align: center; padding: 40px 28px; min-height: 420px; }
  .vm-hero__content { margin: 0 auto; }
  .vm-hero__actions { justify-content: center; }
  .vm-hero__image-wrapper { display: none; }
  .vm-slider-controls { left: 50%; transform: translateX(-50%); bottom: 16px; }
}
@media (max-width: 560px) {
  .vm-hero__title { font-size: 34px; }
  .vm-btn { padding: 12px 20px; font-size: 14px; }
}

/* ===== Propuestas de Valor (módulo values) ===== */
.section-values { padding: 8px 0 0; }
.vm-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 8px;
}
.vm-value-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.vm-value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  border-color: var(--text);
}
.vm-value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green);
  color: #111;
}
.vm-value-card__icon svg { width: 24px; height: 24px; color: #111; }
.vm-value-card__info h3 { font-size: 14px; font-weight: 700; color: var(--text); margin: 0 0 2px; line-height: 1.2; }
.vm-value-card__info p { font-size: 12.5px; color: var(--text-light); margin: 0; line-height: 1.3; }

@media (max-width: 992px) {
  .vm-values { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .vm-values { grid-template-columns: 1fr; }
}

/* ===== Bento Categorías (módulo bento) ===== */
.section-bento { padding: 40px 0 8px; }
.vm-section-header { text-align: center; margin-bottom: 24px; }
.vm-section-title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--text); margin: 0 0 6px; letter-spacing: -.02em; }
.vm-section-subtitle { font-size: 14px; color: var(--text-light); margin: 0; }

.vm-bento-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  gap: 16px;
}
.vm-bento-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #111;
  display: block;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.vm-bento-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.vm-bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.15) 55%, rgba(0,0,0,0) 100%);
}
.vm-bento-card__content {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  z-index: 2;
}
.vm-bento-card__content h3 { font-size: 18px; font-weight: 800; margin: 0 0 4px; line-height: 1.1; }
.vm-bento-card__content span { font-size: 12.5px; font-weight: 600; }

/* Layout asimétrico Bento */
.vm-bento-card--large     { grid-column: span 2; grid-row: span 2; }
.vm-bento-card--medium-1  { grid-column: span 2; grid-row: span 1; }
.vm-bento-card--medium-2  { grid-column: span 2; grid-row: span 1; }
.vm-bento-card--small-1   { grid-column: span 1; grid-row: span 1; }
.vm-bento-card--small-2   { grid-column: span 1; grid-row: span 1; }
.vm-bento-card--small-3   { grid-column: span 1; grid-row: span 1; }
.vm-bento-card--small-4   { grid-column: span 1; grid-row: span 1; }

.vm-bento-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(var(--glow-rgb, 0,0,0), .35); border-color: var(--glow, #c1ff2c); }
.vm-bento-card:hover .vm-bento-card__img { transform: scale(1.06); }

@media (max-width: 768px) {
  .vm-bento-categories { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .vm-bento-card--large { grid-column: span 2; grid-row: span 2; }
  .vm-bento-card--medium-1,
  .vm-bento-card--medium-2 { grid-column: span 2; }
}
@media (max-width: 460px) {
  .vm-bento-categories { grid-template-columns: 1fr; }
  .vm-bento-card,
  .vm-bento-card--large,
  .vm-bento-card--medium-1,
  .vm-bento-card--medium-2,
  .vm-bento-card--small-1,
  .vm-bento-card--small-2 { grid-column: span 1; grid-row: span 1; }
}

/* El video del hero es ambiente visual, no un reproductor interactivo. */
#home-hero-video::-webkit-media-controls,
#home-hero-video::-webkit-media-controls-enclosure,
#home-hero-video::-webkit-media-controls-panel,
#home-hero-video::-webkit-media-controls-play-button,
#home-hero-video::-webkit-media-controls-overlay-play-button,
#home-hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

/* Cabecera pública: identidad, búsqueda y catálogo como un único sistema. */
.site-header {
  isolation: isolate;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transition: box-shadow .22s ease;
}
body > main { padding-top: var(--site-header-height, 187px); }
.site-header:has(.site-search form:focus-within) { box-shadow: 0 10px 28px rgba(15, 23, 42, .09); }
.site-utility {
  background: #07110f !important;
  max-height: 44px;
  overflow: hidden;
  transition: max-height .22s ease, opacity .16s ease, border-color .2s ease;
}
.site-utility-inner {
  min-height: 34px;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}
.site-utility-nav { gap: 22px !important; }
.site-utility-nav a {
  color: rgba(255, 255, 255, .72) !important;
  letter-spacing: .105em;
  font-size: 10px !important;
}
.site-utility-nav a:hover,
.site-utility-nav a.text-\[\#c6fa4d\] { color: #d8ff73 !important; }
.site-utility-nav a.bg-\[\#c6fa4d\] {
  color: #08110f !important;
  padding: 5px 12px !important;
  box-shadow: 0 3px 10px rgba(193, 255, 44, .16);
}
.site-toolbar { background: rgba(255, 255, 255, .97) !important; }
.site-toolbar-inner {
  min-height: 68px;
  transition: min-height .22s ease, padding .22s ease;
}
.site-brand { transition: transform .2s ease, opacity .2s ease; }
.site-brand:hover { transform: translateY(-1px); }
.header-logo-img { width: 228px !important; height: 38px !important; }
.site-search form { filter: drop-shadow(0 1px 1px rgba(15, 23, 42, .02)); }
.site-search input {
  background: #f7f8fa !important;
  border-color: #e3e7eb !important;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease !important;
}
.site-search form:focus-within input {
  background: #fff !important;
  border-color: #0f172a !important;
  box-shadow: 0 0 0 3px rgba(193, 255, 44, .2) !important;
}
.site-quote-button {
  min-height: 40px;
  background: #0b1218 !important;
  border: 1px solid rgba(15, 23, 42, .1);
  box-shadow: 0 6px 14px rgba(15, 23, 42, .11) !important;
}
.site-quote-button:hover {
  background: #18232c !important;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .16) !important;
  transform: translateY(-1px);
}
.header-categories-button {
  display: flex !important;
  min-height: 40px;
  white-space: nowrap;
}
.header-categories-button[aria-expanded="true"] {
  border-color: #111827 !important;
  box-shadow: 0 0 0 3px rgba(193, 255, 44, .2);
}
.header-categories-button[aria-expanded="true"] .header-categories-arrow { transform: rotate(180deg); }
.header-categories-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 70;
  padding: 12px clamp(16px, 3vw, 42px) 0;
}
.header-categories-mega {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  width: min(1200px, 100%);
  max-height: min(68vh, 520px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 55px rgba(15, 23, 42, .2);
}
.header-categories-feature {
  display: flex;
  min-height: 100%;
  padding: 34px 28px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  background: linear-gradient(145deg, #12181d, #070b0e);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 18px, transparent 18px 38px), linear-gradient(145deg, #12181d, #070b0e);
}
.header-categories-feature-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 16px;
  color: #c6fa4d;
  background: rgba(198, 250, 77, .12);
}
.header-categories-feature strong { font-size: 20px; font-weight: 900; line-height: 1.05; text-transform: uppercase; }
.header-categories-feature small { margin-top: 8px; color: #9ca3af; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.header-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  max-height: min(68vh, 520px);
  padding: 20px;
  overflow-y: auto;
}
.header-category-link {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  min-height: 62px;
  padding: 12px 14px;
  align-items: center;
  gap: 10px;
  border-right: 1px solid #eef1f4;
  border-bottom: 1px solid #eef1f4;
  color: #142033;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  transition: background .18s ease, color .18s ease;
}
.header-category-link:hover { color: #567600; background: #f8fbeF; }
.header-category-link > .material-symbols-outlined { color: #7b8795; font-size: 20px; }
.header-category-link small { color: #9aa3af; font-size: 10px; }
.header-category-link--sub { font-weight: 500; }
@media (max-width: 1023px) {
  .header-categories-mega { grid-template-columns: 190px minmax(0, 1fr); }
  .header-categories-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .header-categories-button,
  .header-categories-menu { display: none !important; }
}
.site-catalog-nav {
  background: rgba(255, 255, 255, .95) !important;
  border-top-color: #edf0f2 !important;
  border-bottom: 1px solid #edf0f2;
}
.site-catalog-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
#nav-menu { gap: 28px !important; }
#nav-menu > li {
  align-items: center;
}
#nav-menu > li > a {
  display: inline-flex;
  align-items: center;
  line-height: 16px;
  color: #617084;
  letter-spacing: .1em;
  font-size: 10px !important;
  font-weight: 700;
}
#nav-menu > li > a:hover { color: #0f172a; }
#nav-menu > li > a.border-black { border-color: #9bc42d !important; color: #111827 !important; }
.nav-dropdown-toggle {
  margin: -2px 0 0 3px;
  padding: 2px;
  border-radius: 6px;
}
.nav-dropdown-toggle:hover { background: #f1f5f9; }
.nav-dropdown-toggle[aria-expanded="true"] { transform: rotate(180deg); }
.site-header--compact { box-shadow: 0 8px 24px rgba(15, 23, 42, .08); }
.site-header--compact .site-utility {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  border-color: transparent !important;
}
.site-header--compact .site-toolbar-inner {
  min-height: 58px;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
.site-header--compact .header-logo-img { width: 202px !important; height: 34px !important; }
.site-header--compact .site-catalog-inner { min-height: 40px; padding-top: 6px !important; padding-bottom: 6px !important; }
.mobile-logo-img { width: 160px; height: 36px; object-fit: contain; object-position: left center; }
@media (max-width: 1023px) {
  .header-logo-img { width: 176px !important; height: 34px !important; }
}
@media (max-width: 767px) {
  body > main { padding-top: 58px; }
  .site-toolbar-inner { min-height: 58px; }
}

/* Home: resumen visual de áreas y evidencia real. */
.home-areas { padding-top: 2px; }
.home-areas-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 26px; }
.home-areas-heading h2 { max-width: 760px; margin: 0; color: #071526; font-size: clamp(30px, 3.1vw, 48px); font-weight: 900; letter-spacing: -.055em; line-height: .98; text-transform: uppercase; }
.home-areas-heading > p { max-width: 440px; margin: 0; color: #46566a; font-size: 16px; line-height: 1.6; }
.home-areas-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.home-area-card { position: relative; isolation: isolate; min-height: 246px; overflow: hidden; border: 1px solid rgba(7,21,38,.08); border-radius: 18px; background: #101820; color: #fff; box-shadow: 0 10px 24px rgba(15, 23, 42, .1); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.home-area-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .5s ease; }
.home-area-card-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(4, 12, 17, .06) 0%, rgba(4, 12, 17, .28) 36%, rgba(4, 12, 17, .96) 72%, #040c11 100%); transition: background .3s ease; }
.home-area-icon { position: absolute; top: 16px; left: 16px; display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255,255,255,.34); border-radius: 11px; background: rgba(7, 17, 24, .82); color: #c6fa4d; font-size: 21px; backdrop-filter: blur(8px); transition: background .2s ease, color .2s ease, transform .2s ease; }
.home-area-copy { position: absolute; z-index: 1; right: 18px; bottom: 17px; left: 18px; display: grid; grid-template-rows: auto 42px 28px; text-shadow: 0 1px 3px rgba(0,0,0,.75); }
.home-area-copy strong, .home-area-copy small { display: block; }
.home-area-copy strong { font-size: 17px; font-weight: 900; letter-spacing: -.015em; line-height: 1.15; text-transform: uppercase; }
.home-area-copy small { margin-top: 7px; color: rgba(255,255,255,.94); font-size: 13px; line-height: 1.45; }
.home-area-copy > span { display: flex; align-self: end; align-items: center; gap: 8px; width: max-content; color: #d7ff61; font-size: 11.5px; font-weight: 850; letter-spacing: .025em; line-height: 1.2; text-transform: none; text-shadow: none; }
.home-area-copy > span .material-symbols-outlined { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; background: #c6fa4d; color: #071526; font-size: 15px; transition: transform .2s ease, background .2s ease; }
.home-area-card:hover { transform: translateY(-3px); border-color: rgba(139,179,45,.3); box-shadow: 0 16px 30px rgba(15,23,42,.16); }
.home-area-card:hover img { transform: scale(1.04); filter: saturate(1.08); }
.home-area-card:hover .home-area-card-shade { background: linear-gradient(180deg, rgba(4, 12, 17, .03) 0%, rgba(4, 12, 17, .22) 32%, rgba(4, 12, 17, .97) 70%, #040c11 100%); }
.home-area-card:hover .home-area-icon { background: #c6fa4d; color: #071526; transform: translateY(-2px); }
.home-area-card:hover .home-area-copy > span .material-symbols-outlined { background: #d7ff61; transform: translateX(3px); }
.home-area-card:focus-visible { outline: 3px solid #8bb32d; outline-offset: 3px; }
.home-areas-footer { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 18px; padding: 14px; border: 1px solid #d7e5dc; border-radius: 16px; background: linear-gradient(100deg, #f4faf6 0%, #f8fbf5 100%); box-shadow: 0 8px 22px rgba(15,23,42,.045); }
.home-areas-footer p { display: flex; align-items: center; gap: 11px; margin: 0; color: #43566a; font-size: 13px; line-height: 1.45; }
.home-areas-footer p strong { color: #123326; font-weight: 850; }
.home-areas-footer p .material-symbols-outlined { display: grid; flex: 0 0 auto; width: 34px; height: 34px; place-items: center; border-radius: 10px; background: #e3f3e9; color: #08795a; font-size: 20px; }
.home-areas-footer a { display: inline-flex; min-height: 44px; padding: 0 18px; border-radius: 999px; background: #c6fa4d; color: #071526; box-shadow: 0 7px 16px rgba(139,179,45,.18); transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.home-areas-footer a:hover { background: #d7ff61; box-shadow: 0 10px 20px rgba(139,179,45,.24); transform: translateY(-2px); }
.home-areas-footer a, .home-proof-actions a { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 6px; font-size: 11px; font-weight: 900; letter-spacing: .065em; text-transform: uppercase; }
.home-areas-footer a .material-symbols-outlined, .home-proof-actions a .material-symbols-outlined { font-size: 16px; transition: transform .18s ease; }
.home-areas-footer a:hover .material-symbols-outlined, .home-proof-actions a:hover .material-symbols-outlined { transform: translateX(3px); }

/* Sello institucional de participación como proveedor en Mercado Público. */
.mercadopublico-trust { display: inline-flex; flex-direction: column; align-items: center; width: 260px; padding: 0; color: #fff; text-align: center; filter: drop-shadow(0 4px 12px rgba(0,0,0,.58)); }
.mercadopublico-trust-logo { display: block; width: 235px; height: auto; margin: 0 auto; }
.mercadopublico-trust-logo-light { display: none; }
.mercadopublico-trust-copy { width: 100%; margin: 7px 0 0; color: currentColor; font-size: 9.5px; font-weight: 900; line-height: 1.2; letter-spacing: .09em; text-shadow: 0 2px 7px rgba(0,0,0,.85); text-transform: uppercase; }
.mercadopublico-trust-copy strong { display: block; margin-bottom: 3px; color: #c6fa4d; font-size: 8.5px; letter-spacing: .14em; }
.mercadopublico-trust-copy span { display: block; }
.mercadopublico-trust-home { position: absolute; z-index: 20; right: 0; bottom: 0; width: auto; }
.mercadopublico-trust-hero-desktop { position: absolute; z-index: 10; top: 50%; right: 34px; width: auto; transform: translateY(-50%); }
.mercadopublico-trust-hero-desktop .mercadopublico-trust { width: 220px; }
.mercadopublico-trust-hero-desktop .mercadopublico-trust-logo { width: 205px; }
.mercadopublico-trust-hero-desktop .mercadopublico-trust-copy { display: none; }
.mercadopublico-trust-hero-mobile { display: none; }
.mercadopublico-areas-module { position: absolute; z-index: 10; top: 34px; right: 38px; bottom: 34px; display: flex; width: 310px; flex-direction: column; align-items: flex-start; justify-content: center; padding-left: 32px; border-left: 1px solid rgba(255,255,255,.16); background: radial-gradient(circle at 65% 50%, rgba(139,179,45,.08), transparent 68%); }
.mercadopublico-areas-kicker { display: block; margin-bottom: 13px; color: #c6fa4d; font-size: 9px; font-weight: 900; line-height: 1.2; letter-spacing: .16em; text-transform: uppercase; }
.mercadopublico-areas-module .mercadopublico-trust { width: 225px; align-items: flex-start; }
.mercadopublico-areas-module .mercadopublico-trust-logo { width: 220px; margin-left: 0; }
.mercadopublico-areas-module .mercadopublico-trust-copy { display: none; }
.mercadopublico-areas-description { max-width: 238px; margin: 13px 0 0; color: rgba(255,255,255,.68); font-size: 10px; font-weight: 600; line-height: 1.5; }
.mercadopublico-cases-module { position: absolute; z-index: 10; top: 34px; right: 38px; bottom: 34px; display: flex; width: 310px; flex-direction: column; align-items: flex-start; justify-content: center; padding-left: 32px; border-left: 1px solid rgba(255,255,255,.16); background: radial-gradient(circle at 65% 50%, rgba(55,103,184,.09), transparent 68%); }
.mercadopublico-cases-kicker { display: block; max-width: 240px; margin-bottom: 13px; color: #c6fa4d; font-size: 9px; font-weight: 900; line-height: 1.2; letter-spacing: .14em; text-transform: uppercase; }
.mercadopublico-cases-module .mercadopublico-trust { width: 225px; align-items: flex-start; }
.mercadopublico-cases-module .mercadopublico-trust-logo { width: 220px; margin-left: 0; }
.mercadopublico-cases-module .mercadopublico-trust-copy { display: none; }
.mercadopublico-cases-description { max-width: 244px; margin: 13px 0 0; color: rgba(255,255,255,.68); font-size: 10px; font-weight: 600; line-height: 1.5; }
.mercadopublico-trust-area { display: flex; flex: 0 0 auto; flex-direction: column; align-items: flex-end; gap: 12px; }
.mercadopublico-trust-area .mercadopublico-trust { color: #26364b; filter: none; }
.mercadopublico-trust-area .mercadopublico-trust-logo-dark { display: none; }
.mercadopublico-trust-area .mercadopublico-trust-logo-light { display: block; width: 210px; }
.mercadopublico-trust-area .mercadopublico-trust-copy { text-shadow: none; }
.mercadopublico-trust-area .mercadopublico-trust-copy strong { color: #3f5f00; }

@media (max-width: 1023px) {
  .mercadopublico-trust-home { position: static; width: 100%; margin-top: 4px; }
  .mercadopublico-trust-home .mercadopublico-trust { display: flex; margin: 0 auto; }
  .mercadopublico-trust-hero-desktop { display: none; }
  .mercadopublico-trust-hero-mobile { position: relative; z-index: 10; display: block; margin: 20px auto 0; text-align: center; }
  .mercadopublico-trust-hero-mobile .mercadopublico-trust-copy { display: none; }
  .mercadopublico-areas-module { position: relative; top: auto; right: auto; bottom: auto; width: 100%; margin-top: 24px; padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,.16); border-left: 0; background: none; }
  .mercadopublico-areas-module .mercadopublico-trust { width: 225px; }
  .mercadopublico-cases-module { position: relative; top: auto; right: auto; bottom: auto; width: 100%; margin-top: 24px; padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,.16); border-left: 0; background: none; }
  .mercadopublico-cases-module .mercadopublico-trust { width: 225px; }
  .mercadopublico-trust-area { width: 100%; align-items: flex-start; }
}

.home-proof { padding: 42px 0 0; border-top: 1px solid #d9e2de; }
.home-proof-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 28px; }
.home-kicker { display: block; margin-bottom: 9px; color: #08795a; font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.home-proof-heading h2 { max-width: 700px; margin: 0; color: #071526; font-size: clamp(30px, 3.1vw, 48px); font-weight: 900; letter-spacing: -.055em; line-height: .98; text-transform: uppercase; }
.home-proof-heading > p { max-width: 340px; margin: 0; color: #5d6b7e; font-size: 14px; line-height: 1.65; }
.home-proof-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(200px, .72fr) minmax(200px, .72fr); grid-template-rows: minmax(160px, 1fr) minmax(160px, 1fr); gap: 14px; }
.home-proof-photo { position: relative; min-height: 0; overflow: hidden; margin: 0; border-radius: 16px; background: #e8eeea; }
.home-proof-photo-main { grid-row: span 2; min-height: 390px; }
.home-proof-photo img { width: 100%; height: 100%; min-height: 100%; object-fit: cover; transition: transform .45s ease; }
.home-proof-photo:hover img { transform: scale(1.035); }
.home-proof-photo figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 32px 18px 16px; color: #fff; background: linear-gradient(transparent, rgba(7, 21, 38, .82)); font-size: 13px; font-weight: 800; }
.home-proof-actions { display: flex; flex-direction: column; align-items: flex-start; padding: 24px; border-radius: 16px; background: #101b22; color: #fff; }
.home-proof-actions > .material-symbols-outlined { color: #c6fa4d; font-size: 28px; }
.home-proof-actions strong { margin-top: 18px; font-size: 18px; font-weight: 900; line-height: 1.1; }
.home-proof-actions p { margin: 9px 0 20px; color: #b8c6cf; font-size: 12px; line-height: 1.55; }
.home-proof-actions a { color: #d7ff61; }

.home-product-spotlight { display: grid; grid-template-columns: minmax(220px, .72fr) minmax(0, 1.45fr) auto; align-items: center; gap: 38px; padding: 28px; border: 1px solid #dce6e0; border-radius: 22px; background: linear-gradient(112deg, #fff 0%, #fbfdfb 65%, #edf8f0 100%); box-shadow: 0 14px 30px rgba(15, 23, 42, .05); }
.home-product-spotlight-main { display: contents; }
.home-product-spotlight-image { grid-column: 1; display: flex; align-items: center; justify-content: center; aspect-ratio: 1 / 1; overflow: hidden; padding: 18px; border-radius: 16px; background: #fff; border: 1px solid #edf1ef; }
.home-product-spotlight-image img { width: 100%; height: 100%; object-fit: contain; }
.home-product-spotlight-copy { grid-column: 2; }
.home-product-spotlight-copy > span:first-child { display: block; margin-bottom: 10px; color: #08795a; font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.home-product-spotlight-copy h3 { max-width: 620px; margin: 0; color: #071526; font-size: clamp(25px, 3vw, 42px); font-weight: 900; letter-spacing: -.045em; line-height: .98; text-transform: uppercase; }
.home-product-spotlight-copy .font-mono { margin-top: 15px; color: #718096; font-size: 11px; }
.home-product-spotlight-copy p { max-width: 620px; margin: 18px 0 0; color: #526174; font-size: 14px; line-height: 1.65; }
.home-product-spotlight-action { grid-column: 3; display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 21px; border: 0; border-radius: 999px; background: #0b1218; color: #d7ff61; cursor: pointer; font-size: 11px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; transition: background .18s ease, color .18s ease, transform .18s ease; }
.home-product-spotlight-action:hover { background: #d7ff61; color: #0b1218; transform: translateY(-2px); }

@media (max-width: 900px) {
  .home-areas-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-area-card { min-height: 246px; }
  .home-proof-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 220px; }
  .home-proof-photo-main { grid-row: span 1; min-height: 0; }
  .home-proof-actions { grid-column: span 2; }
  .home-product-spotlight { grid-template-columns: 180px minmax(0, 1fr); gap: 24px; }
  .home-product-spotlight-action { grid-column: 2; justify-self: start; }
}
@media (max-width: 640px) {
  .home-areas-heading { display: block; margin-bottom: 20px; }
  .home-areas-heading > p { margin-top: 14px; }
  .home-areas-grid { display: flex; gap: 12px; margin-right: -16px; padding-right: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .home-areas-grid::-webkit-scrollbar { display: none; }
  .home-area-card { flex: 0 0 min(82vw, 310px); min-height: 246px; scroll-snap-align: start; }
  .home-areas-footer { display: flex; }
  .home-proof { padding-top: 30px; }
  .home-proof-heading { display: block; margin-bottom: 20px; }
  .home-proof-heading > p { margin-top: 16px; }
  .home-proof-grid { grid-template-columns: 1fr; grid-template-rows: 250px 180px 180px auto; }
  .home-proof-photo-main, .home-proof-actions { grid-column: auto; }
  .home-product-spotlight { grid-template-columns: 1fr; padding: 18px; }
  .home-product-spotlight-image, .home-product-spotlight-copy, .home-product-spotlight-action { grid-column: auto; }
  .home-product-spotlight-image { max-height: 280px; }
  .home-product-spotlight-action { justify-self: stretch; }
}

/* Footer publico: cierre util, limpio y consistente con la identidad de marca. */
:root {
  --front-content-max: 1400px;
  --front-gutter: 32px;
}
/* Una sola reticula para cabecera, cuerpo y cierre en todo el sitio publico. */
body .container,
body .site-utility-inner,
body .site-toolbar-inner,
body .site-catalog-inner {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--front-content-max) !important;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--front-gutter) !important;
  padding-right: var(--front-gutter) !important;
}
.footer-trust {
  background: linear-gradient(100deg, #f3f6f3 0%, #f8faf7 56%, #f3f8e8 100%);
  border-top: 1px solid #e2e8e4;
  border-bottom: 1px solid #e2e8e4;
}
.footer-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 22px;
  padding-bottom: 22px;
}
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 24px;
  border-left: 1px solid #dce5de;
}
.footer-trust-item:first-child { padding-left: 0; border-left: 0; }
.footer-trust-item:last-child { padding-right: 0; }
.footer-trust-item > .material-symbols-outlined {
  color: #0c7a5a;
  font-size: 24px;
  font-variation-settings: 'FILL' 1;
}
.footer-trust-item strong,
.footer-trust-item small { display: block; }
.footer-trust-item strong { color: #0f172a; font-size: 12px; font-weight: 800; letter-spacing: .035em; }
.footer-trust-item small { margin-top: 2px; color: #64748b; font-size: 11px; line-height: 1.35; }

.footer-main {
  background: #fbfcfa;
  border-top: 0;
  padding: 54px 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) minmax(120px, .85fr) minmax(150px, 1fr) minmax(210px, 1.3fr) minmax(150px, .9fr);
  gap: 36px;
}
.footer-brand { padding-right: 18px; }
.footer-logo-link { display: inline-flex; align-items: center; }
.footer-logo-img { width: 208px; height: 46px; object-fit: contain; object-position: left center; }
.footer-brand > p {
  max-width: 270px;
  margin: 14px 0 20px;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.6;
  text-transform: uppercase;
}
.footer-primary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid #0d8a66;
  color: #047857;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: color .18s ease, gap .18s ease;
}
.footer-primary-link:hover { color: #0f172a; gap: 12px; }
.footer-col h2 {
  margin: 4px 0 16px;
  color: #0f172a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}
.footer-col ul { margin: 0; padding: 0; list-style: none; }
.footer-col li { margin: 0 0 10px; }
.footer-col a,
.footer-col li {
  color: #64748b;
  font-size: 13px;
  line-height: 1.4;
}
.footer-col > ul > li { display: flex; align-items: flex-start; gap: 8px; }
.footer-col a:hover { color: #047857; }
.footer-contact .material-symbols-outlined {
  flex: 0 0 auto;
  margin-top: 1px;
  color: #0c7a5a;
  font-size: 16px;
}
.footer-contact-link { color: #64748b; }
.footer-social { gap: 8px; flex-wrap: wrap; }
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid #dce4e0;
  background: #fff;
  color: #526172;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}
.footer-social a:hover { border-color: #0c7a5a; background: #eaf8f0; color: #047857; transform: translateY(-2px); }
.footer-social-note { margin: 14px 0 0; color: #94a3b8; font-size: 11px; line-height: 1.55; }
.footer-bottom { background: #101b22; padding: 15px 0; color: rgba(255, 255, 255, .62); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 11px; }

/* Paginas de ayuda enlazadas desde el footer. */
.help-page { padding: 42px 0 76px; background: #fbfcfa; }
.help-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding-top: 8px;
  padding-bottom: 36px;
  border-bottom: 1px solid #dbe4df;
}
.help-eyebrow { margin: 0 0 10px; color: #047857; font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.help-hero h1,
.quote-guide-cta h2 { max-width: 720px; margin: 0; color: #071526; font-size: clamp(32px, 4.1vw, 58px); font-weight: 900; letter-spacing: -.055em; line-height: .98; }
.help-intro { max-width: 680px; margin: 20px 0 0; color: #526174; font-size: 17px; line-height: 1.7; }
.help-hero-actions,
.quote-guide-actions { display: flex; flex-wrap: wrap; gap: 10px; flex: 0 0 auto; }
.help-button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 0 18px; border-radius: 999px; font-size: 11px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.help-button:hover { transform: translateY(-2px); }
.help-button-primary { background: #0b1218; color: #d7ff61; box-shadow: 0 8px 18px rgba(15, 23, 42, .14); }
.help-button-primary:hover { background: #17242e; }
.help-button-secondary { border: 1px solid #ced8d3; color: #0f172a; background: #fff; }
.help-button-secondary:hover { border-color: #0c7a5a; color: #047857; }
.help-content { display: grid; grid-template-columns: minmax(220px, .62fr) minmax(0, 1.7fr); gap: 50px; padding-top: 42px; }
.help-aside { align-self: start; padding: 25px; background: #edf8f1; border: 1px solid #d5eddf; border-radius: 18px; }
.help-aside > .material-symbols-outlined { color: #047857; font-size: 28px; font-variation-settings: 'FILL' 1; }
.help-aside h2 { margin: 18px 0 8px; color: #0f172a; font-size: 19px; font-weight: 900; line-height: 1.12; }
.help-aside p { margin: 0; color: #526174; font-size: 13px; line-height: 1.6; }
.help-aside a { display: inline-flex; gap: 7px; margin-top: 20px; color: #047857; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.faq-item { padding: 2px 18px; background: #fff; border: 1px solid #dfe7e2; border-radius: 12px; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 58px; cursor: pointer; color: #0f172a; font-size: 14px; font-weight: 800; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .material-symbols-outlined { color: #0c7a5a; font-size: 19px; transition: transform .18s ease; }
.faq-item[open] summary .material-symbols-outlined { transform: rotate(45deg); }
.faq-item p { margin: 0 0 18px; color: #64748b; font-size: 13px; line-height: 1.65; }
.quote-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; padding-top: 42px; }
.quote-step { min-height: 230px; padding: 24px; background: #fff; border: 1px solid #dfe7e2; border-radius: 16px; }
.quote-step > span { display: block; margin-bottom: 42px; color: #0c7a5a; font-size: 13px; font-weight: 900; letter-spacing: .08em; }
.quote-step h2 { margin: 0; color: #0f172a; font-size: 18px; font-weight: 900; line-height: 1.13; }
.quote-step p { margin: 12px 0 0; color: #64748b; font-size: 13px; line-height: 1.6; }
.quote-guide-cta { display: flex; align-items: center; justify-content: space-between; gap: 36px; margin-top: 46px; padding: 34px; background: #ecf8ef; border: 1px solid #d5eddf; border-radius: 20px; }
.quote-guide-cta h2 { max-width: 580px; font-size: clamp(27px, 3vw, 40px); }
.quote-guide-cta > div > p:not(.help-eyebrow) { margin: 12px 0 0; color: #526174; font-size: 14px; line-height: 1.6; }

@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; row-gap: 40px; }
  .footer-brand { grid-row: span 2; }
  .footer-social-col { grid-column: span 2; }
  .quote-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  :root { --front-gutter: 16px; }
  .footer-trust-grid { grid-template-columns: 1fr 1fr; padding-top: 6px; padding-bottom: 6px; }
  .footer-trust-item { padding: 16px 10px; border-left: 0; border-bottom: 1px solid #dce5de; }
  .footer-trust-item:nth-child(odd) { border-right: 1px solid #dce5de; }
  .footer-trust-item:nth-last-child(-n+2) { border-bottom: 0; }
  .footer-trust-item strong { font-size: 11px; }
  .footer-trust-item small { font-size: 10px; }
  .footer-main { padding: 38px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 22px; }
  .footer-brand { grid-column: 1 / -1; grid-row: auto; padding-bottom: 26px; border-bottom: 1px solid #dfe7e2; }
  .footer-logo-img { width: 190px; height: 42px; }
  .footer-social-col { grid-column: 1 / -1; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 5px; }
  .help-page { padding: 28px 0 50px; }
  .help-hero { align-items: flex-start; flex-direction: column; gap: 24px; padding-bottom: 28px; }
  .help-intro { font-size: 15px; }
  .help-content { grid-template-columns: 1fr; gap: 24px; padding-top: 28px; }
  .faq-grid { grid-template-columns: 1fr; }
  .quote-steps { grid-template-columns: 1fr; gap: 12px; padding-top: 28px; }
  .quote-step { min-height: 0; }
  .quote-step > span { margin-bottom: 24px; }
  .quote-guide-cta { align-items: flex-start; flex-direction: column; gap: 24px; margin-top: 28px; padding: 26px; }
}
