/* Mobile Responsiveness */
@media (max-width: 768px) {
    .glass-nav {
        padding: 0 5%;
        height: 70px;
    }

    .nav-links {
        display: none;
        /* Hide nav links on mobile for now */
    }

    .nav-icons {
        margin-left: auto;
    }

    .hero-section {
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
        padding-top: 100px;
        height: auto;
        min-height: 100vh;
        gap: 3rem;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-visual {
        width: 100%;
        height: 300px;
        margin-top: 2rem;
    }

    .hero-visual img {
        width: 100%;
        max-width: 300px;
    }

    .products-section {
        padding: 3rem 5%;
    }

    .categories-selector {
        flex-wrap: wrap;
    }

    .about-section {
        flex-direction: column;
        padding: 3rem 5%;
        text-align: center;
    }

    .about-visual {
        width: 100%;
        height: 300px;
    }

    .section-title {
        text-align: center !important;
        /* Force center on mobile */
    }

    .features-grid {
        grid-template-columns: 1fr;
        justify-items: start;
        /* Align items to start */
    }

    .feature-item {
        margin: 0 auto;
        /* Center items */
    }

    .product-card {
        max-width: 100%;
    }

    .cart-sidebar {
        width: 100%;
        /* Full screen cart on mobile */
        right: -100%;
    }
}