.btn-orange {
    background-color: var(--bs-primary);
    border: none;
    transition: background-color 0.2s ease;
}
.btn-orange:hover {
    background-color: #ebbf83;
}


.cart-item {
    font-size: 14px;
}

.cart-item-img-holder {
    background-size: cover;       /* Zorgt dat het beeld de ruimte goed vult */
    background-position: center;  /* Centreert het beeld horizontaal & verticaal */
    background-repeat: no-repeat; /* Voorkomt herhaling */
    aspect-ratio: 1/1;            /* Vierkante verhouding, altijd goed */
    min-height: 60px;             /* Voor consistentie */
}


.cart-item-img {
    width: 100%;
    object-fit: cover;
    border: 1px solid #eee;
}

.cart-item-title a {
    font-size: 14px;
    color: #222;
    text-decoration: none;
}

.cart-item-price {
    font-size: 14px;
    color: #111;
}

.cart-quantity-control {
    background-color: #f9f9f9;
    padding: 2px 4px;
    font-size: 13px;
}

.cart-qty-btn {
    color: #333;
    font-weight: bold;
    line-height: 1;
    border-radius: 50%;
    background: none;
}

.cart-qty-count {
    min-width: 24px;
    text-align: center;
}

.btn-trash {
    font-size: 16px;
}

.remove_cart_item_button i{
    transition: color 0.2s ease;
    color: #222;
}

.remove_cart_item_button i:hover{
    color: var(--bs-danger);
}