:root {
    --navy:      #0D1B2A;
    --navy-mid:  #1B2E42;
    --steel:     #2C4160;
    --ash:       #F2F4F7;
    --ash-dark:  #E4E8EF;
    --rojo: #E8180A;
    --rojo-oscuro: #B80F05;
    --rojo-dark: #B80F05;
    --amarillo: #F5C100;
    --negro: #0F0F0F;
    --gris-oscuro: #1C1C1C;
    --gris-medio: #3A3A3A;
    --gris-claro: #F4F4F2;
    --gris-dark: #1C1C1C;
    --gris-mid: #444;
    --gris-light: #F5F5F3;
    --border: #E8E8E4;
    --blanco: #FFFFFF;
    --texto: #222222;
    --texto-2: #555;
    --verde-wa: #25D366;
    --verde: #1A8A3A;
    --naranja: #E67000;
    --red:#c0392b;
    --red-d:#a93226;
    --red-l:#e74c3c;
    --red-dk:#a93226;
    --red-lite:#fff0ef;
    --green:#25d366;
    --green-mid:   #27a555;
    --green-light: #e8f7ee;
    --green-border:#b2dfca;
    --text:#1a1a1a;
    --muted:#5a6472;
    --border:#e2e8f0;
    --bg:#f5f6f8;
    --white:#fff;
    --radius:12px;
    --radius-s:8px;
    --shadow:0 2px 8px rgba(0,0,0,.09);
    --shadow-m:0 4px 20px rgba(0,0,0,.11);
    --cr-azul:        #1a3a6b;
    --cr-azul-medio:  #1e4da1;
    --cr-amarillo:    #f5a800;
    --cr-amarillo-h:  #e09500;
    --cr-verde:       #1a8a4a;
    --cr-rojo:        #d63030;
    --cr-gris-bg:     #f4f6fa;
    --cr-gris-borde:  #dde3ef;
    --cr-gris-txt:    #6b7280;
    --cr-sombra:      0 2px 12px rgba(26,58,107,.10);
    --cr-sombra-h:    0 6px 24px rgba(26,58,107,.18);
    --cr-radius:      10px;
    --dark:#1a1a1a;--mid:#555;--lite:#f5f5f5;
    --gray-100: #f8f8f8;
    --gray-200: #efefef;
    --gray-400: #aaa;
    --gray-600: #666;
    --gray-800: #222;
    --blue:       #1a5276;
  --blue-dark:  #154360;
  --blue-light: #2e86c1;
  --orange:     #e67e22;
  --orange-dark:#ca6f1e;
  --gray-bg:    #f4f6f7;
  --gray-border:#dde1e4;
  --gray-text:  #5d6d7e;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; text-decoration: none; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--blanco);
    color: var(--texto);
    overflow-x: hidden;
  }

  /* ─── TOP BAR ─── */
  .topbar {
    background: var(--negro);
    color: #aaa;
    font-size: 12px;
    padding: 7px 0;
    text-align: center;
    letter-spacing: 0.3px;
  }
  .topbar strong { color: var(--amarillo); }
  .topbar a { color: #ccc; text-decoration: none; }

  /* ─── HEADER ─── */
  header {
    background: var(--blanco);
    border-bottom: 3px solid var(--rojo);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  }
  .header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    height: 72px;
  }
  .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--negro);
    letter-spacing: 1px;
    text-decoration: none;
    flex-shrink: 0;
  }
  .logo span { color: var(--rojo); }

  .search-bar {
    flex: 1;
    display: flex;
    background: var(--gris-claro);
    border: 2px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    transition: border-color .2s;
  }
  .search-bar:focus-within { border-color: var(--rojo); }
  .search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    outline: none;
    color: var(--texto);
  }
  .search-bar button {
    background: #E5DDD5;
    border: none;
    color: white;
    padding: 0 20px;
    cursor: pointer;
    font-size: 18px;
    transition: background .2s;
  }
  .search-bar button:hover { background: #D3D3D3; }

  .header-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
  }
  .btn-wa-header {
    background: var(--verde-wa);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 9px 16px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    white-space: nowrap;
  }
  .cart-btn {
    position: relative;
    background: var(--gris-oscuro);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 9px 16px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
  }
  .cart-badge {
    background: var(--rojo);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ─── NAV ─── */
  nav {
    background: var(--gris-oscuro);
    position: relative;
  }
  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 0;
    align-items: center;
  }
  .nav-inner a {
    color: #ccc;
    text-decoration: none;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background .15s, color .15s;
    position: relative;
  }
  .nav-inner a:hover { background: var(--gris-medio); color: white; }
  .nav-inner a.oferta {
    color: var(--amarillo);
    background: rgba(245,193,0,0.1);
  }
  .nav-inner a.oferta:hover { background: rgba(245,193,0,0.2); }

  /* ─── HAMBURGER BUTTON ─── */
  @media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }
}
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: transform .25s, opacity .2s, background .2s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: white; }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: white; }

  /* ─── MOBILE DRAWER ─── */
  .nav-drawer {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 200;
    pointer-events: none;
  }
  .nav-drawer.open { pointer-events: all; }
  .nav-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background .3s;
  }
  .nav-drawer.open .nav-drawer-overlay { background: rgba(0,0,0,0.55); }
  .nav-drawer-panel {
    position: absolute;
    top: 0; left: 0;
    width: 82%; max-width: 320px;
    height: 100%;
    background: var(--white);
    transform: translateX(-100%);
    transition: transform .3s cubic-bezier(.25,.46,.45,.94);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  .nav-drawer.open .nav-drawer-panel { transform: translateX(0); }
  .nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
  }
  .nav-drawer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: white;
    text-decoration: none;
  }
  .nav-drawer-logo span { color: var(--rojo); }
  .nav-drawer-close {
    background: none;
    border: none;
    color: #aaa;
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
  }
  .nav-drawer-links { flex: 1; padding: 8px 0; }
  .nav-drawer-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background .15s, color .15s;
  }
  .nav-drawer-links a:hover { background: rgba(255,255,255,0.06); color: #000; }
  .nav-drawer-links a.oferta { color: var(--amarillo); }
  .nav-drawer-links .nav-arrow { margin-left: auto; opacity: 0.35; font-size: 11px; }
  .nav-drawer-footer {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
  }
  .nav-drawer-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--verde-wa);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    padding: 13px 16px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* ─── HERO ─── */
  .hero {
    background: var(--negro);
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(232,24,10,0.18) 0%, transparent 60%),
      repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,0.015) 0px,
        rgba(255,255,255,0.015) 1px,
        transparent 1px,
        transparent 40px
      );
  }
  .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
  }
  .hero-text {}
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rojo);
    color: white;
    padding: 5px 14px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 6vw, 82px);
    line-height: 0.95;
    color: var(--blanco);
    margin-bottom: 20px;
    letter-spacing: 1px;
  }
  .hero-title em {
    color: var(--amarillo);
    font-style: normal;
  }
  .hero-sub {
    color: #bbb;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 460px;
  }
  .hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--rojo);
    color: white;
    border: none;
    border-radius: 3px;
    padding: 15px 30px;
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, transform .1s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .btn-primary:hover { background: var(--rojo-oscuro); transform: translateY(-1px); }
  .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 3px;
    padding: 13px 28px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color .2s, background .2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.06); }

  .hero-trust {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #999;
    font-size: 13px;
  }
  .trust-item .icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
  }

  .hero-promo-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .promo-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 6px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    text-decoration: none;
  }
  .promo-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.2); }
  .promo-card-img {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    object-fit: cover;
    background: var(--white);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
  }
  .promo-card-info { flex: 1; }
  .promo-card-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--amarillo);
    margin-bottom: 4px;
  }
  .promo-card-name {
    color: white;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 6px;
  }
  .promo-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
  }
  .price-final {
    color: var(--rojo);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
  }
  .price-iva {
    color: #888;
    font-size: 11px;
  }
  .promo-card-stock {
    font-size: 11px;
    color: #F59100;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
  }

  /* ─── URGENCY BAR ─── */
  .urgency-bar {
    background: var(--amarillo);
    color: var(--negro);
    text-align: center;
    padding: 12px 24px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  .urgency-bar .countdown {
    background: var(--negro);
    color: var(--amarillo);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 800;
    padding: 2px 12px;
    border-radius: 3px;
    letter-spacing: 2px;
  }

  /* ─── CATEGORÍAS ─── */
  .section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px;
  }
  .section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 28px;
    border-bottom: 3px solid var(--rojo);
    padding-bottom: 12px;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 1px;
    color: var(--negro);
  }
  .section-link {
    color: var(--rojo);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .cats-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
  }
  .cat-card {
    background: var(--gris-claro);
    border-radius: 6px;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .15s;
    text-decoration: none;
    color: var(--texto);
    border: 2px solid transparent;
  }
  .cat-card:hover {
    background: white;
    border-color: var(--rojo);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,24,10,0.12);
  }
  .cat-card .cat-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
  }
  .cat-card .cat-name {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }
  .cat-card .cat-count {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
  }

  /* ─── MÁS VENDIDOS ─── */
  .vendidos-bg { background: var(--gris-claro); }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .product-card {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: box-shadow .2s, transform .15s;
    cursor: pointer;
    text-decoration: none;
    color: var(--texto);
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .product-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-2px);
  }
  .product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 9px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
  }
  .badge-mas-vendido { background: var(--rojo); color: white; }
  .badge-nuevo { background: var(--amarillo); color: var(--negro); }
  .badge-oferta { background: var(--negro); color: var(--amarillo); }
  .badge-stock { background: #FF6B00; color: white; }

  .product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--gris-claro);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ccc;
  }
  .product-img img { width: 100%; height: 100%; object-fit: contain; }

  .product-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .product-cat-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--rojo);
    margin-bottom: 6px;
  }
  .product-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    flex: 1;
    color: var(--negro);
  }
  .product-pricing {
    margin-bottom: 8px;
  }
  .price-neto {
    font-size: 11px;
    color: #000;
    margin-bottom: 2px;
    font-weight: bold;
  }
  .price-con-iva {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--rojo);
    line-height: 1;
  }
  .price-tag {
    font-size: 11px;
    color: #000;
  }
  .product-stock {
    font-size: 12px;
    color: #E67000;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .btn-whatsapp {
    background: var(--verde-wa);
    color: white;
  }
    
  .btn-add {
      text-decoration: none;
    width: 100%;
    background: var(--rojo);
    color: white;
    border: none;
    border-radius: 3px;
    padding: 11px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background .2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-align: center;
  }
  .btn-add:hover { background: var(--rojo); color: var(--negro); }
  .btn-cotizar {
      text-decoration: none;
      text-align: center;
    width: 100%;
    background: var(--verde-wa);
    color: var(--negro);
    border: 2px solid #ddd;
    border-radius: 3px;
    padding: 9px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: border-color .2s, color .2s;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .btn-cotizar:hover { border-color: var(--verde-wa); color: var(--blanco); }

  /* ─── BANNER POR QUÉ ─── */
  .why-section {
    background: var(--negro);
    padding: 60px 24px;
  }
  .why-inner {
    max-width: 1280px;
    margin: 0 auto;
  }
  .why-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: white;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 1px;
  }
  .why-title span { color: var(--amarillo); }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
  .why-card {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    background: rgba(255,255,255,0.03);
    transition: border-color .2s, background .2s;
  }
  .why-card:hover { border-color: var(--rojo); background: rgba(232,24,10,0.05); }
  .why-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
  }
  .why-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .why-card p {
    color: #888;
    font-size: 13px;
    line-height: 1.6;
  }
  .why-card .why-highlight {
    color: var(--amarillo);
    font-weight: 700;
    font-size: 13px;
    display: block;
    margin-top: 10px;
  }

  /* ─── RECIÉN LLEGADOS ─── */
  .new-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .new-card {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #eee;
    display: flex;
    gap: 0;
    text-decoration: none;
    color: var(--texto);
    transition: box-shadow .2s;
  }
  .new-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); }
  .new-card-img {
    width: 130px;
    flex-shrink: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    overflow: hidden;
  }
  .new-card-img img { width: 100%; object-fit: contain; }
  .new-card-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .new-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--rojo);
    background: rgba(232,24,10,0.08);
    padding: 2px 8px;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 8px;
  }
  .new-name {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    flex: 1;
  }
  .new-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--rojo);
  }
  .new-price-sub { font-size: 11px; color: #000; }

  /* ─── NEWSLETTER + CONTACTO ─── */
  .cta-section {
    background: var(--rojo);
    padding: 56px 24px;
  }
  .cta-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .cta-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: white;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: 1px;
  }
  .cta-text p { color: rgba(255,255,255,0.8); font-size: 15px; }
  .cta-form {
    display: flex;
    gap: 10px;
  }
  .cta-form input {
    flex: 1;
    border: none;
    border-radius: 3px;
    padding: 14px 18px;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    outline: none;
  }
  .cta-form button {
    background: var(--negro);
    color: white;
    border: none;
    border-radius: 3px;
    padding: 14px 24px;
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    text-transform: uppercase;
    transition: background .2s;
  }
  .cta-form button:hover { background: #333; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--gris-oscuro);
    color: #aaa;
    padding: 48px 24px 24px;
  }
  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: white;
    margin-bottom: 14px;
    display: block;
  }
  .footer-logo span { color: var(--rojo); }
  .footer-desc { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
  .footer-contacts { display: flex; flex-direction: column; gap: 8px; }
  .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
  }
  .footer-contact-item a { color: #aaa; text-decoration: none; }
  .footer-contact-item a:hover { color: white; }
  .footer-col h4 {
    color: white;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 8px; }
  .footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: color .15s;
  }
  .footer-col ul li a:hover { color: white; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #666;
  }
  .footer-bottom .transbank {
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 6px 14px;
    color: #aaa;
    font-size: 12px;
    font-weight: 600;
  }

  /* ─── WhatsApp FLOTANTE ─── */
  .wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }
  .wa-bubble {
    background: white;
    border-radius: 10px;
    padding: 12px 18px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.2);
    font-size: 13px;
    font-weight: 600;
    color: var(--negro);
    max-width: 220px;
    text-align: right;
    animation: bubblePop .3s ease;
  }
  .wa-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
  }
  @keyframes bubblePop {
    from { opacity: 0; transform: scale(0.8) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
  }
  .wa-btn {
    width: 60px;
    height: 60px;
    background: var(--verde-wa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    cursor: pointer;
    text-decoration: none;
    font-size: 28px;
    transition: transform .2s, box-shadow .2s;
    position: relative;
  }
  .wa-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
  .wa-dot {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 14px;
    height: 14px;
    background: var(--rojo);
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse 1.8s infinite;
  }
  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
  }

  /* ─── ANIMACIONES ─── */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn .5s ease forwards;
  }
  @keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-in:nth-child(1) { animation-delay: 0.05s; }
  .fade-in:nth-child(2) { animation-delay: 0.12s; }
  .fade-in:nth-child(3) { animation-delay: 0.19s; }
  .fade-in:nth-child(4) { animation-delay: 0.26s; }

  /* ─── ANOTACIONES REDISEÑO ─── */
  .annotation {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--amarillo);
    color: var(--negro);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 3px;
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
    display: none;
  }

  .redesign-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245,193,0,0.15);
    border: 1px dashed var(--amarillo);
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--amarillo);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Separador de sección */
  .section-divider {
    height: 4px;
    background: linear-gradient(90deg, var(--rojo) 0%, var(--amarillo) 100%);
  }

  /* ─── MOBILE RESPONSIVE ─── */

  /* Tablet (≤1024px) */
  @media (max-width: 1024px) {
    .cats-grid { grid-template-columns: repeat(4, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 40px 24px; }
    .hero-promo-cards { display: none; }
    .cta-inner { grid-template-columns: 1fr; gap: 28px; }
  }

  /* Mobile (≤768px) */
  @media (max-width: 768px) {
    /* Topbar más compacto */
    .topbar { font-size: 11px; padding: 6px 12px; }

    /* Header: logo + search apilados, acciones compactas */
    .header-inner {
      flex-wrap: wrap;
      height: auto;
      padding: 12px 16px;
      gap: 10px;
    }
    .logo { font-size: 26px; }
    .search-bar { order: 3; width: 100%; flex-basis: 100%; }
    .header-actions { gap: 8px; }
    .btn-wa-header span { display: none; } /* ocultar texto, solo ícono */
    .btn-wa-header { padding: 9px 12px; }
    .cart-btn { padding: 9px 12px; }

    /* Nav: ocultar links, mostrar hamburger */
    .nav-inner a { display: none; }
    .nav-hamburger { display: flex; }
    .nav-drawer { display: block; }

    /* Hero */
    .hero { min-height: auto; }
    .hero-inner { padding: 32px 16px; }
    .hero-title { font-size: clamp(38px, 10vw, 60px); }
    .hero-sub { font-size: 15px; }
    .hero-ctas { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; padding: 14px 20px; }
    .hero-trust { gap: 14px; }

    /* Urgency bar */
    .urgency-bar { flex-direction: column; gap: 8px; font-size: 13px; text-align: center; }

    /* Secciones */
    .section { padding: 36px 16px; }
    .section-title { font-size: 28px; }

    /* Categorías: 3 columnas en mobile */
    .cats-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .cat-card { padding: 14px 6px; }
    .cat-card .cat-icon { font-size: 26px; margin-bottom: 6px; }
    .cat-card .cat-name { font-size: 10px; }
    .cat-card .cat-count { display: none; }

    /* Productos: 1 columna en mobile pequeño, 2 en tablet */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-img { height: 150px; font-size: 36px; }
    .price-con-iva { font-size: 20px; }

    /* Why section */
    .why-section { padding: 40px 16px; }
    .why-title { font-size: 32px; margin-bottom: 24px; }
    .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .why-card { padding: 20px 14px; }
    .why-icon { font-size: 32px; }

    /* Recién llegados: 1 columna */
    .new-products { grid-template-columns: 1fr; }
    .new-card-img { width: 90px; font-size: 28px; }

    /* CTA newsletter */
    .cta-section { padding: 40px 16px; }
    .cta-inner { grid-template-columns: 1fr; gap: 20px; }
    .cta-text h2 { font-size: 36px; }
    .cta-form { flex-direction: column; gap: 8px; }
    .cta-form input, .cta-form button { width: 100%; }

    /* Footer */
    footer { padding: 36px 16px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

    /* WhatsApp flotante */
    .wa-bubble { display: none; } /* ocultar burbuja en mobile, solo botón */
    .wa-float { bottom: 20px; right: 16px; }
    .wa-btn { width: 52px; height: 52px; font-size: 24px; }
  }

  /* Mobile muy pequeño (≤400px) */
  @media (max-width: 400px) {
    .products-grid { grid-template-columns: 1fr; }
    .cats-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 36px; }
  }
  
  
@media (max-width: 768px) {
  .breadcrumb {
    padding: 10px 14px;

    font-size: 11px;
  }
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb a {
  color: var(--rojo);
  text-decoration: none;
}
.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;

  padding: 14px 24px;
  font-size: 12px;
  color: var(--texto-2);
  display: flex;
  align-items: center;
  gap: 6px;

  flex-wrap: wrap;
}
/* Rotar la flecha › cuando el ítem está abierto */
.nav-has-sub.is-open .nav-arrow {
  display: inline-block;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}
.nav-has-sub .nav-arrow {
  transition: transform 0.2s ease;
}

/* Submenú oculto por defecto */
.nav-sub {
  display: none;
  flex-direction: column;
  background: #fff; /* oscurece ligeramente sobre el panel */
  padding: 4px 0;
}
.nav-sub.is-open {
  display: flex;
}

/* Links de subnivel */
.nav-sub a {
  padding-left: 44px !important; /* sangría respecto al ítem padre */
  font-size: 0.88em !important;
  opacity: 0.85;
  font-weight: normal !important;
}
.nav-sub a:hover {
  opacity: 1;
}

/* Enlace "ver todos" con estilo diferenciado */
.nav-sub .nav-sub-ver-todos {
  opacity: 1 !important;
  font-weight: 500;
  font-size: 0.82em !important;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

/* =====================================================
   AGREGAR EN TU ARCHIVO CSS (ej: style.css o footer.css)
   ===================================================== */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 32px;
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Texto de copyright existente — ya está en el footer,
   solo hay que asegurarse que esté dentro de .footer-bottom */
.footer-bottom .footer-copy {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom .footer-copy span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Íconos de redes sociales */
.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Colores específicos por red social en hover */
.footer-social a.fs-facebook:hover  { background: #1877F2; border-color: #1877F2; color: #fff; }
.footer-social a.fs-instagram:hover { background: #E1306C; border-color: #E1306C; color: #fff; }
.footer-social a.fs-whatsapp:hover  { background: #25D366; border-color: #25D366; color: #fff; }
.footer-social a.fs-youtube:hover   { background: #FF0000; border-color: #FF0000; color: #fff; }
.footer-social a.fs-linkedin:hover  { background: #0A66C2; border-color: #0A66C2; color: #fff; }

/* Responsive */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-bottom .footer-copy {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}