/**
 * Booking Cart CSS
 * Styles for cart widget
 */

.naturro-cart-widget {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin: 20px 0;
}

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

.naturro-cart-item:last-child {
    border-bottom: none;
}

.naturro-cart-item-details {
    flex: 1;
}

.naturro-cart-item-price {
    font-weight: bold;
    color: #2271b1;
}

.naturro-cart-total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #2271b1;
    font-size: 18px;
    font-weight: bold;
    text-align: right;
}

.naturro-add-to-cart,
.naturro-remove-from-cart {
    cursor: pointer;
}

.naturro-add-to-cart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
