.cart-item {
    padding: 15px 0;
}
.product-image {
    width: 160px;
    height: 160px;
    object-fit: cover;
}
.store-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 8px;
}
.item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.item-price {
    font-weight: bold;
    text-align: right;
    min-width: 80px;
}
.quantity-input{
    border: none;
}
.warningwithError{
   background: #FEF7DD; 
   padding: 10px;  
   border-radius: 8px;
   display: flex;
    align-items: center;
    gap: 10px;
    width: 80%;
}
.errortitle{
    text-underline-offset: 4px;
    text-decoration: underline;
    cursor: pointer;
}
.warningIcon{
    margin-top: -2px;
    height: 18px;
}
.flex-direction-column{
    flex-direction: column;
}
.font-14{
    font-size: 14px!important;
}
.font-16{
    font-size: 16px!important;
}
.font-18{
    font-size: 18px!important;
}
.weight-400{
    font-weight: 400;
}
.weight-600{
    font-weight: 600;
}
.gray-400{
    color: #98A2B3;
}
.weight-500{
    font-weight: 500;
}
.gray-600{
    color : #475467
}
.mb-20{
    margin-bottom: 20px;
}
.gray-800{
    color :  #1D2939
}
.underlinep{
    border-bottom: 1px solid #475467;
}
.btn-primary{
    background: #108482;
    border-radius: 32px;
    color: #fff;
    font-weight: 600;
}
.font-24{
    font-size: 24px!important;
}
.original-price {
    text-decoration: line-through;
    color: #98A2B3;
    font-size: 16px;
    font-weight: 400;
    
}
.checkout-btn {
    background-color: #0a9396;
    border: none;
}
.checkout-btn:hover {
    background-color: #087f8c;
}
.item-action-buttons svg {
    cursor: pointer;
    color: #666;
    margin-right: 12px;
}
.customization-tag {
    display: inline-block;
    background-color: #f0f0f0;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
}

.scroll-container {
    height: 700px!important;
    overflow: auto; /* Enables scrolling */
    scrollbar-width: none; /* Hides scrollbar for Firefox */
    -ms-overflow-style: none; /* Hides scrollbar for Internet Explorer & Edge */
  }
  
  .scroll-container::-webkit-scrollbar {
    display: none; /* Hides scrollbar for Chrome, Safari, and Opera */
  }
.divider {
    height: 1px;
    background-color: #dee2e6;
    margin: 15px 0;
}

.totalforstore{
    padding: 15px;
    background: #eee;
}
.totalforstore td{
    background: #eee !important;
}

.totalforstore .success td{
    background: #dff0d8!important;
}


.edit-cart-modal .modal-dialog {
    margin: 0 0 0 auto;
}
.edit-cart-modal.modal.slide-in-right .modal-content {
    min-height: 100vh;
    overflow: auto;
    border-radius: 0px;
    border: none;
}

.edit-cart-modal.modal.slide-in-right .modal-content .modal-body {
    height: 100vh;
}

.edit-cart-modal.modal.slide-in-right .modal-dialog {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    margin: 0;
    max-width: 520px;
    transform: translateX(100%);
    transition: transform 0.4s ease-out;
    width: 100%;
    border-radius: 0;
    overflow: auto;
    z-index: 1055;
}

.edit-cart-modal.modal.slide-in-right.show .modal-dialog {
    transform: translateX(0);
}

.edit-cart-item-overlay {
    padding-bottom: 10px;
}
.edit-cart-item-overlay .item-price {
    text-align: start;
}

.edit-cart-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin:auto
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .product-image {
        width: 80px;
        height: 90px;
    }
    .item-details {
        font-size: 0.9rem;
    }
    .item-price {
        min-width: 60px;
        font-size: 0.9rem;
    }
}

main{
    background-color: #F2F4F7!important;
}


a.disabled .checkout-btn{
    background: #d6d6d6 !important;
    cursor: no-drop;
    color: #737272;

}

.loadoverlay{
    width: 100%;
    height: 100%;
    background: #ffffff;
    position: absolute;
    z-index: 999;
    opacity: 0.7;
    display: none;
}
.card{
    z-index: auto!important;
    border: 1px solid #E4E7EC!important;
    border-radius: 8px!important;
    box-shadow: none!important;
}
.cart-page{
    padding: 190px 80px 40px 80px;
}

@media only screen and (max-width: 1024px) { 
    .cart-page{
        padding: 70px 16px;
    }
}