@media screen and (max-width: 1024px) {
    .navbar {
        padding: 1rem 2rem;
    }
    
    .product-grid {
        padding: 0 2rem 2rem;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .footer {
        padding: 3rem 2rem 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .navbar-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }
    
    .hero {
        min-height: 50vh;
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 0.1em;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin: 2rem 0 1.5rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem 1rem;
        gap: 1rem;
    }
    
    .product-card img {
        height: 220px;
    }
    
    .product-card__info {
        padding: 1rem 0.5rem;
    }
    
    .product-card__name {
        font-size: 0.75rem;
    }
    
    .product-card__price {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.7rem;
    }
    
    .footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
    }
}


@media screen and (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .product-card img {
        height: 300px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
}