.cart-container {
    overflow-x: auto;
    white-space: nowrap;
    background-color: transparent; /* Optional: For visual styling */
}
  
.cart-slider {
    display: flex;
    gap: 20px; /* Space between items */
}
  
.cart-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 0 0 auto; /* Prevent flexbox items from shrinking */
    width: 200px; /* Adjust based on your design */
    max-height: 250px;
    background-color: white; /* Optional: For visual styling */
    border: 1px solid #ddd; /* Optional: For visual styling */
    padding: 10px;
    border-radius: 15px; /* Optional: For visual styling */
}
  
.item-image-wrapper {
    text-align: center;
}
  
.item-image img {
    max-width: 100%;
    max-height: 150px;
    display: block;
    margin: 0 auto;
}
  
.item-details {
    width: 80%;
    margin-top: 10px;
}
  
.item-name {
    font-weight: bold;
    margin-bottom: 5px;
}
  
.item-attributes {
    font-size: 0.9em;
    color: #666;
}

.price-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}
  
.item-price-deleted {
    text-decoration: line-through;
    font-size: small;
    color: rgb(253, 62, 62);
    margin-right: 5px;
}
  
.item-discounted-price,
.item-price {
    font-weight: bold;
    color: var(--primary-color);
}
  

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
  
.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(69, 69, 69, 0.5);
    color: white;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    border-radius: 15px;
}