﻿.magazzino-hero {
    background: url('/img/hero/albafood_fuori.png') center/cover no-repeat;
    background-attachment: fixed;
}

.warehouse-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 26px;
}

.warehouse-grid h3 {
    color: var(--blu-scuro);
    margin-bottom: 6px;
}

.warehouse-grid p {
    color: #47607b;
    font-weight: 600;
}

/* ---- ZONE TEMPERATURA ---- */
.temp-zones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.temp-zone { padding: 28px; }

.temp-badge {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 8px;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.temp-fresh  { background: rgba(0,168,100,0.12); color: #006b3f; }
.temp-frozen { background: rgba(0,100,220,0.12); color: #0050A8; }
.temp-dry    { background: rgba(230,140,0,0.12);  color: #c47200; }

.temp-zone h3 { margin-bottom: 10px; font-size: 1.15rem; }
.temp-zone p  { font-size: 0.92rem; color: #47607b; line-height: 1.6; }

/* ---- CTA ---- */
.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 980px) {
    .warehouse-grid   { grid-template-columns: 1fr; }
    .temp-zones-grid  { grid-template-columns: 1fr; }
    .cta-band         { flex-direction: column; text-align: center; }
}
