/* ===== TABLET ===== */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero__actions {
        justify-content: center;
    }
    .hero__slider {
        height: 300px;
        max-width: 600px;
        margin: 0 auto;
    }
    .categories__grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header__inner {
        height: 65px;
    }
    .features__grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .hero__title {
        font-size: 2.2rem;
    }
    .hero__slider {
        height: 250px;
    }
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .location__map iframe {
        height: 350px;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    .categories__grid,
    .products-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer__bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .hero__title {
        font-size: 1.8rem;
    }
    .hero__slider {
        height: 200px;
    }
    .whatsapp-community__title {
        font-size: 1.8rem;
    }
    .location__map iframe {
        height: 250px;
    }
}