@media (min-width: 350px) and (max-width: 480px) {
    .cart-mobile-section{
        padding-bottom: 2rem;
    }

    .mobile-nav {
        width: 100%;
        display: flex;
        height: fit-content;
        padding: 1rem;
        background-color: #FFCB05;
        /* justify-content: space-between; */
        /* align-items: center; */
    }

    .mobile-nav img {
        height: 5rem;
        /* position: absolute; */
       /* background-color: #FFF; */
        /* border-radius: 50px; */
    }

    .mob-search {
        display: flex;
        background-color: #FFFFFF;
        padding: .5rem !important;
        width: 12rem;
        justify-content: space-around;
        border-radius: 10px;
        align-items: center;
        height: fit-content;
    }

    .mob-search input {
        width: 9.5rem;
        border: none !important;
        outline: none !important;
        font-size: .8rem;
    }

    .mob-search span img {
        height: 1rem;
    }

    .search-div {
        width: 90%;
    }

    .search-div h1 {
        font-size: 1rem;
    }

    .mob-navbar {
        bottom: 0;
        padding: .5rem 1rem !important;
        width: 100%;
        position: fixed;
        height: fit-content;
        display: flex;
        background-color:#FFCB05;
        justify-content: space-between;
        z-index: 1;
    }

    .mob-navbar button {
        background: none;
        margin: 0;
        padding: 0;
        border: none;
    }
.heart-count {
    position: absolute;
    top: 0px;
    right: 11px;
    min-width: 14px;
    min-height: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    background: black;
    color: white;
    border-radius: 50%;
}

    .cart-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: .5rem .8rem;
    }

    .cart-head h1{
        font-weight: 900;
        margin-bottom: 0;
        font-size: 2rem;
    }

    .hr {
        margin: .5rem 0;
    }

    .cart-product {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: .5rem .8rem;
        margin: .5rem .5rem 1rem;
    }

    .cart-product img {
        height: 5rem;
    }

    .item {
        width: fit-content;
    }

    .item h4 {
        font-weight: 600;
    }

    .cart-product h4 {
        font-weight: 600;
        font-size: 1.3rem;
    }

    .quantity {
        width: 100%;
        display: flex;
        justify-content: space-between;
        border: #FFCB05 solid thin;

    }

    .item-toggle button{
        border: #FFCB05 solid thin;
        background: none;
    }

    .remove {
        height: 1rem !important;
    }

    .total {
        margin-bottom: 2rem;
        padding: .5rem .8rem;
    }

    .total-data {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: .5rem;
        font-weight: 600;
    }

    .total-data h6 {
        font-size: 1.2rem;
        font-weight: 700;
    }

    .total-data h5 {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .proceed {
        width: 100% !important;
        color:black;
        font-weight: 700;
        margin: .5rem auto;
        background-color: #FFCB05 !important;
        border: none !important;
    }

    .continue {
        width: 100% !important;
        color:white;
        font-weight: 500;
        margin: .5rem auto;
        background-color: #FF396A !important;
        border: none !important;
    }

    .opps {
        display: none;
    }
}

@media (min-width: 490px) {
    .mobile-nav {
        display: none;
    }

    .cart-mobile-section {
        display: none;
    }

    .mob-navbar {
        display: none;
    }

    .opps {
        display: flex;
        height: fit-content;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .opps img{
        height: 12rem;
        width: 12rem;
    }

    .opps h1 {
        font-size: 1.5rem;
        font-weight: 700;
    }
}