@media (min-width: 1510px) {
    .sticky-cart-wrapper {
        width: 28%;
        padding: 0 25px 0 50px;
    }

    .sticky-cart {
        position: sticky;
        top: 120px;
        filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
        background: #fff;
        border-radius: 20px;
        padding: 10px;
        font-weight: 600;
    }

    .ic-cart-sidebar-wrapper_header {
        align-items: center;
        justify-content: center;
        display: flex;
        position: relative;
        margin-bottom: 20px;
        color: #4d4d4d;
        font-size: 25px;
    }

    .ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_header .ic-cart-header-btn-close {
        position: absolute;
        top: 0;
        right: 0;
        background: #F3F5F6;
        border-radius: 8px;
        width: 40px;
        height: 40px;
        border: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .sticky-cart-wrapper .cart_list {
        padding: 0 5px !important;
        overflow-y: auto;
        max-height: 550px;
        position: relative;
    }

    .sticky-cart-wrapper .cart_list::-webkit-scrollbar {
        width: 5px;
        background: #e6e6e6;
        border-radius: 5px;
    }

    .sticky-cart-wrapper .cart_list::-webkit-scrollbar-thumb {
        background: #9a9a9a;
        border-radius: 5px;
    }

    .sticky-cart-wrapper .mini_cart_item {
        position: relative;
        display: flex;
        margin-bottom: 30px !important;
        padding: 0 !important;
    }

    .sticky-cart-wrapper .mini_cart_item img {
        flex-shrink: 0 !important;
        width: 75px !important;
        height: 90px !important;
        object-fit: contain !important;
    }

    /* cart item detail */
    .sticky-cart-wrapper .ic-mini-cart-count-price {
        position: relative;
        flex-grow: 1;
        padding-left: 10px;
    }

    .sticky-cart-wrapper .mini-cart-title {
        font-size: 15px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        /* number of lines to show */
        line-clamp: 2;
        -webkit-box-orient: vertical;
        padding-bottom: 2px;
    }

    .sticky-cart-wrapper .cart-bottom {
        left: 0;
        right: 0;
        position: absolute;
        bottom: 0;
    }

    .sticky-cart-wrapper .woocommerce-Price-amount{
        font-size: 18px;
        color: #9a9a9a;
    }
    
    .sticky-cart-wrapper .cart-quantity{
        font-size: 16px;
        color: #4d4d4d;
    }

    .sticky-cart-wrapper .sticky-cart-quantity-selector {
        margin-top: 5px;
        display: inline-flex;
    }

    .sticky-cart-wrapper .ic-custom-render-total {
        position: absolute;
        right: 0;
        bottom: 0;
        font-size: 20px;
        color: #4d4d4d;
        font-weight: 600;
    }

    .sticky-cart-wrapper .mini_cart_item::after {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        /* Adjust the height as needed */
        background-color: #cccccc;
        position: absolute;
        bottom: -15px;
        left: 0;
    }

    .sticky-cart-wrapper .woocommerce-mini-cart__total {
        display: flex;
        justify-content: space-between;
        padding: 0 30px;
    }

    .sticky-cart-wrapper .woocommerce-mini-cart__total strong {
        color: #636363;
        font-size: 18px;
        font-weight: 500;
    }

    .sticky-cart-wrapper .woocommerce-mini-cart__total .woocommerce-Price-amount {
        font-weight: 600;
        font-size: 24px;
        color: #4d4d4d;
    }

    .sticky-cart-wrapper .woocommerce-mini-cart__buttons{
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .sticky-cart-wrapper .woocommerce-mini-cart__buttons a{
        width: 140px !important;
        font-size: 16px !important;
        border-radius: 20px !important;
        text-align: center;
    }

    .sticky-cart-wrapper .checkout{
        background-color: #ff8c3f !important;
        color: white !important;
    }

    .sticky-cart-wrapper .checkout:hover{
        background: #ff761b !important;
    }

    .ic-cart-header-btn{
        position: fixed;
        right: 0;
        cursor: pointer;
        top: 50%;
        border: none;
        border-radius: 50%;
        background: white;
        filter: drop-shadow(0 5px 4px rgba(0, 0, 0, 0.25));
        width: 100px;
        height: 100px;
        display: none;
    }

    .ic-cart-header-btn svg {
        position: absolute;
        bottom: 30px;
        left: 30px;
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 928px) and (max-width: 1509px) {
    .sticky-cart-wrapper {
        width: 40%;
        padding: 0 0 0 50px;
    }

    .sticky-cart {
        position: sticky;
        top: 70px;
        filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
        background: #fff;
        border-radius: 20px;
        padding: 10px;
        font-weight: 600;
    }

    .ic-cart-sidebar-wrapper_header {
        align-items: center;
        justify-content: center;
        display: flex;
        position: relative;
        margin-bottom: 20px;
        color: #4d4d4d;
        font-size: 20px;
    }

    .ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_header .ic-cart-header-btn-close {
        position: absolute;
        top: 0;
        right: 0;
        background: #F3F5F6;
        border-radius: 8px;
        width: 40px;
        height: 40px;
        border: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .sticky-cart-wrapper .cart_list {
        padding: 0 5px !important;
        overflow-y: auto;
        max-height: 300px;
        position: relative;
    }

    .sticky-cart-wrapper .cart_list::-webkit-scrollbar {
        width: 5px;
        background: #e6e6e6;
        border-radius: 5px;
    }

    .sticky-cart-wrapper .cart_list::-webkit-scrollbar-thumb {
        background: #9a9a9a;
        border-radius: 5px;
    }

    .sticky-cart-wrapper .mini_cart_item {
        position: relative;
        display: flex;
        margin-bottom: 20px !important;
        padding: 0 !important;
    }

    .sticky-cart-wrapper .mini_cart_item img {
        flex-shrink: 0 !important;
        width: 60px !important;
        height: 72px !important;
        object-fit: contain !important;
    }

    /* cart item detail */
    .sticky-cart-wrapper .ic-mini-cart-count-price {
        position: relative;
        flex-grow: 1;
        padding-left: 10px;
    }

    .sticky-cart-wrapper .mini-cart-title {
        font-size: 14px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        /* number of lines to show */
        line-clamp: 2;
        -webkit-box-orient: vertical;
        padding-bottom: 2px;
    }

    .sticky-cart-wrapper .cart-bottom {
        left: 0;
        right: 0;
        position: absolute;
        bottom: 0;
    }

    .sticky-cart-wrapper .woocommerce-Price-amount{
        font-size: 16px;
        color: #9a9a9a;
    }
    
    .sticky-cart-wrapper .cart-quantity{
        font-size: 14px;
        color: #4d4d4d;
    }

    .sticky-cart-wrapper .sticky-cart-quantity-selector {
        margin-top: 5px;
        display: inline-flex;
    }

    .sticky-cart-wrapper .ic-custom-render-total {
        position: absolute;
        right: 0;
        bottom: 0;
        font-size: 18px;
        color: #4d4d4d;
        font-weight: 600;
    }

    .sticky-cart-wrapper .mini_cart_item::after {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        /* Adjust the height as needed */
        background-color: #cccccc;
        position: absolute;
        bottom: -10px;
        left: 0;
    }

    .sticky-cart-wrapper .woocommerce-mini-cart__total {
        display: flex;
        justify-content: space-between;
        padding: 0 30px;
    }

    .woocommerce a.remove {
        position: absolute;
        right: 0;
    }

    .sticky-cart-wrapper .woocommerce-mini-cart__total strong {
        color: #636363;
        font-size: 16px;
        font-weight: 500;
    }

    .sticky-cart-wrapper .woocommerce-mini-cart__total .woocommerce-Price-amount {
        font-weight: 600;
        font-size: 20px;
        color: #4d4d4d;
    }

    .sticky-cart-wrapper .woocommerce-mini-cart__buttons{
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .sticky-cart-wrapper .woocommerce-mini-cart__buttons a{
        width: 120px !important;
        font-size: 14px !important;
        border-radius: 20px !important;
        text-align: center;
    }

    .sticky-cart-wrapper .checkout{
        background-color: #ff8c3f !important;
        color: white !important;
    }

    .sticky-cart-wrapper .checkout:hover{
        background: #ff761b !important;
    }

    .ic-cart-header-btn{
        position: fixed;
        right: 0;
        cursor: pointer;
        top: 50%;
        border: none;
        border-radius: 50%;
        background: white;
        filter: drop-shadow(0 5px 4px rgba(0, 0, 0, 0.25));
        width: 100px;
        height: 100px;
        display: none;
    }

    .ic-cart-header-btn svg {
        position: absolute;
        bottom: 30px;
        left: 30px;
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 520px) and (max-width: 927px) {
    .sticky-cart-wrapper {
        position: fixed;
        bottom: 0;
        right: 0;
        z-index: 2;
    }

    .sticky-cart {
        display: none;
        filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
        background: #fff;
        border-radius: 20px;
        padding: 10px;
        font-weight: 600;
        width: 450px;
    }

    .ic-cart-sidebar-wrapper_header {
        align-items: center;
        justify-content: center;
        display: flex;
        position: relative;
        margin-bottom: 20px;
        color: #4d4d4d;
        font-size: 20px;
    }

    .ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_header .ic-cart-header-btn-close {
        position: absolute;
        top: 0;
        right: 0;
        background: #F3F5F6;
        border-radius: 8px;
        width: 30px;
        height: 30px;
        border: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .sticky-cart-wrapper .cart_list {
        padding: 0 10px 0 0!important;
        overflow-y: auto;
        max-height: 200px;
        position: relative;
    }

    .sticky-cart-wrapper .cart_list::-webkit-scrollbar {
        width: 5px;
        background: #e6e6e6;
        border-radius: 5px;
    }

    .sticky-cart-wrapper .cart_list::-webkit-scrollbar-thumb {
        background: #9a9a9a;
        border-radius: 5px;
    }

    .sticky-cart-wrapper .mini_cart_item {
        position: relative;
        display: flex;
        margin-bottom: 20px !important;
        padding: 0 !important;
    }

    .sticky-cart-wrapper .mini_cart_item img {
        flex-shrink: 0 !important;
        width: 60px !important;
        height: 72px !important;
        object-fit: contain !important;
    }

    /* cart item detail */
    .sticky-cart-wrapper .ic-mini-cart-count-price {
        position: relative;
        flex-grow: 1;
        padding-left: 10px;
    }

    .sticky-cart-wrapper .mini-cart-title {
        font-size: 14px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        /* number of lines to show */
        line-clamp: 2;
        -webkit-box-orient: vertical;
        padding-bottom: 2px;
    }

    .sticky-cart-wrapper .cart-bottom {
        left: 0;
        right: 0;
        position: absolute;
        bottom: 0;
    }

    .sticky-cart-wrapper .woocommerce-Price-amount{
        font-size: 16px;
        color: #9a9a9a;
    }
    
    .sticky-cart-wrapper .cart-quantity{
        font-size: 14px;
        color: #4d4d4d;
    }

    .sticky-cart-wrapper .sticky-cart-quantity-selector {
        margin-top: 5px;
        display: inline-flex;
    }

    .sticky-cart-wrapper .ic-custom-render-total {
        position: absolute;
        right: 0;
        bottom: 0;
        font-size: 18px;
        color: #4d4d4d;
        font-weight: 600;
    }

    .sticky-cart-wrapper .mini_cart_item::after {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        /* Adjust the height as needed */
        background-color: #cccccc;
        position: absolute;
        bottom: -10px;
        left: 0;
    }

    .sticky-cart-wrapper .woocommerce-mini-cart__total {
        display: flex;
        justify-content: space-between;
        padding: 0 30px;
    }

    .woocommerce a.remove {
        position: absolute;
        right: 0;
    }

    .sticky-cart-wrapper .woocommerce-mini-cart__total strong {
        color: #636363;
        font-size: 16px;
        font-weight: 500;
    }

    .sticky-cart-wrapper .woocommerce-mini-cart__total .woocommerce-Price-amount {
        font-weight: 600;
        font-size: 20px;
        color: #4d4d4d;
    }

    .sticky-cart-wrapper .woocommerce-mini-cart__buttons{
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .sticky-cart-wrapper .woocommerce-mini-cart__buttons a{
        width: 120px !important;
        font-size: 14px !important;
        border-radius: 20px !important;
        text-align: center;
    }

    .sticky-cart-wrapper .checkout{
        background-color: #ff8c3f !important;
        color: white !important;
    }

    .sticky-cart-wrapper .checkout:hover{
        background: #ff761b !important;
    }

    .ic-cart-header-btn{
        position: fixed;
        right: 0;
        cursor: pointer;
        bottom: 0;
        border: none;
        border-radius: 50%;
        background: white;
        filter: drop-shadow(0 5px 4px rgba(0, 0, 0, 0.25));
        width: 80px;
        height: 80px;
    }

    .ic-cart-header-btn svg {
        position: absolute;
        bottom: 25px;
        left: 25px;
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 519px) {
    .sticky-cart-wrapper {
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 2;
    }

    .sticky-cart {
        display: none;
        filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
        background: #fff;
        border-radius: 20px 20px 0 0;
        padding: 10px;
        font-weight: 600;
        width: 100%;
    }

    .ic-cart-sidebar-wrapper_header {
        align-items: center;
        justify-content: center;
        display: flex;
        position: relative;
        margin-bottom: 20px;
        color: #4d4d4d;
        font-size: 20px;
    }

    .ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_header .ic-cart-header-btn-close {
        position: absolute;
        top: 0;
        right: 0;
        background: #F3F5F6;
        border-radius: 8px;
        width: 30px;
        height: 30px;
        border: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .sticky-cart-wrapper .cart_list {
        padding: 0 10px 0 0!important;
        overflow-y: auto;
        max-height: 100px;
        position: relative;
    }

    .sticky-cart-wrapper .cart_list::-webkit-scrollbar {
        width: 5px;
        background: #e6e6e6;
        border-radius: 5px;
    }

    .sticky-cart-wrapper .cart_list::-webkit-scrollbar-thumb {
        background: #9a9a9a;
        border-radius: 5px;
    }

    .sticky-cart-wrapper .mini_cart_item {
        position: relative;
        display: flex;
        margin-bottom: 20px !important;
        padding: 0 !important;
    }

    .sticky-cart-wrapper .mini_cart_item img {
        flex-shrink: 0 !important;
        width: 60px !important;
        height: 72px !important;
        object-fit: contain !important;
    }

    /* cart item detail */
    .sticky-cart-wrapper .ic-mini-cart-count-price {
        position: relative;
        flex-grow: 1;
        padding-left: 10px;
    }

    .sticky-cart-wrapper .mini-cart-title {
        font-size: 14px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        /* number of lines to show */
        line-clamp: 2;
        -webkit-box-orient: vertical;
        padding-bottom: 2px;
    }

    .sticky-cart-wrapper .cart-bottom {
        left: 0;
        right: 0;
        position: absolute;
        bottom: 0;
    }

    .sticky-cart-wrapper .woocommerce-Price-amount{
        font-size: 16px;
        color: #9a9a9a;
    }
    
    .sticky-cart-wrapper .cart-quantity{
        font-size: 14px;
        color: #4d4d4d;
    }

    .sticky-cart-wrapper .sticky-cart-quantity-selector {
        margin-top: 5px;
        display: inline-flex;
    }

    .sticky-cart-wrapper .ic-custom-render-total {
        position: absolute;
        right: 0;
        bottom: 0;
        font-size: 18px;
        color: #4d4d4d;
        font-weight: 600;
    }

    .sticky-cart-wrapper .mini_cart_item::after {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        /* Adjust the height as needed */
        background-color: #cccccc;
        position: absolute;
        bottom: -10px;
        left: 0;
    }

    .sticky-cart-wrapper .woocommerce-mini-cart__total {
        display: flex;
        justify-content: space-between;
        padding: 0 30px;
    }

    .woocommerce a.remove {
        position: absolute;
        right: 0;
    }

    .sticky-cart-wrapper .woocommerce-mini-cart__total strong {
        color: #636363;
        font-size: 16px;
        font-weight: 500;
    }

    .sticky-cart-wrapper .woocommerce-mini-cart__total .woocommerce-Price-amount {
        font-weight: 600;
        font-size: 20px;
        color: #4d4d4d;
    }

    .sticky-cart-wrapper .woocommerce-mini-cart__buttons{
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .sticky-cart-wrapper .woocommerce-mini-cart__buttons a{
        width: 120px !important;
        font-size: 14px !important;
        border-radius: 20px !important;
        text-align: center;
    }

    .sticky-cart-wrapper .checkout{
        background-color: #ff8c3f !important;
        color: white !important;
    }

    .sticky-cart-wrapper .checkout:hover{
        background: #ff761b !important;
    }

    .ic-cart-header-btn{
        position: fixed;
        right: 0;
        cursor: pointer;
        bottom: 0;
        border: none;
        border-radius: 50%;
        background: white;
        filter: drop-shadow(0 5px 4px rgba(0, 0, 0, 0.25));
        width: 80px;
        height: 80px;
    }

    .ic-cart-header-btn svg {
        position: absolute;
        bottom: 25px;
        left: 25px;
        width: 30px;
        height: 30px;
    }

    .entry-title{
        display: none;
    }
}