/* ═══════════════════════════════════════════════════════════════════════════
   hotweek.css — Semana del 12 al 16 de mayo de 2026
   Rollback: quitar <link> de index.html
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Banners ─────────────────────────────────────────────────────────────── */
.hw-banner {
    width: auto;
    max-width: 1400px;
    margin: 0px auto;
    overflow: hidden;
    /* display: block; */
    /* line-height: 0; */
    text-align: center;
    align-content: center;
}

.hw-banner img {
    max-width: 65%;
    height: auto;
    display: block;
    object-fit: cover;
    margin: 0px auto;
}

.hw-banner--missing {
    display: none !important;
}

/* ─── Wrapper HOT WEEK ────────────────────────────────────────────────────── */
#hotweek {
    scroll-margin-top: 127px;
}

#packs,
#cajas {
    scroll-margin-top: 127px;
}

.hw-wrapper {
    width: 95%;
    background: white;
    border: 2px solid #c35527;
    border-bottom: 2px solid #c35527;
    padding-bottom: 24px;
    margin: 0px auto;
    border-radius: 12px;
}

.hw-wrapper-header {
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 28px 20px 8px; */
    margin-top: -15px;
}

.hw-fire-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #c54132;
    color: #fff;
    /* font-family: var(--font-heading, 'Playfair Display', serif); */
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 40px;
    box-shadow: 0 4px 20px rgba(195, 85, 39, 0.45);
}

.hw-fire-badge i {
    font-size: 1.2rem;
    animation: hw-pulse 1.4s ease-in-out infinite;
}

@keyframes hw-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }
}

/* ─── Section tag HotWeek ─────────────────────────────────────────────────── */
.section-tag.hw-tag {
    background: #c35527;
    color: #fff;
}

/* ─── Precios en Super-Ofertas (Góndola) ─────────────────────────────────── */
.hw-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0 6px;
    flex-wrap: wrap;
}

.hw-price-old {
    font-size: 0.78rem;
    color: var(--text-muted, #888);
    text-decoration: line-through;
}

.hw-price-new {
    font-size: 1rem;
    font-weight: 700;
    color: #849260;
}

/* ─── Sección Cajas ───────────────────────────────────────────────────────── */
.cajas-section {
    background: transparent;
}

/* ─── Subnav: estilo link HotWeek ────────────────────────────────────────── */
.subnav-link[href="#hotweek"] {
    color: #c35527;
    font-weight: 700;
}

/* ─── Mobile ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .hw-fire-badge {
        font-size: 0.9rem;
        padding: 6px 18px;
    }

    .hw-wrapper {
        border-top-width: 1.5px;
        border-bottom-width: 1.5px;
    }

    .hw-price-new {
        font-size: 0.9rem;
    }

    .hw-banner {
        width: auto;
        max-width: 1400px;
        margin: 20px auto -10px auto;
        overflow: hidden;
        /* display: block; */
        /* line-height: 0; */
        text-align: center;
        align-content: center;
    }
}