@media (max-width:575px){
    .navbar .main-menu{
        display: none;
    }
    /* footer navigation css start */
    body section.footer-nav{
        display: block !important; 
    }
    .footer-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        padding: 0rem 0;
        box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        display: block !important;
    }

    .footer-nav .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .footer-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #1a1a1a;
        text-decoration: none;
        padding: 0.5rem;
        transition: all 0.3s ease;
        flex: 1;
    }

    .footer-nav .nav-item:hover {
        color: #0d6efd;
        transform: translateY(-3px);
    }

    .footer-nav .nav-icon {
        font-size: 1.5rem;
        margin-bottom: 0rem;
    }

    .footer-nav .nav-text {
        font-size: 0.85rem;
        font-weight: 500;
    }

    .footer-nav .logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #fff;
        padding: 0.5rem;
        flex: 1;
    }

    .footer-nav .logo-icon {
        font-size: 2rem;
        margin-bottom: 0.3rem;
        color: #1a1a1a;
    }

    .footer-nav .logo-text {
        font-size: 0.85rem;
        font-weight: 500;
    }

    .footer-nav .cart-count {
        position: absolute;
        top: -5px;
        right: 15px;
        background-color: #ff5252;
        color: white;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 0.7rem;
        font-weight: bold;
    }

    .footer-nav .cart-container {
        position: relative;
    }

    .footer-nav .active {
        font-weight: bolder;
        position: relative;
    }

    .footer-nav .active::after {
        display: none;
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 5px;
        height: 5px;
        background-color: #0d6efd;
        border-radius: 50%;
    }

    @media (max-width: 768px) {

        .footer-nav .nav-text,
        .footer-nav .logo-text {
            font-size: 0.75rem;
        }

        .footer-nav .nav-icon {
            font-size: 1.3rem;
        }

        .footer-nav .logo-icon {
            font-size: 1.7rem;
        }
    }

    @media (max-width: 480px) {
        .footer-nav .nav-container {
            padding: 0 0.5rem;
        }

        .footer-nav .nav-text,
        .footer-nav .logo-text {
            font-size: 0.7rem;
        }

        .footer-nav .nav-icon {
            font-size: 1.2rem;
        }

        .footer-nav .logo-icon {
            font-size: 2rem;
        }
    }

    /* footer navigation css end */
}
@media (min-width:475px) and (max-width:575px){

}
@media (min-width:576px) and (max-width:767px){

}
@media (min-width:768px) and (max-width:991px){

}
@media (min-width:992px) and (max-width:1199px){
    
}
@media (min-width:1200px) and (max-width:1300px){
    
}