  /* ---------- Tokens ---------- */
  :root {
    --navy-900: #0b1d36;
    --navy-800: #122a4d;
    --navy-700: #1b3a66;
    --navy-50:  #eef2f8;
    --amber-500: #d4a017;
    --amber-400: #e6b94a;
    --amber-50:  #fdf6e3;
    --gray-900: #111827;
    --gray-700: #374151;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50:  #f9fafb;
    --white: #ffffff;
    --green-500: #25d366;
    --shadow-sm: 0 1px 2px rgba(11, 29, 54, 0.06);
    --shadow-md: 0 4px 14px rgba(11, 29, 54, 0.08);
    --shadow-lg: 0 14px 40px rgba(11, 29, 54, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --container: 1200px;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }
  .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px; border-radius: 999px;
    font-weight: 600; font-size: 15px;
    border: 1.5px solid transparent;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
    white-space: nowrap;
  }
  .btn-primary { background: var(--amber-500); color: var(--navy-900); }
  .btn-primary:hover { background: var(--amber-400); transform: translateY(-1px); box-shadow: var(--shadow-md); }
  .btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
  .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
  .btn-dark { background: var(--navy-900); color: var(--white); }
  .btn-dark:hover { background: var(--navy-800); transform: translateY(-1px); box-shadow: var(--shadow-md); }
  .btn-outline { background: transparent; color: var(--navy-900); border-color: var(--gray-300); }
  .btn-outline:hover { border-color: var(--navy-900); background: var(--navy-50); }
  .btn-ghost { background: transparent; color: var(--white); border-color: transparent; opacity: .85; }
  .btn-ghost:hover { opacity: 1; background: rgba(255,255,255,0.08); }

  /* ---------- Header ---------- */
  .header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid var(--gray-200);
  }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    height: 76px; gap: 24px;
  }
  .brand { display: flex; align-items: center; gap: 12px; font-weight: 800; text-decoration: none; }
  .brand-mark {
    height: 48px;
    display: flex; align-items: center;
    flex-shrink: 0;
  }
  .brand-mark img { height: 48px; width: auto; display: block; }
  .brand-mark svg { width: 48px; height: 48px; display: block; }
  .brand-text { line-height: 1; }
  .brand-text .b1 { font-size: 11px; letter-spacing: 2.4px; color: var(--gray-500); font-weight: 600; text-transform: uppercase; }
  .brand-text .b2 { font-size: 18px; color: var(--navy-900); margin-top: 4px; font-weight: 800; letter-spacing: 0.2px; }

  .nav-links { display: flex; align-items: center; gap: 6px; }
  .nav-link {
    position: relative;
    padding: 10px 14px; border-radius: 8px;
    font-size: 15px; font-weight: 500; color: var(--gray-700);
    transition: color .15s, background .15s;
  }
  .nav-link:hover { color: var(--navy-900); background: var(--gray-100); }
  .nav-link.has-menu::after {
    content: ''; display: inline-block; width: 8px; height: 8px;
    border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    margin-left: 6px; opacity: 0.6;
  }
  .nav-cta { display: flex; align-items: center; gap: 10px; }

  /* Productos dropdown */
  .has-dropdown { position: relative; }
  .dropdown {
    position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(-4px);
    background: var(--white); border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200);
    min-width: 560px; padding: 22px;
    opacity: 0; visibility: hidden; transition: all .18s ease;
  }
  /* Mega dropdown: 6 columns, wider */
  .dropdown.mega { min-width: min(1100px, 95vw); padding: 26px; }
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
  }
  .dropdown-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px;
  }
  .dropdown-grid.mega-grid {
    grid-template-columns: repeat(6, 1fr); gap: 8px 18px;
  }
  .dropdown h4 {
    font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--gray-500); margin: 8px 8px 6px; font-weight: 700;
  }
  .dropdown.mega .mega-col h4 {
    margin: 0 0 10px; padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-200);
    text-transform: none; letter-spacing: 0;
    font-size: 13px; color: var(--navy-900); font-weight: 700;
  }
  .dropdown.mega .mega-col h4 a {
    display: block; padding: 0; color: inherit;
  }
  .dropdown.mega .mega-col h4 a:hover { color: var(--navy-700); background: transparent; }
  .dropdown a {
    display: block; padding: 6px 10px; border-radius: 6px;
    font-size: 13px; color: var(--gray-700);
  }
  .dropdown a:hover { background: var(--navy-50); color: var(--navy-900); }
  .dropdown.mega .mega-col a:not(h4 a) { padding: 5px 8px; font-size: 13px; }

  /* Mobile nav */
  .nav-toggle {
    display: none;
    background: transparent; border: 1px solid var(--gray-300);
    width: 42px; height: 42px; border-radius: 10px;
    align-items: center; justify-content: center;
  }
  .nav-toggle span {
    display: block; width: 18px; height: 2px; background: var(--navy-900);
    position: relative;
  }
  .nav-toggle span::before, .nav-toggle span::after {
    content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--navy-900);
  }
  .nav-toggle span::before { top: -6px; }
  .nav-toggle span::after  { top:  6px; }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    background:
      radial-gradient(1200px 600px at 80% -10%, rgba(212,160,23,0.18), transparent 60%),
      radial-gradient(900px 500px at 0% 100%, rgba(27,58,102,0.18), transparent 60%),
      linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
    color: var(--white);
    overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
  }
  .hero-inner {
    position: relative;
    display: grid; grid-template-columns: 1.05fr 0.95fr;
    gap: 56px; align-items: center;
    padding: 90px 0 110px;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--amber-400);
    background: rgba(212,160,23,0.12);
    border: 1px solid rgba(212,160,23,0.4);
    padding: 8px 14px; border-radius: 999px;
  }
  .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber-400); }
  .hero h1 {
    font-size: clamp(36px, 5vw, 56px); line-height: 1.08; margin: 22px 0 18px;
    font-weight: 800; letter-spacing: -0.02em;
  }
  .hero h1 .accent { color: var(--amber-400); }
  .hero p.lead {
    font-size: 18px; color: rgba(255,255,255,0.82);
    max-width: 560px; margin: 0 0 30px;
  }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
  .hero-meta {
    display: flex; gap: 28px; margin-top: 36px; padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap;
  }
  .hero-meta-item .num { font-size: 24px; font-weight: 800; color: var(--white); }
  .hero-meta-item .lbl { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 2px; }

  .hero-visual {
    position: relative; aspect-ratio: 1 / 1; max-width: 520px; justify-self: end;
  }
  .hero-card {
    position: absolute; background: var(--white); color: var(--navy-900);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    padding: 22px;
  }
  .hero-card .ico {
    width: 44px; height: 44px; border-radius: 12px;
    display: grid; place-items: center; margin-bottom: 12px;
  }
  .hero-card .ico svg { width: 22px; height: 22px; }
  .hero-card h4 { margin: 0 0 4px; font-size: 16px; font-weight: 700; }
  .hero-card p  { margin: 0; font-size: 13px; color: var(--gray-500); }

  .hc-1 { top: 0; left: 0; width: 230px; transform: rotate(-3deg); }
  .hc-1 .ico { background: #e0f2fe; color: #0369a1; }
  .hc-2 { top: 30%; right: 0; width: 240px; transform: rotate(2deg); }
  .hc-2 .ico { background: #fef3c7; color: #b45309; }
  .hc-3 { bottom: 0; left: 8%; width: 250px; transform: rotate(1deg); }
  .hc-3 .ico { background: #dcfce7; color: #15803d; }
  .hc-glow {
    position: absolute; inset: 10% 5%; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,160,23,0.25), transparent 60%);
    filter: blur(20px); z-index: -1;
  }

  /* Trust strip */
  .trust {
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
  }
  .trust-row { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center;
    color: rgba(255,255,255,0.7); font-size: 14px; }
  .trust-row svg { width: 18px; height: 18px; color: var(--amber-400); }
  .trust-item { display: inline-flex; align-items: center; gap: 8px; }

  /* ---------- Sections shared ---------- */
  section { padding: 56px 0; }
  .section-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
  .section-head .kicker {
    display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1.6px;
    text-transform: uppercase; color: var(--amber-500);
    background: var(--amber-50); padding: 6px 12px; border-radius: 999px;
  }
  .section-head h2 {
    font-size: clamp(28px, 3.6vw, 40px); margin: 16px 0 12px; line-height: 1.15;
    letter-spacing: -0.01em; color: var(--navy-900);
  }
  .section-head p { color: var(--gray-500); font-size: 17px; margin: 0; }

  /* ---------- Categories ---------- */
  .categories { background: var(--gray-50); }
  .cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
  .cat-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-md); padding: 26px 18px;
    text-align: center; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }
  .cat-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-md);
    border-color: var(--navy-700);
  }
  .cat-icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: grid; place-items: center; margin: 0 auto 14px;
    background: var(--navy-50); color: var(--navy-800);
  }
  .cat-icon svg { width: 28px; height: 28px; }
  .cat-card h3 { font-size: 15px; margin: 0 0 4px; font-weight: 700; color: var(--navy-900); }
  .cat-card p  { font-size: 13px; margin: 0; color: var(--gray-500); }

  /* ---------- Brands ---------- */
  .brands-section { background: var(--white); }
  .brand-group { margin-bottom: 40px; }
  .brand-group h3 {
    font-size: 13px; letter-spacing: 1.4px; text-transform: uppercase;
    color: var(--gray-500); font-weight: 700;
    margin: 0 0 16px; padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
  }
  .brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .brand-card {
    position: relative;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-md); padding: 24px 22px;
    transition: all .18s ease;
    display: flex; flex-direction: column; gap: 10px;
    min-height: 200px;
  }
  .brand-card:hover {
    border-color: var(--navy-700); transform: translateY(-3px); box-shadow: var(--shadow-md);
  }
  .brand-card .badge {
    position: absolute; top: 14px; right: 14px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
    background: var(--amber-50); color: var(--amber-500);
    padding: 4px 8px; border-radius: 6px;
  }
  .brand-card .logo-wrap {
    height: 70px; display: flex; align-items: center; justify-content: flex-start;
    margin: 6px 0 4px;
  }
  .brand-card .logo-wrap img {
    max-height: 60px; max-width: 160px; width: auto; object-fit: contain;
    filter: none; transition: filter .18s;
  }
  .brand-card .desc { font-size: 13px; color: var(--gray-500); flex: 1; line-height: 1.5; }
  .brand-card .link {
    font-size: 13px; font-weight: 600; color: var(--navy-700);
    display: inline-flex; align-items: center; gap: 6px;
  }
  .brand-card .link svg { width: 14px; height: 14px; transition: transform .15s; }
  .brand-card:hover .link svg { transform: translateX(3px); }

  /* ---------- Featured Products ---------- */
  .products { background: var(--gray-50); }
  .product-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
    margin-bottom: 36px;
  }
  .product-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-md); overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .18s, box-shadow .18s, border-color .18s;
    text-decoration: none; color: inherit;
  }
  .product-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-md);
    border-color: var(--navy-700);
  }
  .product-img {
    aspect-ratio: 1 / 1; background: var(--gray-100);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; position: relative;
  }
  .product-img img {
    width: 100%; height: 100%; object-fit: contain;
    padding: 16px; transition: transform .25s;
  }
  .product-card:hover .product-img img { transform: scale(1.04); }
  .product-img.placeholder {
    background: linear-gradient(135deg, var(--navy-50), var(--gray-100));
    color: var(--navy-700); font-weight: 700;
  }
  .product-img.placeholder svg { width: 56px; height: 56px; opacity: 0.6; }
  .product-info { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
  .product-name {
    font-size: 14px; font-weight: 600; color: var(--navy-900);
    line-height: 1.4; margin: 0 0 8px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; min-height: 40px;
  }
  .product-price {
    margin-top: auto; font-size: 18px; font-weight: 800; color: var(--navy-900);
    letter-spacing: -0.01em;
  }
  .product-cta {
    text-align: center; padding-top: 12px;
  }
  .product-loading {
    text-align: center; padding: 40px; color: var(--gray-500); font-size: 14px;
  }

  /* Skeleton shimmer */
  .product-skeleton {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-md); overflow: hidden;
    display: flex; flex-direction: column;
  }
  .skel { background: linear-gradient(90deg, #eef0f3 0%, #f6f7f9 50%, #eef0f3 100%);
    background-size: 200% 100%; animation: shimmer 1.4s ease-in-out infinite; border-radius: 6px; }
  .skel-img { aspect-ratio: 1 / 1; border-radius: 0; }
  .skel-block { height: 14px; margin: 0 18px 10px; }
  .skel-block.first { margin-top: 16px; width: 90%; }
  .skel-block.short { width: 60%; }
  .skel-block.price { height: 22px; width: 45%; margin-top: 8px; margin-bottom: 18px; }
  @keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

  /* Reload button */
  .product-reload {
    background: transparent; border: 1px solid var(--gray-300);
    color: var(--gray-700); padding: 8px 16px; border-radius: 999px;
    font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px;
    transition: all .15s; margin-left: 12px;
  }
  .product-reload:hover { border-color: var(--navy-700); color: var(--navy-900); background: var(--gray-50); }
  .product-reload svg { width: 14px; height: 14px; }
  .product-reload.spinning svg { animation: spin 0.8s linear infinite; }
  @keyframes spin { to { transform: rotate(360deg); } }

  @media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 720px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } .product-info { padding: 12px; } .product-price { font-size: 15px; } }

  /* ---------- Value Props ---------- */
  .values { background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%); }
  .value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .value-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-md); padding: 28px;
    transition: transform .18s, box-shadow .18s;
  }
  .value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
  .value-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--amber-50); color: var(--amber-500);
    display: grid; place-items: center; margin-bottom: 16px;
  }
  .value-icon svg { width: 24px; height: 24px; }
  .value-card h3 { margin: 0 0 8px; font-size: 16px; color: var(--navy-900); font-weight: 700; }
  .value-card p { margin: 0; font-size: 14px; color: var(--gray-500); }

  /* ---------- About teaser ---------- */
  .about { background: var(--white); }
  .about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .about h2 { font-size: clamp(28px, 3.4vw, 38px); margin: 12px 0 16px; color: var(--navy-900); letter-spacing: -0.01em; }
  .about p { color: var(--gray-700); font-size: 16px; margin: 0 0 16px; }
  .about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 30px; }
  .about-stat .num { font-size: 32px; font-weight: 800; color: var(--navy-900); letter-spacing: -0.02em; }
  .about-stat .lbl { font-size: 13px; color: var(--gray-500); }

  .about-visual {
    position: relative; aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg); overflow: hidden;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
    box-shadow: var(--shadow-lg);
  }
  .about-visual::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 20% 20%, rgba(212,160,23,0.4), transparent 35%),
      radial-gradient(circle at 80% 80%, rgba(27,58,102,0.6), transparent 35%);
  }
  .about-visual::after {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .about-quote {
    position: absolute; left: 24px; right: 24px; bottom: 24px;
    background: rgba(255,255,255,0.95); border-radius: var(--radius-md);
    padding: 18px 22px; backdrop-filter: blur(10px);
  }
  .about-quote .q { font-size: 14px; color: var(--navy-900); font-style: italic; }
  .about-quote .a { font-size: 12px; color: var(--gray-500); margin-top: 6px; }

  /* ---------- CTA strip ---------- */
  .cta-strip {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    color: var(--white); position: relative; overflow: hidden;
  }
  .cta-strip::before {
    content: ''; position: absolute; right: -120px; top: -120px;
    width: 360px; height: 360px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,160,23,0.25), transparent 60%);
    filter: blur(10px);
  }
  .cta-inner {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center;
    position: relative;
  }
  .cta-strip h2 { font-size: clamp(26px, 3vw, 36px); margin: 0 0 12px; letter-spacing: -0.01em; }
  .cta-strip p { color: rgba(255,255,255,0.78); font-size: 16px; margin: 0 0 24px; }
  .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
  .cta-contact-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md); padding: 26px;
    backdrop-filter: blur(10px);
  }
  .cc-row { display: flex; align-items: center; gap: 14px; padding: 12px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.12); }
  .cc-row:last-child { border-bottom: none; }
  .cc-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: rgba(212,160,23,0.2); color: var(--amber-400);
    display: grid; place-items: center;
  }
  .cc-icon svg { width: 18px; height: 18px; }
  .cc-text .lbl { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
  .cc-text .val { font-size: 15px; color: var(--white); font-weight: 600; margin-top: 2px; }

  /* ---------- Footer ---------- */
  footer.footer {
    background: #060f1f; color: rgba(255,255,255,0.7);
    padding: 70px 0 28px;
  }
  .foot-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px;
    padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer h5 {
    font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--white); font-weight: 700; margin: 0 0 16px;
  }
  .footer ul { list-style: none; padding: 0; margin: 0; }
  .footer li { margin-bottom: 10px; font-size: 14px; }
  .footer a:hover { color: var(--amber-400); }
  .foot-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 18px; }
  .foot-brand .brand-text .b1 { color: rgba(255,255,255,0.5); }
  .foot-brand .brand-text .b2 { color: var(--white); }
  .foot-about { font-size: 14px; max-width: 320px; }
  .foot-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 24px; font-size: 13px; color: rgba(255,255,255,0.5);
    flex-wrap: wrap; gap: 12px;
  }
  .socials { display: flex; gap: 10px; }
  .socials a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.06); display: grid; place-items: center;
    transition: background .15s;
  }
  .socials a:hover { background: var(--amber-500); color: var(--navy-900); }
  .socials svg { width: 16px; height: 16px; }

  /* ---------- WhatsApp floating ---------- */
  .wa-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 90;
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--green-500); color: var(--white);
    display: grid; place-items: center;
    box-shadow: 0 14px 30px rgba(37,211,102,0.4);
    transition: transform .15s ease;
  }
  .wa-float:hover { transform: scale(1.06); }
  .wa-float svg { width: 30px; height: 30px; }
  .wa-pulse {
    position: absolute; inset: 0; border-radius: 50%;
    background: var(--green-500); opacity: 0.45;
    animation: pulse 2.2s ease-out infinite;
  }
  @keyframes pulse {
    0%   { transform: scale(1);   opacity: 0.45; }
    100% { transform: scale(1.6); opacity: 0;    }
  }

  /* ---------- Cookie consent banner ---------- */
  .cookie-banner {
    position: fixed; bottom: 16px; left: 16px; right: 16px;
    max-width: 720px; margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(11,29,54,0.15);
    padding: 18px 22px;
    z-index: 95;
    display: none;
    align-items: center; gap: 18px;
    font-size: 14px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
  }
  .cookie-banner.show { display: flex; transform: translateY(0); opacity: 1; }
  .cookie-banner-text { flex: 1; color: var(--gray-700); line-height: 1.5; }
  .cookie-banner-text strong { color: var(--navy-900); display: block; margin-bottom: 4px; font-weight: 700; }
  .cookie-banner-text a { color: var(--navy-700); text-decoration: underline; }
  .cookie-banner-actions { display: flex; gap: 8px; flex-shrink: 0; }
  .cookie-btn {
    padding: 9px 16px; border-radius: 8px; font-size: 13px; font-weight: 600;
    cursor: pointer; border: 1px solid transparent;
    font-family: inherit; transition: all .15s;
    white-space: nowrap;
  }
  .cookie-btn.accept { background: var(--navy-900); color: var(--white); }
  .cookie-btn.accept:hover { background: var(--navy-800); }
  .cookie-btn.reject { background: transparent; color: var(--gray-700); border-color: var(--gray-300); }
  .cookie-btn.reject:hover { border-color: var(--navy-900); color: var(--navy-900); }
  @media (max-width: 720px) {
    .cookie-banner { flex-direction: column; align-items: stretch; bottom: 90px; }
    .cookie-banner-actions { justify-content: stretch; }
    .cookie-btn { flex: 1; }
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 1024px) {
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .brand-grid { grid-template-columns: repeat(3, 1fr); }
    .value-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 70px 0 80px; }
    .hero-visual { display: none; }
    .about-inner { grid-template-columns: 1fr; }
    .cta-inner { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 720px) {
    html, body { overflow-x: hidden; }
    .container { padding: 0 18px; }
    .nav-links, .nav-cta .btn:not(.nav-toggle) { display: none; }
    .nav-toggle { display: inline-flex; min-width: 44px; min-height: 44px; }
    .nav-mobile-cta { display: inline-flex !important; padding: 10px 14px; font-size: 13px; min-height: 44px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .brand-grid { grid-template-columns: repeat(2, 1fr); }
    .value-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .foot-grid { grid-template-columns: 1fr; gap: 28px; }
    section { padding: 64px 0; }
    .hero-meta { gap: 18px; }
    /* Touch targets mínimos 44×44 px (WCAG AAA) */
    .btn, .nav-link, .cookie-btn { min-height: 44px; }
    /* Header altura ajustada (sin Tienda Online inline) */
    .nav { height: 68px; }
    .mobile-menu { top: 68px; }
  }
  @media (max-width: 480px) {
    .container { padding: 0 14px; }
    h1 { font-size: 28px !important; line-height: 1.15; }
    .hero h1 { font-size: clamp(26px, 8vw, 36px); }
    .hero p.lead { font-size: 15px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .section-head h2 { font-size: clamp(22px, 6vw, 28px); }
    .section-head p { font-size: 15px; }
    .cat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .cat-card { padding: 20px 14px; }
    .cat-card h3 { font-size: 14px; }
    .brand-grid { grid-template-columns: 1fr; gap: 12px; }
    .brand-card { min-height: 180px; }
    .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; justify-content: center; }
    .wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
    .wa-float svg { width: 26px; height: 26px; }
    /* Cookie banner se mueve para no taparse con WhatsApp en mobile */
    .cookie-banner { bottom: 80px; padding: 14px 16px; font-size: 13px; }
  }

  /* Mobile menu (simple toggle) */
  .mobile-menu {
    display: none;
    position: fixed; top: 76px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--gray-200);
    padding: 18px 24px; z-index: 99;
    box-shadow: var(--shadow-md);
  }
  .mobile-menu.open { display: block; }
  .mobile-menu a {
    display: block; padding: 12px 8px; font-size: 16px; font-weight: 500;
    color: var(--gray-700); border-bottom: 1px solid var(--gray-100);
  }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-submenu { border-bottom: 1px solid var(--gray-100); }
  .mobile-submenu summary {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 8px; font-size: 16px; font-weight: 500;
    color: var(--gray-700); cursor: pointer; list-style: none;
  }
  .mobile-submenu summary::after {
    content: '+'; font-size: 20px; color: var(--gray-500); transition: transform .2s;
  }
  .mobile-submenu[open] summary::after { transform: rotate(45deg); }
  .mobile-submenu a {
    padding-left: 22px !important; font-size: 14px !important; color: var(--gray-700) !important;
    border-bottom: 1px dashed var(--gray-100) !important;
  }
  .mobile-submenu a:last-child { border-bottom: 1px dashed var(--gray-100) !important; }


  /* ============ Category page (Phase 2A.3) ============ */
  .cat-hero {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    color: var(--white);
    padding: 80px 0 64px;
    position: relative;
    overflow: hidden;
  }
  .cat-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
  }
  .cat-hero-inner { position: relative; display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
  .cat-hero .breadcrumb { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
  .cat-hero .breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
  .cat-hero .breadcrumb a:hover { color: var(--amber-400); }
  .cat-hero h1 { font-size: clamp(36px, 5vw, 52px); font-weight: 800; line-height: 1.1; margin: 0 0 16px; letter-spacing: -0.02em; }
  .cat-hero h1 .accent { color: var(--amber-400); }
  .cat-hero p.lead { font-size: 17px; color: rgba(255,255,255,0.78); max-width: 540px; margin: 0; line-height: 1.6; }
  .cat-hero-visual { display: flex; justify-content: center; align-items: center; }
  .cat-hero-icon {
    width: 220px; height: 220px; border-radius: 50%;
    background: rgba(212,160,23,0.1);
    border: 1px solid rgba(212,160,23,0.3);
    display: grid; place-items: center;
  }
  .cat-hero-icon svg { width: 100px; height: 100px; color: var(--amber-400); }

  .sub-nav {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky; top: 76px; z-index: 80;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .sub-nav-inner { display: flex; gap: 0; padding: 0 24px; max-width: var(--container); margin: 0 auto; }
  .sub-nav a {
    padding: 18px 20px;
    font-size: 14px; font-weight: 600; color: var(--gray-700);
    white-space: nowrap; text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all .15s;
  }
  .sub-nav a:hover { color: var(--navy-900); }
  .sub-nav a.active { color: var(--navy-900); border-bottom-color: var(--amber-500); }

  .subcat-section { padding: 80px 0; }
  .subcat-section:nth-child(even) { background: var(--gray-50); }
  .subcat-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 36px; gap: 24px; flex-wrap: wrap; }
  .subcat-head h2 {
    margin: 0; font-size: clamp(26px, 3.5vw, 36px);
    color: var(--navy-900); letter-spacing: -0.01em;
  }
  .subcat-head h2 .num {
    display: inline-block; font-size: 14px; font-weight: 600;
    background: var(--amber-50); color: var(--amber-500);
    padding: 4px 12px; border-radius: 999px; margin-left: 12px;
    vertical-align: middle;
  }
  .subcat-head p { color: var(--gray-700); max-width: 580px; margin: 8px 0 0; font-size: 16px; }
  .subcat-actions { display: flex; gap: 10px; flex-wrap: wrap; }
  .subcat-actions .btn { font-size: 14px; padding: 10px 18px; }

  .brand-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
  .brand-chip {
    background: var(--white); border: 1px solid var(--gray-200);
    padding: 6px 14px; border-radius: 999px;
    font-size: 12px; font-weight: 600; color: var(--navy-900);
  }
  .brand-chip .badge { font-size: 9px; color: var(--amber-500); margin-right: 6px; }

  .product-mini-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  }
  .product-mini {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-md); overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    text-decoration: none; color: inherit;
  }
  .product-mini:hover {
    transform: translateY(-3px); box-shadow: var(--shadow-md);
    border-color: var(--navy-700);
  }
  .product-mini .img {
    aspect-ratio: 1/1; background: var(--gray-100);
    display: flex; align-items: center; justify-content: center;
    color: var(--navy-700); font-size: 12px; font-weight: 600;
    position: relative;
  }
  .product-mini .img svg { width: 48px; height: 48px; opacity: 0.4; }
  .product-mini .brand-tag {
    position: absolute; top: 8px; left: 8px;
    background: rgba(11,29,54,0.85); color: var(--white);
    font-size: 10px; font-weight: 700; padding: 3px 8px;
    border-radius: 4px; backdrop-filter: blur(4px);
    text-transform: uppercase; letter-spacing: 0.6px;
  }
  .product-mini .info { padding: 14px 16px; }
  .product-mini .name {
    font-size: 13px; font-weight: 600; color: var(--navy-900);
    line-height: 1.4; margin: 0; min-height: 36px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .see-all-link {
    text-align: right; margin-top: 20px;
    font-size: 14px; font-weight: 600; color: var(--navy-900);
  }
  .see-all-link a { color: inherit; }

  @media (max-width: 1024px) {
    .cat-hero-inner { grid-template-columns: 1fr; }
    .cat-hero-visual { display: none; }
    .product-mini-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 720px) {
    .product-mini-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-hero { padding: 56px 0 40px; }
    .subcat-section { padding: 56px 0; }
    .sub-nav { top: 68px; }
  }


  /* ============ Product mini photo + skeleton (Phase 2A.6) ============ */
  .product-mini .img img {
    width: 100%; height: 100%; object-fit: contain;
    padding: 14px; background: var(--white);
  }
  .product-mini .img img + svg { display: none; }
  /* Skeleton shimmer for loading state */
  .skeleton {
    background: linear-gradient(90deg, #eef0f3 0%, #f6f7f9 50%, #eef0f3 100%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
  }
  @keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

  /* ============ Product Lightbox ============ */
  .product-lightbox {
    position: fixed; inset: 0;
    display: none; align-items: center; justify-content: center;
    z-index: 1000;
  }
  .product-lightbox.open { display: flex; }
  .product-lightbox .lb-backdrop {
    position: absolute; inset: 0;
    background: rgba(11, 29, 54, 0.85);
    backdrop-filter: blur(4px);
    animation: lb-fade-in .2s ease;
  }
  .product-lightbox .lb-content {
    position: relative; z-index: 1;
    background: var(--white); border-radius: 16px;
    max-width: 720px; width: 92vw;
    max-height: 92vh; overflow: auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    animation: lb-scale-in .25s cubic-bezier(.2,.9,.3,1.2);
  }
  .product-lightbox .lb-close {
    position: absolute; top: 12px; right: 12px;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--white); border: 1px solid var(--gray-200);
    font-size: 24px; line-height: 1; color: var(--navy-900);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 2;
  }
  .product-lightbox .lb-close:hover { background: var(--gray-100); }
  .product-lightbox .lb-image-wrap {
    background: var(--gray-50);
    display: flex; align-items: center; justify-content: center;
    padding: 30px; min-height: 320px;
  }
  .product-lightbox .lb-image {
    max-width: 100%; max-height: 360px;
    object-fit: contain;
  }
  .product-lightbox .lb-info {
    padding: 40px 32px;
    display: flex; flex-direction: column;
  }
  .product-lightbox .lb-name {
    font-size: 22px; font-weight: 800; color: var(--navy-900);
    margin: 0 0 12px;
    line-height: 1.2;
  }
  .product-lightbox .lb-hint {
    font-size: 14px; color: var(--gray-500);
    margin: 0 0 24px;
  }
  .product-lightbox .lb-actions {
    display: flex; flex-direction: column; gap: 10px;
    margin-top: auto;
  }
  .product-lightbox .lb-actions .btn { justify-content: center; }
  @keyframes lb-fade-in { from { opacity: 0; } to { opacity: 1; } }
  @keyframes lb-scale-in {
    from { opacity: 0; transform: scale(.92); }
    to   { opacity: 1; transform: scale(1); }
  }
  @media (max-width: 720px) {
    .product-lightbox .lb-content {
      grid-template-columns: 1fr;
      max-height: 92vh;
    }
    .product-lightbox .lb-image-wrap { padding: 20px; min-height: 200px; }
    .product-lightbox .lb-image-wrap { padding: 20px; min-height: 200px; }
    .product-lightbox .lb-info { padding: 24px; }
    .product-lightbox .lb-image { max-height: 220px; }
  }

  /* ============ Contact Form ============ */
  .contact-form-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  }
  .contact-form-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
    align-items: start;
  }
  .contact-form-intro h2 {
    font-size: 36px; font-weight: 800; color: var(--navy-900);
    margin: 12px 0 14px; letter-spacing: -1px;
    line-height: 1.15;
  }
  .contact-form-intro p {
    font-size: 16px; color: var(--gray-700); max-width: 480px;
    margin: 0 0 32px;
  }
  .contact-form-perks { display: flex; flex-direction: column; gap: 12px; }
  .cfp-row { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--gray-700); }
  .cfp-row svg { width: 18px; height: 18px; color: var(--amber-500); flex-shrink: 0; }

  .contact-form {
    background: var(--white);
    padding: 36px;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
  }
  .form-field { display: flex; flex-direction: column; margin-bottom: 18px; }
  .form-field label {
    font-size: 13px; font-weight: 600; color: var(--navy-900);
    margin-bottom: 6px;
  }
  .form-field .opt { color: var(--gray-500); font-weight: 400; }
  .form-field input, .form-field textarea {
    width: 100%; padding: 12px 14px;
    border: 1.5px solid var(--gray-300); border-radius: 10px;
    font-family: inherit; font-size: 15px;
    color: var(--navy-900); background: var(--white);
    transition: border-color .15s, box-shadow .15s;
  }
  .form-field input:focus, .form-field textarea:focus {
    outline: none; border-color: var(--amber-500);
    box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
  }
  .form-field textarea { resize: vertical; min-height: 100px; }
  .form-field input::placeholder, .form-field textarea::placeholder {
    color: var(--gray-500); font-size: 14px;
  }
  .contact-form-submit {
    width: 100%; justify-content: center; padding: 14px 22px;
    margin-top: 6px;
  }
  .contact-form-note {
    font-size: 12px; color: var(--gray-500);
    margin: 14px 0 0; text-align: center;
  }
  @media (max-width: 860px) {
    .contact-form-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-form-intro h2 { font-size: 28px; }
    .contact-form { padding: 24px; }
    .contact-form-section { padding: 50px 0 70px; }
  }


  /* ===== Catalog Viewer Modal ===== */
  .cat-modal {
    position: fixed; inset: 0; z-index: 999;
    opacity: 0; pointer-events: none;
    transition: opacity 0.22s ease;
  }
  .cat-modal.open { opacity: 1; pointer-events: auto; }
  .cat-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(11, 29, 54, 0.78);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  }
  .cat-modal-content {
    position: absolute; inset: 24px;
    max-width: 1100px; margin: 0 auto;
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex; flex-direction: column;
    overflow: hidden;
  }
  .cat-modal-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 24px; border-bottom: 1px solid var(--gray-200);
    flex-shrink: 0;
  }
  .cat-modal-title {
    margin: 0; font-size: 18px; font-weight: 700; color: var(--navy-900);
  }
  .cat-modal-sub {
    margin: 2px 0 0; font-size: 13px; color: var(--gray-500);
  }
  .cat-modal-actions { display: flex; gap: 12px; align-items: center; }
  .cat-dl-btn {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600;
    color: var(--navy-900);
    background: var(--amber-50);
    border: 1px solid var(--amber-400);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
  }
  .cat-dl-btn:hover { background: var(--amber-400); }
  .cat-dl-btn:active { transform: scale(0.97); }
  .cat-close {
    background: var(--gray-100); border: none;
    width: 38px; height: 38px; border-radius: 50%;
    font-size: 24px; line-height: 1; color: var(--gray-700);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
  }
  .cat-close:hover { background: var(--gray-200); }
  .cat-viewer-row {
    flex: 1; display: flex; align-items: center; gap: 12px;
    padding: 20px; background: var(--gray-50);
    min-height: 0;
  }
  .cat-arrow {
    flex-shrink: 0;
    width: 46px; height: 46px;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: 50%; cursor: pointer;
    font-size: 28px; line-height: 1; color: var(--navy-900);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: background 0.15s, transform 0.1s;
  }
  .cat-arrow:hover { background: var(--amber-50); }
  .cat-arrow:active { transform: scale(0.94); }
  .cat-viewer {
    flex: 1; height: 100%;
    display: flex; align-items: center; justify-content: center;
    position: relative; min-height: 0;
  }
  .cat-page-img {
    max-width: 100%; max-height: 100%;
    object-fit: contain;
    box-shadow: var(--shadow-md);
    border-radius: 4px;
    background: var(--white);
    opacity: 0; transition: opacity 0.18s ease;
    user-select: none; -webkit-user-drag: none;
  }
  .cat-spinner {
    position: absolute;
    width: 36px; height: 36px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--amber-500);
    border-radius: 50%;
    animation: cat-spin 0.8s linear infinite;
    display: none;
  }
  @keyframes cat-spin { to { transform: rotate(360deg); } }
  .cat-thumbs {
    display: flex; gap: 6px;
    padding: 12px 20px;
    overflow-x: auto; overflow-y: hidden;
    background: var(--white); border-top: 1px solid var(--gray-200);
    scrollbar-width: thin;
    flex-shrink: 0;
  }
  .cat-thumbs::-webkit-scrollbar { height: 8px; }
  .cat-thumbs::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
  .cat-thumb {
    flex-shrink: 0;
    width: 56px; height: 80px;
    background: var(--gray-100); border: 2px solid transparent;
    border-radius: 4px; cursor: pointer;
    padding: 0; overflow: hidden;
    position: relative;
    transition: border-color 0.15s, transform 0.1s;
  }
  .cat-thumb:hover { border-color: var(--gray-300); }
  .cat-thumb.active { border-color: var(--amber-500); transform: scale(1.05); }
  .cat-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .cat-thumb-num {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(11, 29, 54, 0.7); color: var(--white);
    font-size: 10px; font-weight: 600;
    text-align: center; padding: 1px 0;
  }
  @media (max-width: 720px) {
    .cat-modal-content { inset: 0; border-radius: 0; }
    .cat-modal-head { padding: 12px 14px; }
    .cat-modal-title { font-size: 15px; }
    .cat-dl-btn span { display: none; }
    .cat-dl-btn { padding: 8px 10px; }
    .cat-viewer-row { padding: 10px; gap: 6px; }
    .cat-arrow { width: 36px; height: 36px; font-size: 22px; }
    .cat-thumbs { padding: 8px 10px; }
    .cat-thumb { width: 42px; height: 60px; }
  }


  /* ===== Catalog Showcase Section (Ver más) ===== */
  .catalog-showcase {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
    color: var(--white);
  }
  .catalog-showcase-head {
    text-align: center; max-width: 620px; margin: 0 auto 48px;
  }
  .catalog-showcase-head .kicker {
    display: inline-block;
    background: rgba(212, 160, 23, 0.15);
    color: var(--amber-400);
    padding: 6px 16px; border-radius: 999px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .catalog-showcase-head h2 {
    color: var(--white); font-size: 36px; line-height: 1.15;
    margin: 0 0 14px; font-weight: 700;
  }
  .catalog-showcase-head p {
    color: rgba(255, 255, 255, 0.65); font-size: 16px;
    margin: 0;
  }
  .catalog-showcase-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px; max-width: 980px; margin: 0 auto;
  }
  .catalog-showcase-card {
    background: var(--white); color: var(--navy-900);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
  }
  .catalog-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
  }
  .catalog-showcase-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: var(--amber-500);
  }
  .catalog-showcase-logo {
    height: 80px; display: flex; align-items: center;
    justify-content: flex-start;
    margin-bottom: 18px;
  }
  .catalog-showcase-logo img {
    max-height: 100%; max-width: 180px; object-fit: contain;
  }
  .catalog-showcase-body h3 {
    font-size: 22px; margin: 0 0 10px;
    color: var(--navy-900); font-weight: 700;
  }
  .catalog-showcase-body p {
    color: var(--gray-700); font-size: 15px;
    line-height: 1.55; margin: 0 0 22px;
  }
  .catalog-showcase-btn {
    align-self: flex-start;
    padding: 12px 22px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
  }
  @media (max-width: 760px) {
    .catalog-showcase { padding: 56px 0; }
    .catalog-showcase-head h2 { font-size: 27px; }
    .catalog-showcase-grid { grid-template-columns: 1fr; gap: 18px; }
    .catalog-showcase-card { padding: 24px 22px; }
    .catalog-showcase-body h3 { font-size: 19px; }
  }


  /* ===== WhatsApp button (green) ===== */
  .btn.btn-whatsapp {
    background: var(--green-500); color: var(--white);
    border-color: var(--green-500);
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn.btn-whatsapp:hover {
    background: #1ebe57; border-color: #1ebe57;
    color: var(--white);
  }
  .btn.btn-whatsapp svg { flex-shrink: 0; }

  /* ===== Subcat CTA footer (below product grid) ===== */
  .subcat-cta-footer {
    display: flex; flex-wrap: wrap; gap: 12px;
    justify-content: center;
    margin: 32px 0 0;
    padding: 24px 0 0;
    border-top: 1px solid var(--gray-200);
  }
  .subcat-cta-btn {
    min-width: 200px;
    justify-content: center;
    font-weight: 600;
    padding: 12px 28px;
  }
  @media (max-width: 600px) {
    .subcat-cta-footer { gap: 10px; }
    .subcat-cta-btn { min-width: 0; flex: 1; padding: 12px 16px; }
  }


  /* ===== WhatsApp button: force green background ===== */
  .btn.btn-whatsapp,
  a.btn.btn-whatsapp {
    background: #25D366 !important;
    color: var(--white) !important;
    border: 1px solid #25D366 !important;
  }
  .btn.btn-whatsapp:hover,
  a.btn.btn-whatsapp:hover {
    background: #1ebe57 !important;
    border-color: #1ebe57 !important;
    color: var(--white) !important;
  }
  .btn.btn-whatsapp svg { flex-shrink: 0; }

  /* ===== Brand-colored "Ver Más" buttons ===== */
  /* Each brand uses its own palette so the button feels native to the catalog cover */
  .subcat-cta-btn.brand-jadever {
    background: #14401f; color: #e8a72b; border: 1px solid #14401f;
  }
  .subcat-cta-btn.brand-jadever:hover { background: #1c5a2b; border-color: #1c5a2b; color: #f4c25a; }

  .subcat-cta-btn.brand-dck {
    background: #d92027; color: #ffffff; border: 1px solid #d92027;
  }
  .subcat-cta-btn.brand-dck:hover { background: #b81b21; border-color: #b81b21; color: #fff; }

  .subcat-cta-btn.brand-macroled {
    background: #1cb6e0; color: #082238; border: 1px solid #1cb6e0;
  }
  .subcat-cta-btn.brand-macroled:hover { background: #1798bd; border-color: #1798bd; color: #fff; }

  .subcat-cta-btn.brand-king {
    background: #1f7a5c; color: #ffffff; border: 1px solid #1f7a5c;
  }
  .subcat-cta-btn.brand-king:hover { background: #14604a; border-color: #14604a; color: #fff; }

  .subcat-cta-btn.brand-chint {
    background: #003366; color: #ffffff; border: 1px solid #003366;
  }
  .subcat-cta-btn.brand-chint:hover { background: #00264a; border-color: #00264a; color: #fff; }

  .subcat-cta-btn.brand-weidmuller {
    background: #ffb800; color: #1a1a1a; border: 1px solid #ffb800;
  }
  .subcat-cta-btn.brand-weidmuller:hover { background: #e6a600; border-color: #e6a600; color: #1a1a1a; }

  .subcat-cta-btn.brand-inteck {
    background: #f7a823; color: #1a1a1a; border: 1px solid #f7a823;
  }
  .subcat-cta-btn.brand-inteck:hover { background: #d99319; border-color: #d99319; color: #fff; }

  .subcat-cta-btn.brand-powerswitch-fuentes,
  .subcat-cta-btn.brand-powerswitch-pilas {
    background: #c83232; color: #ffffff; border: 1px solid #c83232;
  }
  .subcat-cta-btn.brand-powerswitch-fuentes:hover,
  .subcat-cta-btn.brand-powerswitch-pilas:hover { background: #a82929; border-color: #a82929; color: #fff; }

  .subcat-cta-btn.brand-uniview {
    background: #009a44; color: #ffffff; border: 1px solid #009a44;
  }
  .subcat-cta-btn.brand-uniview:hover { background: #007a36; border-color: #007a36; color: #fff; }

  .subcat-cta-btn.brand-ronin {
    background: #1a1a1a; color: #ffffff; border: 1px solid #1a1a1a;
  }
  .subcat-cta-btn.brand-ronin:hover { background: #333; border-color: #333; color: #fff; }

  .subcat-cta-btn.brand-aceros {
    background: #1d6fb8; color: #ffffff; border: 1px solid #1d6fb8;
  }
  .subcat-cta-btn.brand-aceros:hover { background: #155890; border-color: #155890; color: #fff; }


  /* ===== Category cards — signature color per category ===== */
  .cat-iluminacion .cat-icon { background: #fef3c7; color: #d97706; }
  .cat-iluminacion:hover .cat-icon { background: #fde68a; }
  .cat-iluminacion h3 { color: #92400e; }

  .cat-electrico .cat-icon { background: #dbeafe; color: #1d4ed8; }
  .cat-electrico:hover .cat-icon { background: #bfdbfe; }
  .cat-electrico h3 { color: #1e3a8a; }

  .cat-herramientas .cat-icon { background: #ffedd5; color: #c2410c; }
  .cat-herramientas:hover .cat-icon { background: #fed7aa; }
  .cat-herramientas h3 { color: #9a3412; }

  .cat-video .cat-icon { background: #cffafe; color: #0e7490; }
  .cat-video:hover .cat-icon { background: #a5f3fc; }
  .cat-video h3 { color: #155e75; }

  .cat-motores .cat-icon { background: #fee2e2; color: #b91c1c; }
  .cat-motores:hover .cat-icon { background: #fecaca; }
  .cat-motores h3 { color: #7f1d1d; }

  .cat-construccion .cat-icon { background: #e7e5e4; color: #57534e; }
  .cat-construccion:hover .cat-icon { background: #d6d3d1; }
  .cat-construccion h3 { color: #44403c; }

  /* Make icon background more prominent and consistent in size */
  .cat-card .cat-icon {
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .cat-card:hover .cat-icon {
    transform: scale(1.05);
  }


  /* ===== Products carousel (random from manifest) ===== */
  .products-carousel { margin: 28px 0 8px; }
  .pc-heading {
    display: flex; align-items: center; justify-content: space-between;
    margin: 0 0 14px;
  }
  .pc-heading-text { font-size: 14px; color: var(--gray-500); font-weight: 500; }
  .pc-strip-wrap { position: relative; }
  .pc-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 2;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--white); border: 1px solid var(--gray-200);
    color: var(--navy-900); font-size: 22px; cursor: pointer;
    box-shadow: var(--shadow-sm);
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
  }
  .pc-arrow:hover { background: var(--amber-50); border-color: var(--amber-400); }
  .pc-arrow-prev { left: -8px; }
  .pc-arrow-next { right: -8px; }
  .pc-strip {
    display: flex; gap: 12px;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 6px 4px 14px;
    scrollbar-width: thin;
  }
  .pc-strip::-webkit-scrollbar { height: 6px; }
  .pc-strip::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
  .pc-card {
    flex: 0 0 200px; scroll-snap-align: start;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    overflow: hidden;
  }
  .pc-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--amber-400);
  }
  .pc-img {
    width: 100%; height: 160px;
    background: #f8f9fb;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .pc-img img {
    max-width: 90%; max-height: 90%;
    object-fit: contain;
  }
  .pc-info { padding: 10px 12px 12px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
  .pc-name {
    font-size: 12px; font-weight: 500; color: var(--navy-900);
    line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 47px;
  }
  .pc-meta {
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid var(--gray-100);
    padding-top: 8px;
  }
  .pc-price { font-size: 14px; font-weight: 700; color: var(--navy-900); }
  .pc-sku { font-size: 10px; color: var(--gray-500); }
  @media (max-width: 600px) {
    .pc-card { flex: 0 0 160px; }
    .pc-img { height: 130px; }
    .pc-arrow { display: none; }
  }


  .pc-meta-nopr { justify-content: flex-end; }



/* ===== Brand Carousel — 2 rows wordmark tiles ===== */
.bc-wrap { padding: 8px 0; }
.bc-row { position: relative; overflow: hidden; padding: 8px 0; }
.bc-row::before, .bc-row::after { content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.bc-row::before { left: 0; background: linear-gradient(to right, var(--white, #fff), transparent); }
.bc-row::after  { right: 0; background: linear-gradient(to left,  var(--white, #fff), transparent); }
.bc-track { display: flex; gap: 16px; width: max-content; will-change: transform; }
.bc-track-fwd { animation: bc-scroll-fwd 45s linear infinite; }
.bc-track-rev { animation: bc-scroll-rev 45s linear infinite; }
.bc-track-fwd:hover, .bc-track-rev:hover { animation-play-state: paused; }
@keyframes bc-scroll-fwd { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes bc-scroll-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.bc-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 92px;
  border-radius: 12px;
  flex-shrink: 0;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.08);
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  transition: transform 0.25s, box-shadow 0.25s, outline-offset 0.2s;
  padding: 0;
  background: #fff;
  outline: 2px solid transparent;
  outline-offset: 0;
}
.bc-tile:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
  outline-color: var(--bc-color, transparent);
  outline-offset: 3px;
}
.bc-tile .wm-text { display: inline-flex; align-items: center; justify-content: center; line-height: 1; }

.bc-wm-macroled { background: #00B8D4; color: #fff; --bc-color: #00B8D4; }
.bc-wm-macroled .wm-text { font-size: 24px; font-weight: 800; letter-spacing: 1px; }

.bc-wm-dck { background: #E30613; color: #fff; --bc-color: #E30613; }
.bc-wm-dck .wm-text { font-size: 32px; font-weight: 900; letter-spacing: 2px; }

.bc-wm-chint { background: #1B6FB5; color: #fff; --bc-color: #1B6FB5; }
.bc-wm-chint .wm-text { font-size: 26px; font-weight: 800; letter-spacing: 1px; }

.bc-wm-jadever { background: #4A6B3A; color: #FFC107; --bc-color: #4A6B3A; }
.bc-wm-jadever .wm-text { font-size: 26px; font-weight: 700; font-style: italic; }

.bc-wm-uniview { background: #fff; color: #1976D2; --bc-color: #1976D2; }
.bc-wm-uniview .wm-text { font-size: 26px; font-weight: 600; }

.bc-wm-weidmuller { background: #fff; color: #C8102E; --bc-color: #C8102E; }
.bc-wm-weidmuller .wm-text { font-size: 22px; font-weight: 800; }

.bc-wm-powerswitch { background: #fff; --bc-color: #D32F2F; }
.bc-wm-powerswitch .wm-text { font-size: 18px; font-weight: 900; letter-spacing: 0.5px; gap: 2px; }
.bc-wm-powerswitch .pw-power { color: #D32F2F; }
.bc-wm-powerswitch .pw-switch { color: #4a4a4a; }

.bc-wm-ronin { background: #fff; color: #1a1a1a; --bc-color: #1a1a1a; }
.bc-wm-ronin .wm-text { font-size: 28px; font-weight: 900; letter-spacing: 2px; }

.bc-wm-hb { background: #0b1d36; color: #fff; --bc-color: #d4a017; }
.bc-wm-hb .wm-text { flex-direction: column; gap: 3px; }
.bc-wm-hb .hb-mono { font-size: 30px; font-weight: 900; color: #fff; line-height: 1; }
.bc-wm-hb .hb-sub { font-size: 9px; font-weight: 600; color: #d4a017; letter-spacing: 2px; line-height: 1; }

.bc-wm-king { background: #fff; color: #1B5E20; --bc-color: #1B5E20; }
.bc-wm-king .wm-text { font-size: 30px; font-weight: 900; letter-spacing: 1px; }
.bc-wm-king sup { font-size: 13px; vertical-align: super; line-height: 0; }

.bc-wm-inteck { background: #fff; color: #1a1a1a; --bc-color: #2D7A2D; }
.bc-wm-inteck .wm-text { font-size: 24px; font-weight: 800; }
.bc-wm-inteck .it-i { color: #2D7A2D; }

/* ===== Brand Modal ===== */
.bc-modal { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; }
.bc-modal.open { display: flex; }
.bc-modal-backdrop { position: absolute; inset: 0; background: rgba(11,29,54,0.65); backdrop-filter: blur(3px); cursor: pointer; }
.bc-modal-content { position: relative; width: min(94vw, 520px); background: #fff; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.25); overflow: hidden; animation: bc-modal-in 0.25s ease; }
@keyframes bc-modal-in { from { opacity: 0; transform: translateY(20px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.bc-modal-close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border: 0; background: rgba(0,0,0,0.05); border-radius: 50%; cursor: pointer; font-size: 22px; line-height: 1; color: #6b7280; z-index: 2; padding: 0; display: flex; align-items: center; justify-content: center; }
.bc-modal-close:hover { background: rgba(0,0,0,0.1); color: #111; }
.bc-modal-head { display: flex; align-items: center; gap: 16px; padding: 24px; border-bottom: 3px solid #e5e7eb; }
.bc-modal-logo { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bc-modal-title { font-size: 20px; font-weight: 700; color: #0b1d36; margin: 0 0 4px; }
.bc-modal-sub { font-size: 13px; color: #6b7280; margin: 0; }
.bc-modal-body { padding: 20px 24px; }
.bc-modal-desc { font-size: 14px; color: #374151; line-height: 1.6; margin: 0 0 16px; }
.bc-modal-features { display: flex; flex-wrap: wrap; gap: 6px; }
.bc-modal-feat { font-size: 11px; background: #f3f4f6; color: #4b5563; padding: 5px 12px; border-radius: 999px; font-weight: 500; }
.bc-modal-actions { display: flex; gap: 10px; padding: 16px 24px 20px; border-top: 1px solid #f0f0f0; background: #fafafa; }
.bc-btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 16px; border-radius: 8px; font-weight: 600; font-size: 13px; text-decoration: none; cursor: pointer; transition: opacity 0.2s, transform 0.1s; border: 1.5px solid; }
.bc-btn:hover { opacity: 0.92; }
.bc-btn:active { transform: scale(0.98); }
.bc-btn-secondary { background: #fff; border-color: #d1d5db; color: #374151; }
.bc-btn-secondary:hover { border-color: #9ca3af; }
.bc-btn-primary { color: #fff; border-color: transparent; }

/* ===== Mobile carrusel + modal ===== */
@media (max-width: 640px) {
  .bc-tile { width: 150px; height: 78px; }
  .bc-wm-dck .wm-text { font-size: 26px; }
  .bc-wm-king .wm-text { font-size: 24px; }
  .bc-wm-ronin .wm-text { font-size: 22px; }
  .bc-wm-chint .wm-text, .bc-wm-jadever .wm-text, .bc-wm-uniview .wm-text { font-size: 22px; }
  .bc-wm-macroled .wm-text, .bc-wm-weidmuller .wm-text, .bc-wm-inteck .wm-text { font-size: 20px; }
  .bc-wm-hb .hb-mono { font-size: 24px; }
  .bc-wm-hb .hb-sub { font-size: 8px; }
  .bc-wm-powerswitch .wm-text { font-size: 15px; }
  .bc-track-fwd, .bc-track-rev { animation-duration: 35s; }
  .bc-row::before, .bc-row::after { width: 40px; }
  .bc-modal-head { flex-direction: column; text-align: center; gap: 10px; padding: 20px; }
  .bc-modal-actions { flex-direction: column; }
}

/* ===== Hero Floating Category Cards (XYZ + drag) ===== */
.hc-zone {
  position: relative;
  height: 380px;
  width: 100%;
}
.hc-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  width: 170px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
  cursor: grab;
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s;
  border: 2px solid transparent;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}
.hc-card .hc-title { margin: 0 0 4px; font-size: 14px; font-weight: 600; color: #0b1d36; }
.hc-card .hc-brands { margin: 0; font-size: 11px; color: #6b7280; line-height: 1.4; }
.hc-icon { display: flex; width: 32px; height: 32px; border-radius: 9px; align-items: center; justify-content: center; margin-bottom: 8px; }
.hc-card.hc-floating:hover {
  animation-play-state: paused;
  border-color: #d4a017;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.hc-card.hc-dragging {
  animation: none;
  cursor: grabbing;
  z-index: 999;
  box-shadow: 0 28px 64px rgba(0,0,0,0.55);
  border-color: #d4a017;
  transition: none;
}
.hc-card.hc-returning {
  animation: none;
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes hc-drift {
  0%,100% { transform: translate3d(0, 0, 0) rotate(var(--rot1, -2deg)); }
  33%     { transform: translate3d(var(--x1, -8px), var(--y1, -10px), 0) rotate(var(--rot2, 1deg)) scale(1.02); }
  66%     { transform: translate3d(var(--x2, 6px), var(--y2, 8px), 0) rotate(var(--rot3, -3deg)); }
}
.hc-floating { animation: hc-drift var(--dur, 12s) ease-in-out infinite var(--delay, 0s); }

.hc-pos-c1 { top: 14px;  left: 8%;   --dur: 11s; --delay: 0s;  --rot1: -2deg; --rot2: 1deg;  --rot3: -3deg; --x1: -10px; --y1: -14px; --x2: 8px;   --y2: 10px; }
.hc-pos-c2 { top: 0;     left: 38%;  --dur: 13s; --delay: -2s; --rot1: 2deg;  --rot2: -1deg; --rot3: 3deg;  --x1: -14px; --y1: 12px;  --x2: 10px;  --y2: -8px; }
.hc-pos-c3 { top: 8px;   right: 4%;  --dur: 12s; --delay: -1s; --rot1: 1deg;  --rot2: 3deg;  --rot3: -2deg; --x1: 12px;  --y1: -10px; --x2: -6px;  --y2: 8px;  }
.hc-pos-c4 { top: 200px; left: 12%;  --dur: 14s; --delay: -4s; --rot1: -1deg; --rot2: 2deg;  --rot3: -3deg; --x1: -10px; --y1: 14px;  --x2: 12px;  --y2: -10px;}
.hc-pos-c5 { top: 210px; left: 42%;  --dur: 15s; --delay: -6s; --rot1: 2deg;  --rot2: -2deg; --rot3: 1deg;  --x1: -12px; --y1: -14px; --x2: 10px;  --y2: 8px;  }
.hc-pos-c6 { top: 200px; right: 2%;  --dur: 13s; --delay: -3s; --rot1: -2deg; --rot2: 1deg;  --rot3: 3deg;  --x1: 10px;  --y1: 12px;  --x2: -8px;  --y2: -8px; }

@media (max-width: 900px) {
  .hc-zone { height: auto; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; padding: 16px 0; }
  .hc-card { position: relative; top: auto !important; left: auto !important; right: auto !important; animation: none !important; width: 45%; max-width: 200px; }
  .hc-pos-c1, .hc-pos-c2, .hc-pos-c3, .hc-pos-c4, .hc-pos-c5, .hc-pos-c6 { transform: none; }
}

/* ===== Macroled MAYÚSCULAS card (iluminacion) ===== */
.brand-card.brand-card-macroled {
  background: #00B8D4;
  border-color: #00B8D4;
}
.brand-card.brand-card-macroled .badge {
  background: #fff;
  color: #006B7D;
}
.brand-card.brand-card-macroled .logo-wrap { display: flex; align-items: center; justify-content: center; }
.brand-card.brand-card-macroled .logo-text-macroled {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #fff;
  letter-spacing: 1.5px;
  text-align: center;
}
.brand-card.brand-card-macroled .desc { color: rgba(255,255,255,0.92); }
.brand-card.brand-card-macroled .link { color: #fff; }

/* Hero visual container needs explicit sizing when populated by JS */
.hero-visual:has(#hero-cards-target) {
  min-width: 100%;
  min-height: 420px;
  width: 100%;
  height: 420px;
}
.hero-visual #hero-cards-target {
  position: absolute;
  inset: 0;
}

/* === Mobile menu fix: ensure header + menu sit above hero cards === */
.header { z-index: 1100 !important; }
.mobile-menu { z-index: 1099 !important; }
.hc-card { z-index: 1; }
.hc-card.hc-dragging { z-index: 998; }
.hero-visual { z-index: 0; }

/* On mobile, drop touch-action interception so taps can pass through to nav */
@media (max-width: 900px) {
  .hc-card {
    touch-action: auto;
    cursor: pointer;
  }
  .hero-visual {
    pointer-events: auto;
  }
}

/* ===== Desktop: hide mobile-only nav, hide mobile cart icon ===== */
.mobile-cat-nav { display: none; }
.nav-cart-mobile { display: none; }

/* ===== Mobile-only block: cart icon in header, mobile-cat-nav section ===== */
@media (max-width: 900px) {
  /* Hide desktop "Tienda Online" button on mobile + show cart icon */
  .nav-store-desktop { display: none !important; }
  .nav-cart-mobile {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--navy-900);
    color: #fff;
    text-decoration: none;
    position: relative;
    margin-right: 2px;
  }
  .nav-cart-mobile svg { display: block; }
  .nav-cart-arrow {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #d4a017;
    color: #0b1d36;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  /* COMPLETELY hide hero floating cards on mobile (fixes menu bug + cleaner UX) */
  .hero-visual { display: none !important; }

  /* Mobile-only category nav section */
  .mobile-cat-nav {
    display: block;
    padding: 24px 0 8px;
    background: var(--gray-50);
  }

  /* En mobile ocultamos la sección "categories" porque se duplica con mobile-cat-nav */
  .categories { display: none !important; }
  .mcn-block {
    display: block;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .mcn-block:active { transform: scale(0.99); }
  .mcn-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
  }
  .mcn-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-900);
  }
  .mcn-arrow {
    font-size: 22px;
    color: var(--gray-500);
    font-weight: 300;
  }
  .mcn-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
  }
  .mcn-tags a {
    font-size: 12px;
    color: var(--gray-600);
    background: var(--gray-100);
    padding: 4px 10px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
  }
  .mcn-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .mcn-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 12px;
    border-radius: 8px;
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.3px;
    border: 1px solid rgba(0,0,0,0.06);
  }
  .mcn-brand sup { font-size: 8px; vertical-align: super; line-height: 0; }

  .mcn-b-macroled { background: #00B8D4; color: #fff; }
  .mcn-b-king { background: #fff; color: #1B5E20; border-color: #1B5E20; }
  .mcn-b-chint { background: #1B6FB5; color: #fff; }
  .mcn-b-weidmuller { background: #fff; color: #C8102E; border-color: #C8102E; }
  .mcn-b-inteck { background: #fff; color: #1a1a1a; border-color: #2D7A2D; }
  .mcn-b-inteck .it-i { color: #2D7A2D; }
  .mcn-b-powerswitch { background: #fff; padding: 0 10px; border-color: #D32F2F; }
  .mcn-b-powerswitch .pw-power { color: #D32F2F; font-weight: 900; }
  .mcn-b-powerswitch .pw-switch { color: #4a4a4a; font-weight: 900; }
  .mcn-b-dck { background: #E30613; color: #fff; }
  .mcn-b-jadever { background: #4A6B3A; color: #FFC107; font-style: italic; }
  .mcn-b-uniview { background: #fff; color: #1976D2; border-color: #1976D2; font-weight: 600; }
  .mcn-b-ronin { background: #fff; color: #1a1a1a; border-color: #1a1a1a; letter-spacing: 1px; }
  .mcn-b-hb { background: #0b1d36; color: #fff; }
  .mcn-b-hb .hb-mono { color: #fff; font-weight: 900; }
}

/* === Mobile: hide hero meta numbers + trust bar === */
@media (max-width: 900px) {
  .hero-meta { display: none !important; }
  .trust { display: none !important; }
}

/* === Brand carousel: switch from CSS animation to native scroll + JS auto-advance === */
/* Override the earlier animation-based track styles */
.bc-row { padding: 8px 0; }
.bc-track {
  display: flex;
  gap: 16px;
  width: 100% !important;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  animation: none !important;
  padding: 4px 0;
}
.bc-track::-webkit-scrollbar { display: none; }
.bc-track:active { cursor: grabbing; }
.bc-tile { scroll-snap-align: none; }

/* === Desktop: cat-card brand tiles === */
.cat-card { display: flex; flex-direction: column; }
.cat-card .cat-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100, #f3f4f6);
}
.cat-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 7px;
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.3px;
  border: 1px solid rgba(0,0,0,0.06);
  line-height: 1;
}
.cat-brand sup { font-size: 7px; vertical-align: super; line-height: 0; }
.cat-b-macroled { background: #00B8D4; color: #fff; }
.cat-b-king { background: #fff; color: #1B5E20; border-color: #1B5E20; }
.cat-b-chint { background: #1B6FB5; color: #fff; }
.cat-b-weidmuller { background: #fff; color: #C8102E; border-color: #C8102E; }
.cat-b-inteck { background: #fff; color: #1a1a1a; border-color: #2D7A2D; }
.cat-b-inteck .it-i { color: #2D7A2D; }
.cat-b-powerswitch { background: #fff; padding: 0 8px; border-color: #D32F2F; }
.cat-b-powerswitch .pw-power { color: #D32F2F; font-weight: 900; }
.cat-b-powerswitch .pw-switch { color: #4a4a4a; font-weight: 900; }
.cat-b-dck { background: #E30613; color: #fff; }
.cat-b-jadever { background: #4A6B3A; color: #FFC107; font-style: italic; }
.cat-b-uniview { background: #fff; color: #1976D2; border-color: #1976D2; font-weight: 600; }
.cat-b-ronin { background: #fff; color: #1a1a1a; border-color: #1a1a1a; letter-spacing: 1px; }
.cat-b-hb { background: #0b1d36; color: #fff; }
.cat-b-hb .hb-mono { color: #fff; font-weight: 900; }

/* Hide cat-brands on mobile (the mobile-cat-nav already shows them) */
@media (max-width: 900px) {
  .cat-card .cat-brands { display: none; }
}


/* ===== Hero Brands Block ===== */
.hb-zone {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.hb-header {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
  padding-left: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hb-header::after {
  content: ""; flex: 1; border-top: 1px solid rgba(255,255,255,0.12);
}
.hb-row { display: grid; gap: 10px; }
.hb-row-main { grid-template-columns: repeat(3, 1fr); }
.hb-row-main-2 { grid-template-columns: repeat(2, 1fr); }
.hb-row-sec { grid-template-columns: repeat(3, 1fr); gap: 8px; }

.hb-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  padding: 0 12px;
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  text-align: center;
}
.hb-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.35);
}
.hb-main { height: 78px; }
.hb-sec  { height: 48px; }

/* Wordmark sizing inside hb-cards (overrides bc-tile defaults so cards look hero-sized) */
.hb-card.bc-wm-macroled .wm-text { font-size: 22px; font-weight: 800; letter-spacing: 1px; }
.hb-card.bc-wm-dck .wm-text      { font-size: 28px; font-weight: 900; letter-spacing: 2px; }
.hb-card.bc-wm-jadever .wm-text  { font-size: 22px; font-weight: 700; font-style: italic; }
.hb-card.bc-wm-chint .wm-text    { font-size: 22px; font-weight: 800; letter-spacing: 1px; }
.hb-card.bc-wm-uniview .wm-text  { font-size: 22px; font-weight: 600; }

.hb-card.hb-sec .wm-text { font-size: 14px !important; font-weight: 800; letter-spacing: 0.3px; }
.hb-card.hb-sec.bc-wm-king .wm-text { font-size: 16px !important; font-weight: 900; }
.hb-card.hb-sec.bc-wm-king sup { font-size: 8px; }
.hb-card.hb-sec.bc-wm-ronin .wm-text { font-size: 15px !important; letter-spacing: 1px; font-weight: 900; }
.hb-card.hb-sec.bc-wm-hb .wm-text { flex-direction: column; gap: 1px; }
.hb-card.hb-sec.bc-wm-hb .hb-mono { font-size: 18px !important; font-weight: 900; color: #fff; line-height: 1; }
.hb-card.hb-sec.bc-wm-hb .hb-sub { font-size: 7px !important; color: #d4a017; letter-spacing: 1.5px; line-height: 1; }
.hb-card.hb-sec.bc-wm-powerswitch .wm-text { font-size: 11px !important; gap: 2px; }
.hb-card.hb-sec.bc-wm-inteck .wm-text { font-size: 14px !important; }

/* WhatsApp button in modal */
.bc-btn-wa {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
}
.bc-btn-wa:hover { background: #1ebe5a; border-color: #1ebe5a; }

/* Modal actions: allow 3 buttons */
.bc-modal-actions {
  flex-wrap: wrap;
}
.bc-modal-actions .bc-btn { min-width: 100px; }

/* Mobile: stack the brand block as a single column of compact cards */
@media (max-width: 900px) {
  .hb-zone { gap: 6px; }
  .hb-row-main, .hb-row-main-2, .hb-row-sec { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .hb-main { height: 60px; }
  .hb-sec  { height: 44px; }
  .hb-card.bc-wm-macroled .wm-text { font-size: 16px; }
  .hb-card.bc-wm-dck .wm-text { font-size: 22px; }
  .hb-card.bc-wm-jadever .wm-text { font-size: 18px; }
  .hb-card.bc-wm-chint .wm-text { font-size: 18px; }
  .hb-card.bc-wm-uniview .wm-text { font-size: 18px; }
}

/* === Hero brand cards: ensure brand colors win over .hb-card default white === */
.hb-card.bc-wm-macroled { background: #00B8D4; color: #fff; }
.hb-card.bc-wm-dck { background: #E30613; color: #fff; }
.hb-card.bc-wm-jadever { background: #4A6B3A; color: #FFC107; }
.hb-card.bc-wm-chint { background: #1B6FB5; color: #fff; }
.hb-card.bc-wm-uniview { background: #fff; color: #1976D2; }
.hb-card.bc-wm-king { background: #fff; color: #1B5E20; }
.hb-card.bc-wm-weidmuller { background: #fff; color: #C8102E; }
.hb-card.bc-wm-inteck { background: #fff; color: #1a1a1a; }
.hb-card.bc-wm-powerswitch { background: #fff; }
.hb-card.bc-wm-ronin { background: #fff; color: #1a1a1a; }
.hb-card.bc-wm-hb { background: #0b1d36; color: #fff; }

/* === Hero brands grid v2: 6 main in 3x2, 5 sec in 3+2 === */
.hb-row-main { grid-template-columns: repeat(3, 1fr) !important; }
.hb-row-main-2 { display: none !important; }
.hb-row-sec { grid-template-columns: repeat(3, 1fr) !important; }
.hb-row-sec-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.hb-row-sec-2 .hb-card:first-child { grid-column: 1 / 2; }
.hb-row-sec-2 .hb-card:last-child  { grid-column: 2 / 3; }
/* Center the 2 cards in their row */
.hb-row-sec-2 { padding: 0 calc((100% / 3 - 2px) / 2); }

/* === Fix modal brand logo: scale wordmarks to fit 110x70 box === */
.bc-modal-logo > .bc-tile {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 6px !important;
  overflow: hidden;
  width: 110px !important;
  height: 70px !important;
}
.bc-modal-logo .wm-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.bc-modal-logo .bc-wm-macroled .wm-text { font-size: 16px !important; letter-spacing: 0.5px !important; }
.bc-modal-logo .bc-wm-dck .wm-text { font-size: 24px !important; letter-spacing: 1.5px !important; }
.bc-modal-logo .bc-wm-chint .wm-text { font-size: 18px !important; }
.bc-modal-logo .bc-wm-jadever .wm-text { font-size: 20px !important; }
.bc-modal-logo .bc-wm-uniview .wm-text { font-size: 20px !important; }
.bc-modal-logo .bc-wm-weidmuller .wm-text { font-size: 14px !important; }
.bc-modal-logo .bc-wm-king .wm-text { font-size: 22px !important; }
.bc-modal-logo .bc-wm-king sup { font-size: 9px !important; }
.bc-modal-logo .bc-wm-inteck .wm-text { font-size: 18px !important; }
.bc-modal-logo .bc-wm-ronin .wm-text { font-size: 18px !important; letter-spacing: 1.5px !important; }
.bc-modal-logo .bc-wm-powerswitch .wm-text { font-size: 11px !important; letter-spacing: 0.3px !important; gap: 1px; }
.bc-modal-logo .bc-wm-hb .wm-text {
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2px;
}
.bc-modal-logo .bc-wm-hb .hb-mono { font-size: 22px !important; color: #fff !important; }
.bc-modal-logo .bc-wm-hb .hb-sub  { font-size: 6px !important; color: #d4a017 !important; letter-spacing: 1.5px !important; }

/* HB hero card: center the HIERROS Y BULONERÍA text underneath HB */
.hb-card.bc-wm-hb .wm-text {
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

/* HB carousel tile: same alignment */
.bc-wm-hb .wm-text {
  align-items: center !important;
  justify-content: center !important;
}
