/* MEDIA QUERIES - RESPONSIVE DESIGN */

/* Tablets (768px) */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        align-items: stretch;
    }

    .header-search {
        order: 3;
        max-width: 100%;
    }

    .header-actions {
        justify-content: center;
    }

    .header-contact-social {
        align-items: center;
        order: 2;
    }

    .nav-links {
        display: none; /* Se oculta para el menú hamburguesa */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-slider {
        height: 300px;
    }

    .promotions-container {
        flex-direction: column;
    }

    .promotions-sidebar {
        width: 100% !important;
        margin-bottom: 20px;
    }
}

/* Móviles (320px - 480px) */
@media (max-width: 480px) {
    .header-logo .logo-placeholder {
        font-size: 1.5rem;
    }

    .header-actions {
        gap: 10px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}
