/* Tablet Devices */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .header-right {
        width: 100%;
        flex-direction: column;
    }

    .search-box {
        width: 100%;
    }

    .search-box input {
        width: 100%;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 18px;
    }

    .search-box input {
        font-size: 12px;
        padding: 8px 10px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .categories {
        gap: 10px;
    }

    .category-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .product-footer {
        flex-direction: column;
    }

    .color-select,
    .quantity-input {
        width: 100%;
    }
}
