/* ============================================================
   MenToyPlay — home.css
   Estilos específicos del nuevo home (Fase 1C)
   Paleta: Navy #1E3A5F · Orange #F97316 · Cream #FFF8F0
   Tipografía: Nunito (family-friendly) + Inter
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900;1000&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
    --navy:       #1E3A5F;
    --navy-light: #264D80;
    --navy-dark:  #142840;
    --orange:     #F97316;
    --orange-hot: #EA6B0A;
    --orange-soft:#FFF0E6;
    --cream:      #FFF8F0;
    --white:      #FFFFFF;
    --gray-50:    #F8FAFC;
    --gray-100:   #F1F5F9;
    --gray-200:   #E2E8F0;
    --gray-400:   #94A3B8;
    --gray-600:   #475569;
    --gray-800:   #1E293B;
    --green:      #16A34A;
    --red:        #DC2626;
    --yellow:     #F59E0B;

    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  18px;
    --radius-xl:  28px;
    --shadow-sm:  0 1px 4px rgba(0,0,0,.08);
    --shadow-md:  0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:  0 12px 40px rgba(0,0,0,.14);
    --transition: .25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--gray-800);
    line-height: 1.6;
}

h1, h2, h3, h4, .logo-text, .section-title, .hero-title {
    font-family: 'Nunito', sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Topbar ─────────────────────────────────────────────────── */
.topbar {
    background: var(--navy);
    color: rgba(255,255,255,.85);
    font-size: 12px;
    padding: 8px 0;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.topbar-benefits {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}
.topbar-benefits li {
    display: flex;
    align-items: center;
    gap: 5px;
}
.topbar-benefits i { color: var(--orange); font-size: 11px; }
.topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.topbar-actions a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 20px;
    transition: var(--transition);
}
.topbar-actions a:hover { background: rgba(255,255,255,.12); color: #fff; }
.topbar-actions a.wa-link { color: #4ADE80; }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
    background: var(--white);
    border-bottom: 2px solid var(--gray-100);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--orange), #F59E0B);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(249,115,22,.35);
}
.logo-text {
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}
.logo-text span { color: var(--orange); }
.logo-sub {
    font-size: 9px;
    color: var(--gray-400);
    letter-spacing: .5px;
    text-transform: uppercase;
    display: block;
}

/* Buscador */
.header-search {
    flex: 1;
    max-width: 480px;
    position: relative;
}
.header-search-input {
    width: 100%;
    padding: 10px 48px 10px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: var(--transition);
    outline: none;
}
.header-search-input:focus {
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.header-search-input::placeholder { color: var(--gray-400); }
.header-search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px; height: 34px;
    background: var(--orange);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}
.header-search-btn:hover { background: var(--orange-hot); transform: translateY(-50%) scale(1.05); }
.search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    max-height: 360px;
    overflow-y: auto;
    z-index: 200;
    display: none;
}
.search-dropdown.show { display: block; }
.search-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}
.search-item:hover { background: var(--gray-50); }
.search-item img {
    width: 44px; height: 44px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
}
.search-item-name { font-size: 13px; font-weight: 600; color: var(--gray-800); }
.search-item-price { font-size: 12px; color: var(--orange); font-weight: 700; }
.search-item-cat { font-size: 11px; color: var(--gray-400); }
.search-empty {
    padding: 20px;
    text-align: center;
    color: var(--gray-400);
    font-size: 13px;
}

/* Nav */
.main-nav ul {
    display: flex;
    gap: 4px;
    list-style: none;
}
.main-nav a {
    text-decoration: none;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
    background: var(--orange-soft);
    color: var(--orange);
}
.main-nav a.nav-ofertas {
    background: linear-gradient(135deg, var(--orange), #F59E0B);
    color: #fff;
    border-radius: 20px;
    padding: 7px 14px;
}
.main-nav a.nav-ofertas:hover { opacity: .9; background: linear-gradient(135deg, var(--orange), #F59E0B); color: #fff; }

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.h-btn {
    width: 40px; height: 40px;
    border: none;
    border-radius: var(--radius-md);
    background: var(--gray-100);
    color: var(--gray-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
}
.h-btn:hover { background: var(--orange-soft); color: var(--orange); }
.h-btn.wa { background: #DCFCE7; color: #16A34A; }
.h-btn.wa:hover { background: #16A34A; color: #fff; }
.cart-badge {
    position: absolute;
    top: -4px; right: -4px;
    background: var(--orange);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    display: none;
}
.cart-badge.show { display: flex; }
.cart-badge.bump { animation: bump .3s ease; }
@keyframes bump { 0%,100%{transform:scale(1)} 50%{transform:scale(1.4)} }

.menu-toggle {
    display: none;
    width: 40px; height: 40px;
    border: none;
    border-radius: var(--radius-md);
    background: var(--gray-100);
    color: var(--gray-600);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* ── Hero Carousel ──────────────────────────────────────────── */
.hero-section {
    position: relative;
    overflow: hidden;
    background: var(--navy-dark);
}
.hero-carousel {
    position: relative;
}
.hero-slides {
    display: flex;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.hero-slide {
    min-width: 100%;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
}
.hero-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(20,40,64,.85) 0%,
        rgba(20,40,64,.65) 50%,
        rgba(20,40,64,.25) 100%);
}
.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    padding: 60px 0;
}
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(249,115,22,.2);
    border: 1px solid rgba(249,115,22,.4);
    color: #FDB97D;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.hero-title {
    font-size: clamp(28px, 5vw, 54px);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}
.hero-title .highlight {
    color: var(--orange);
    position: relative;
}
.hero-subtitle {
    font-size: clamp(14px, 1.8vw, 18px);
    color: rgba(255,255,255,.8);
    margin-bottom: 28px;
    line-height: 1.6;
}
.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Hero Controls */
.hero-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    padding: 0;
}
.hero-dot.active {
    background: var(--orange);
    width: 24px;
    border-radius: 4px;
}
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px; height: 40px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}
.hero-arrow:hover { background: var(--orange); border-color: var(--orange); }
.hero-arrow.prev { left: 16px; }
.hero-arrow.next { right: 16px; }

/* ── Botones globales ───────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 15px rgba(249,115,22,.4);
}
.btn-primary:hover { background: var(--orange-hot); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249,115,22,.5); }
.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37,211,102,.3);
}
.btn-wa:hover { background: #1DB954; transform: translateY(-1px); }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }

/* ── Sección categorías ─────────────────────────────────────── */
.categories-section {
    background: var(--white);
    padding: 36px 0;
    border-bottom: 1px solid var(--gray-100);
}
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 4px;
}
.section-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
}
.ver-mas-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--orange);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}
.ver-mas-link:hover { gap: 8px; }

.cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.cat-card {
    text-decoration: none;
    text-align: center;
    padding: 18px 12px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-100);
    background: var(--white);
    transition: var(--transition);
    cursor: pointer;
}
.cat-card:hover {
    border-color: var(--orange);
    background: var(--orange-soft);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.cat-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-soft), #FDE8D0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 10px;
    color: var(--orange);
    transition: var(--transition);
}
.cat-card:hover .cat-icon {
    background: linear-gradient(135deg, var(--orange), #F59E0B);
    color: #fff;
}
.cat-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: var(--navy);
    line-height: 1.3;
}
.cat-count {
    font-size: 11px;
    color: var(--gray-400);
    margin-top: 2px;
}

/* ── Secciones de productos ─────────────────────────────────── */
.products-section {
    padding: 56px 0;
}
.products-section:nth-child(even) { background: var(--white); }

/* Ofertas section: fondo especial */
.ofertas-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 56px 0;
}
.ofertas-section .section-label { color: #FDB97D; }
.ofertas-section .section-title { color: #fff; }
.ofertas-section .ver-mas-link { color: #FDB97D; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

/* ── Product Card ───────────────────────────────────────────── */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}
.product-card-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--gray-50);
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30,58,95,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(2px);
}
.product-card:hover .product-overlay { opacity: 1; }
.quick-add-btn {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.quick-add-btn:hover { background: var(--orange-hot); transform: scale(1.04); }

/* Badges en imagen */
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}
.badge-oferta {
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    padding: 3px 8px;
    border-radius: 20px;
    letter-spacing: .3px;
}
.badge-nuevo {
    background: var(--green);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    padding: 3px 8px;
    border-radius: 20px;
}
.badge-mat {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    font-family: 'Nunito', sans-serif;
}
.badge-mat.madera  { background: #FEF3C7; color: #92400E; }
.badge-mat.eps     { background: #DBEAFE; color: #1E40AF; }
.badge-mat.metal   { background: #F1F5F9; color: #475569; }

.wish-btn {
    position: absolute;
    top: 10px; right: 10px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 14px;
    transition: var(--transition);
    z-index: 2;
}
.wish-btn:hover, .wish-btn.active { color: var(--red); background: #fff; }

/* Card body */
.product-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-cat-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
}
.product-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 8px;
}
.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}
.product-meta-tag {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--gray-400);
}
.product-meta-tag i { font-size: 10px; }
.stock-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    display: inline-block;
}
.stock-dot.ok { background: var(--green); }
.stock-dot.low { background: var(--yellow); }
.stock-dot.out { background: var(--red); }
.dif-badge {
    padding: 2px 7px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}
.dif-badge.principiante { background: #DCFCE7; color: #15803D; }
.dif-badge.medio { background: #FEF9C3; color: #92400E; }
.dif-badge.avanzado { background: #FEE2E2; color: #B91C1C; }

/* Precio + acciones */
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-top: 1px solid var(--gray-100);
    gap: 8px;
}
.product-price-block { line-height: 1.1; }
.product-price-old {
    font-size: 12px;
    color: var(--gray-400);
    text-decoration: line-through;
}
.product-price-val {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--navy);
}
.product-price-val.oferta { color: var(--red); }
.product-price-val small { font-size: 12px; font-weight: 600; }
.product-actions {
    display: flex;
    gap: 6px;
}
.btn-cart {
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    background: var(--navy);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}
.btn-cart:hover { background: var(--navy-light); transform: scale(1.05); }
.btn-wa-product {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 12px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: #25D366;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    transition: var(--transition);
}
.btn-wa-product:hover { background: #1DB954; transform: scale(1.02); }

/* Loading skeleton */
.skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.skeleton-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
}
.skeleton-img {
    aspect-ratio: 1;
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
.skeleton-body { padding: 14px; }
.skeleton-line {
    height: 10px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    margin-bottom: 8px;
}
.skeleton-line.w70 { width: 70%; }
.skeleton-line.w50 { width: 50%; }
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 48px 20px;
    color: var(--gray-400);
}
.empty-state i { font-size: 48px; margin-bottom: 12px; opacity: .5; }
.empty-state h3 { color: var(--gray-600); font-size: 18px; margin-bottom: 6px; }

/* ── Combos section ─────────────────────────────────────────── */
.combos-section {
    background: linear-gradient(135deg, #FFF0E6 0%, var(--cream) 100%);
    padding: 56px 0;
}
.combos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.combo-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--orange-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.combo-card:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.combo-badge {
    background: linear-gradient(135deg, var(--orange), #F59E0B);
    color: #fff;
    text-align: center;
    padding: 6px;
    font-family: 'Nunito', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.combo-img {
    aspect-ratio: 16/9;
    background: var(--gray-100);
    overflow: hidden;
    position: relative;
}
.combo-img img { width: 100%; height: 100%; object-fit: cover; }
.combo-img-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--orange);
}
.combo-body { padding: 16px; flex: 1; }
.combo-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 6px;
}
.combo-desc { font-size: 13px; color: var(--gray-600); margin-bottom: 10px; }
.combo-items-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
}
.combo-item-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-600);
}
.combo-item-row::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}
.combo-footer {
    padding: 12px 16px;
    border-top: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.combo-price {
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--orange);
}
.combo-price small { font-size: 13px; }
.combo-old-price {
    font-size: 12px;
    color: var(--gray-400);
    text-decoration: line-through;
}

/* ── Benefits ───────────────────────────────────────────────── */
.benefits-section {
    background: var(--navy);
    padding: 52px 0;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.benefit-card {
    text-align: center;
    color: rgba(255,255,255,.9);
}
.benefit-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(249,115,22,.15);
    border: 2px solid rgba(249,115,22,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--orange);
    margin: 0 auto 14px;
    transition: var(--transition);
}
.benefit-card:hover .benefit-icon {
    background: var(--orange);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}
.benefit-title {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}
.benefit-desc { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.5; }

/* ── CTA WhatsApp ───────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--orange), #F59E0B);
    padding: 52px 0;
    text-align: center;
}
.cta-section h2 {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}
.cta-section p { color: rgba(255,255,255,.9); font-size: 16px; margin-bottom: 28px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,.75);
    padding: 52px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}
.footer-brand-logo .logo-icon {
    width: 36px; height: 36px;
    font-size: 16px;
}
.footer-brand-logo span { color: var(--orange); }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.footer-social {
    display: flex;
    gap: 8px;
}
.footer-social a {
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer-col h4 {
    font-family: 'Nunito', sans-serif;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
    color: rgba(255,255,255,.65);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}
.footer-col a:hover { color: var(--orange); padding-left: 4px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,.45);
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom i { color: var(--orange); }

/* ── Carrito Sidebar ────────────────────────────────────────── */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(3px);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-sidebar {
    position: fixed;
    right: -420px;
    top: 0; bottom: 0;
    width: 100%;
    max-width: 400px;
    background: var(--white);
    z-index: 301;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    transition: right .35s cubic-bezier(.4,0,.2,1);
}
.cart-sidebar.open { right: 0; }
.cart-hd {
    padding: 18px 20px;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-hd-title {
    font-family: 'Nunito', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
}
.cart-hd-title i { color: var(--orange); }
.cart-hd-count {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}
.cart-close {
    width: 34px; height: 34px;
    border-radius: var(--radius-sm);
    border: none;
    background: var(--gray-100);
    color: var(--gray-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}
.cart-close:hover { background: #FEE2E2; color: var(--red); }
.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 12px;
    color: var(--gray-400);
    text-align: center;
}
.cart-empty i { font-size: 52px; opacity: .4; }
.cart-empty strong { color: var(--gray-600); font-size: 16px; }
.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}
.cart-item img {
    width: 60px; height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
}
.cart-item-info { flex: 1; }
.cart-item-cat { font-size: 10px; color: var(--orange); font-weight: 700; text-transform: uppercase; }
.cart-item-name { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 13px; color: var(--navy); margin-bottom: 6px; }
.cart-item-foot {
    display: flex;
    align-items: center;
    gap: 8px;
}
.qty-controls {
    display: flex;
    align-items: center;
    gap: 4px;
}
.qty-btn {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.qty-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.qty-val { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14px; min-width: 20px; text-align: center; }
.cart-item-price { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14px; color: var(--navy); margin-left: auto; }
.cart-item-remove { background: none; border: none; color: var(--gray-400); cursor: pointer; padding: 4px; font-size: 13px; transition: var(--transition); }
.cart-item-remove:hover { color: var(--red); }
.cart-ft {
    padding: 16px 20px;
    border-top: 2px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cart-ft-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--gray-600);
}
.cart-ft-row.total {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 17px;
    color: var(--navy);
    border-top: 1px solid var(--gray-200);
    padding-top: 8px;
    margin-top: 4px;
}
.cart-wa-note {
    font-size: 11px;
    color: var(--gray-400);
    text-align: center;
}
.btn-full { width: 100%; justify-content: center; }
.cart-clear-btn {
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 12px;
    cursor: pointer;
    text-align: center;
    text-decoration: underline;
    padding: 0;
    transition: var(--transition);
}
.cart-clear-btn:hover { color: var(--red); }

/* ── Toast ──────────────────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(24px);
    background: var(--navy);
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 500;
    opacity: 0;
    transition: all .3s ease;
    box-shadow: var(--shadow-lg);
    pointer-events: none;
    white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--green); }
.toast.error { background: var(--red); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .topbar-benefits { display: none; }
    .header-inner { flex-wrap: wrap; }
    .header-search { order: 3; max-width: 100%; flex: 0 0 100%; }
    .main-nav {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,.7);
        z-index: 200;
        align-items: flex-start;
        padding-top: 60px;
    }
    .main-nav.open { display: flex; }
    .main-nav ul {
        flex-direction: column;
        background: var(--white);
        width: 260px;
        height: 100%;
        padding: 20px;
        gap: 4px;
    }
    .main-nav a { padding: 12px 16px; }
    .menu-toggle { display: flex; }
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-slide { min-height: 360px; }
    .hero-slide-content { padding: 40px 0; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 480px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: 1fr; }
    .combos-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .cta-btns { flex-direction: column; align-items: center; }
}
