/* ========== Small Devices (≥576px) ========== */
@media (max-width: 576px) {
    html {
        font-size: 10px !important;
    }

    #cartPage {
        .cart-card input[type="checkbox"] {
            margin: 0 !important;
        }
    }

    .cart-card,
    .order-summary {
        padding: 1.5rem !important;
    }

    .qty-box {
        padding: 0 !important;
    }

    /* Add styles for small devices (e.g., larger phones) */
}


/* ========== Medium Devices (≥768px) ========== */
@media (max-width: 768px) {
    .nav-left {
        width: 100%;
    }

    .nav-right {
        width: 100%;
        margin-top: 1rem;
        justify-content: space-between;
    }

    .mobile {
        display: block;
    }

    .section-spacing-top {
        padding: 2rem 0 0 0;
    }

    /* Profile */
    .tabs .text{
        font-size: 1.2rem;
    }
}

/* ========== Medium Devices (≥992px) ========== */
@media (max-width: 991px) {
    .filter-sidebar {
        border: 0;
    }

    .tab {
        display: block;
    }
    
    .auth-container {
        height: calc(100vh);
        border-radius: 0;
    }

    .form-box {
        bottom: 0;
        width: 100%;
        height: 70%;
    }

    .auth-container.active .form-box {
        right: 0;
        bottom: 30%;
    }

    .toggle-box::before {
        left: 0;
        top: -270%;
        width: 100%;
        height: 300%;
        border-radius: 20vw;
    }

    .auth-container.active .toggle-box::before {
        left: 0;
        top: 70%;
    }

    .auth-container.active .toggle-panel.toggle-left {
        left: 0;
        top: -30%;
    }

    .toggle-panel {
        width: 100%;
        height: 30%;
    }

    .toggle-panel.toggle-left {
        top: 0;
    }

    .toggle-panel.toggle-right {
        right: 0;
        bottom: -30%;
    }

    .auth-container.active .toggle-panel.toggle-right {
        bottom: 0;
    }
}


/* ========== Large Devices (≥992px) ========== */
@media (min-width: 992px) {
    /* Add styles for desktops */
}