.mobile-cart-footer{
display:none;
}
.mobile-cart-top-buttons{
    display:none;
}
@media only screen and (max-width: 769px) {
    .mobile-cart-top-buttons{
    display:block;
}
  .shipping-progress {
        border: 1px solid #e0e0e0;
        transition: all 0.3s ease;
    }
    
    .progress-bar {
        transition: width 0.6s ease;
    }
    
    .shipping-progress:hover {
        border-color: #3bb5da;
    }
    
  .mobile-cart-top-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-bottom: 15px;
    background: #fff;
    }

   
    .continue-shopping-btn {
        padding: 8px;
        background: #f5f5f5;
        color: #333;
        border: none;
        border-radius: 5px;
        text-align: center;
        text-decoration: none;
        font-size: 14px;
        font-family: 'Gilroy', sans-serif;
        font-weight: 500;
    }

  
    .top-checkout-btn {
        padding: 12px;
        background: #016ca2;
        color: #fff;
        border: none;
        border-radius: 5px;
        text-align: center;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
    }
    
    .mobile-cart-footer{
        display:block;
    }
   
  
    .basket-page-products {
        padding: 0;
        padding-bottom: 120px;
    }

    .basket-page {
        padding: 15px;
        background: #fff;
        flex-direction: column;
    }

    .bpp-product {
        position: relative;
        display: flex;
        padding: 15px;
        margin-bottom: 10px;
        border-bottom: 1px solid #eee;
        flex-direction: row;
        background-color: #f5f6fa;
        border-radius: 20px;
    }

    .bpp-product-thumbnail {
        width: 100px;
        min-width: 100px;
        height: 120px;
        margin-right: 15px;
        border-radius: 4px;
        overflow: hidden;
    }

    .bpp-product-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .bpp-product-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 10px;
    }

    .bpp-product-right-top {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        padding-right: 25px;
    }

    .bpp-product-title {
        width: 100%;
        font-size: 14px;
        color: #333;
        text-decoration: none;
        margin-right: 10px;
        line-height: 1.3;
    }

    .bpp-product-no {
        font-size: 12px;
        color: #666;
        margin-right: 10px;
    }

    .bpp-product-remove {
        position: absolute;
        right: -10px;
        top: -5px;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px;
        background: transparent;
        border: none;
    }

    .bpp-product-remove svg {
        width: 16px;
        height: 16px;
    }

    .bpp-product-remove svg path {
        fill: #666;
    }

    .bpp-product-right-bottom {
        display: flex;
        align-items: start;
        justify-content: space-between;
        margin-top: auto;
    }

    .mpd-number-of-products {
        display: flex;
        align-items: center;
        background: #f5f5f5;
        border-radius: 4px;
        width: 40%;
        height: 40px;
    }

    .mpd-number-of-products-input {
        width: 20px;
        text-align: center;
        border: none;
        background: transparent;
        font-size: 14px;
    }

    .mpd-number-subtract,
    .mpd-number-increase {
        width: 28px !important;
        height: 21px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #333;
        background: #fff;
        border-radius: 4px;
    }

    .mpd-number-subtract:after {
        content: "-";
        font-size: 16px;
    }

    .mpd-number-increase:after {
        content: "+";
        font-size: 16px;
    }

    .bpp-product-price {
        font-size: 16px;
        font-weight: 800;
        color: #016ca2;
        margin-left: auto;
        font-family: 'Gilroy', sans-serif;
    }

    .remember-me-checkboxes {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .free-shipping-notice {
        background: #fff3e6;
        color: #333;
        padding: 12px 15px;
        margin: 10px 0;
        border-radius: 4px;
        font-size: 13px;
        display: flex;
        align-items: center;
    }

    .bdd-item p {
        text-align: center;
        padding: 20px;
        color: #666;
    }
    
    
   

    .mobile-cart-footer {
        position: fixed;
        bottom: 55px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 15px;
        box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .cart-total-price {
        display: flex;
        flex-direction: column;
    }

    .cart-total-price .total-label {
        font-size: 12px;
        color: #666;
        margin-bottom: 2px;
    }

    .cart-total-price .total-amount {
        font-size: 18px;
        font-weight: 600;
        color: #333;
    }

    .secure-checkout-btn {
        background: #016ca2;
        color: #fff;
        padding: 12px 24px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        white-space: nowrap;
    }
    
    
}