/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Navbar */
    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding-bottom: 10px;
    }
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .navbar {
        padding: 10px 0;
    }
    .hero {
        padding-top: 150px; /* Make room for taller navbar */
    }

    /* Hero */
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Features & Store */
    .section-header h2, .store-header h1 {
        font-size: 2rem;
    }
    .features {
        padding: 60px 0;
    }
    .store-header {
        padding: 180px 0 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-brand {
        max-width: 100%;
        margin: 0 auto;
    }
    .footer-links {
        width: 100%;
    }

    /* Swiper */
    .review-slide {
        width: 280px;
    }

    /* Modal */
    .modal-content {
        padding: 20px;
        width: 95%;
    }
    .checkout-details .price {
        font-size: 1.2rem;
    }
}
