/* Table Styling */
#cart-items {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.cart-row {
    border-bottom: 1px solid #ddd;
    text-align: left;
    vertical-align: middle; /* Ensures vertical centering */
    
}

.cart-row td {
    padding: 12px 12px 12px 0px; /* Adds some spacing */
    text-align: left;
    vertical-align: middle;
}

.cart-item-name {
    font-weight: bold;
    padding: 12px;
    padding-left: 4rem !important;
}

.cart-item-price,
.cart-item-total {
    color: #27ae60;
    font-weight: 300;
}

/* Quantity Buttons */
.cart-item-quantity {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-self: center;
    gap: 10px;
}

.quantity-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 2px 6px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}

.quantity-btn:hover {
    background: #2980b9;
}

.quantity-text {
    font-weight: bold;
    font-size: 16px;
}

/* Remove Button */
.delete-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.delete-btn:hover {
    background: #c0392b;
}

/* Empty Cart Message */
.empty-cart {
    text-align: center;
    font-size: 18px;
    color: #e74c3c;
    padding: 20px;
}

.weekly-sale{
    padding: 3rem;
}

/* ======= Styles for Tablets (max-width: 1200px) ======= */


/* ======= Styles for Mobile Screens (max-width: 767px) ======= */
@media (max-width: 767px) {
    .cart-section {
        overflow-x: auto !important;
    }

    table {
        width: 100% !important;
        border-collapse: collapse !important;
    }

    

    
    tbody tr td {
        display: table-cell !important;
        padding: 6px !important;
        font-size: 12px !important;
       
    }

    .wrapper-product {
        max-width: 50% !important;
    }

    .cart-item-quantity {
        
        gap: 8px !important;
    }

    .quantity-btn {
       
        font-size: 12px !important;
     
    }

    .cart-item-name{
        padding-left: 0.5rem !important;
    }

    .cart-item-remove .delete-btn {
        font-size: 12px !important;
    }
    .cart-section .table-row .wrapper-product {
        
        padding: 0.5rem 0 0.5rem 0rem !important;
      }
    td.cart-item-remove{
        text-align: center;
    vertical-align: middle;
    }

    .center-align-special{
        text-align: center !important;
    vertical-align: middle;
    }

    table .table-wrapper{
        min-width: 0rem;
    }
    
    .quantity-text{
        font-size: 12px;
    }

    .hide-content{
        display: none;
    }

    .weekly-sale{
        margin-top: 2rem !important;
    }


    .g-5, .gy-5 {
        --bs-gutter-y: 6rem;
    }
    .product-wrapper{
        height: 110%;
    }
    
   .banner-content{
    padding: 10.0% 0 !important ;
   }

   .margin-right-0 {
    margin-right: 0px !important;
    }

    .margin-left-0{
        margin-left: 0px !important;
    }
    
    .margin-top-6rem{
        margin-top: 6rem !important;
    }

}
