/* ════════════════════════════════
   TIENDA — Freeze Foods
   ════════════════════════════════ */

/* ── BARRA TOP ── */
.top-bar-beneficios-glass {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 0;
    overflow: hidden;
}
.top-bar-beneficios-glass .contenedor-fluid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    flex-wrap: wrap;
}
.beneficio-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #184080;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}
.beneficio-item i { width: 14px; height: 14px; color: #ff6b35; }

/* Espacio para el header flotante */
.tienda-main { padding-top: 110px; }

/* ── HERO ── */
.tienda-hero-principal {
    background: #fff;
    padding: 64px 5% 72px;
}
.contenedor-hero {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.hero-info h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 900;
    color: #184080;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}
.texto-naranja { color: #ff6b35; }
.hero-info p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 420px;
}
.hero-botones {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.btn-naranja-solido {
    background: #ff6b35;
    color: white;
    text-decoration: none;
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(255,107,53,0.3);
}
.btn-naranja-solido:hover { background: #e05a28; transform: translateY(-2px); }
.btn-naranja-outline {
    background: transparent;
    color: #184080;
    text-decoration: none;
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid #184080;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}
.btn-naranja-outline:hover { background: #184080; color: white; }
.hero-imagen-box { display: flex; justify-content: center; align-items: center; }
.img-hero-ajustada { width: 100%; max-width: 460px; object-fit: contain; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .contenedor-hero { grid-template-columns: 1fr; text-align: center; }
    .hero-botones { justify-content: center; }
    .hero-imagen-box { order: -1; }
    .top-bar-beneficios-glass .contenedor-fluid { gap: 20px; }
    .beneficio-item:nth-child(n+3) { display: none; }
    .tienda-hero-principal { padding: 40px 16px 32px; }
    .hero-info h1 { font-size: clamp(1.8rem, 6vw, 3rem); }
    .productos-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
    .categoria-titulo { font-size: 1.3rem; }
    .grid-planes { gap: 14px; }
}
@media (max-width: 560px) {
    .tienda-main { padding-top: 0; }
    .top-bar-beneficios-glass { display: none; }
    .tienda-hero-principal { padding: 28px 16px 24px; }
    .hero-info h1 { font-size: 1.7rem; }
    .hero-info p { font-size: 0.88rem; }
    .hero-botones { flex-direction: column; gap: 10px; }
    .hero-botones a { width: 100%; text-align: center; justify-content: center; }
    .productos-grid { grid-template-columns: 1fr !important; gap: 10px; }
    .prod-card { padding: 12px; }
    .prod-nombre { font-size: 0.88rem; }
    .prod-peso { font-size: 0.75rem; }
    .btn-agregar-full { padding: 10px 12px; font-size: 0.82rem; }
    .categoria-bloque { padding: 24px 0 16px; }
    .categoria-header { gap: 10px; }
    .categoria-titulo { font-size: 1.1rem; }
    .categoria-sub { font-size: 0.8rem; }
    .beneficio-item { font-size: 0.82rem; }
}
