/* Tablet Responsive (max-width: 900px) */
@media (max-width: 900px) {
    body {
        margin-top: 100px;
    }

    .header-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-bar {
        margin: 15px 0;
        width: 100%;
        margin-left: 0;
    }

    .icons {
        margin-right: 20px;
        gap: 30px;
    }

    .navbar {
        margin-left: 0;
    }

    .navbar ul {
        gap: 15px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .parent-product img {
        height: 350px;
    }

    .banner img {
        height: 400px;
    }

    .footer-sections {
        flex-wrap: wrap;
    }

    .footer-section {
        flex: 1 0 40%;
        margin-bottom: 20px;
    }

    .content {
        max-width: 100%;
    }

    .image {
        margin-left: 0;
        max-height: 250px;
    }
}

/* Mobile Responsive (max-width: 640px) */
@media (max-width: 640px) {
    body {
        margin-top: 80px;
    }

    .logo {
        width: 80px;
        margin-left: 10px;
    }

    .search-bar {
        margin: 10px 0;
    }

    .icons {
        gap: 20px;
        font-size: 20px;
        margin-right: 15px;
    }

    .menu-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar ul.show {
        display: flex;
    }

    .navbar ul li {
        margin: 10px 0;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .parent-product img {
        height: 250px;
    }

    .banner img {
        height: 300px;
    }

    .container {
        flex-direction: column;
    }

    .filters {
        width: 100%;
        margin-bottom: 20px;
    }

    .collection {
        width: 100%;
        margin-left: 0;
    }

    .product-card {
        width: 100%;
    }

    .footer-section {
        flex: 1 0 100%;
    }

    .image {
        max-height: 200px;
    }

    .review-card {
        width: 200px;
        height: 250px;
    }

    .arrivals-card {
        width: 180px;
        height: 250px;
    }

    .arrivals-card img {
        width: 120px;
        height: 120px;
    }

    /* Hide arrows on mobile */
    .arrows {
        display: none;
    }
}