
.cart-item {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    .cart-item {
        flex-direction: column;
    }
}

.item-details {
    margin: 20px 0px;
    flex-grow: 1;
}

.item-image-wrapper {
    width: 200px;
    height: auto;
    position: relative;
    margin-right: 10px;
}

.item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.item-image img:not(:first-child) {
    top: 5px;
    left: 5px;
    transform: scale(0.8);
    opacity: 0.6;
}

.item-name {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 5px;
}

.item-attributes {
    font-size: 0.9em;
    color: #666;
}

.item-price {
    font-size: 1.1em;
    color: #000000;
    font-weight: bold;
}

.item-price-deleted {
    text-decoration: line-through;
    color: #999;
}

.item-discounted-price {
    font-size: 1.1em;
    color: var(--primary-color);
    font-weight: bold;
}

.remove-button {
    border: 0px;
    background: var(--secondary-color);
    padding: 10px;
    border-radius: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.summary {
    text-align: center;
    margin-top: 20px;
}

.summary-line {
    font-size: 1.1em;
    margin: 10px 0;
}

.summary-savings {
    color: #27ae60;
    font-weight: bold;
}

#cart-total {
    font-size: small;
    font-weight: bold;
    text-decoration: line-through;
}