/* assets/css/responsive.css */

/* Tablette (max-width: 1024px) */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 0.75rem;
    }
    
    .product-title {
        font-size: 0.85rem;
    }
    
    .product-price {
        font-size: 1rem;
    }
    
    .btn-details {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
    
    .header-container {
        padding: 0.75rem 1rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-img {
        max-height: 40px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-btn {
        padding: 0.5rem 0.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-title {
        justify-content: center;
    }
    
    .footer-info {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .pagination {
        gap: 0.3rem;
    }
    
    .page-link {
        min-width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
}

/* Très petit mobile (max-width: 480px) */
@media (max-width: 480px) {
    .products-grid {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .product-info {
        padding: 0.5rem;
    }
    
    .product-title {
        font-size: 0.75rem;
    }
    
    .product-price {
        font-size: 0.9rem;
    }
    
    .btn-details {
        font-size: 0.65rem;
        padding: 0.3rem 0.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
    }
    
    .page-link {
        min-width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
}