:root {
    --primary-color: #214948;
    --secondary-color: #2c6461;
    --accent-color: #f0c14b;
    --light-bg: #f3f3f3;
    --border-color: #ddd;
}
body {
    background-color: var(--light-bg);
    font-family: 'Arial', sans-serif;
}
.salon-cart {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
    
}
.cart-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
}
.cart-header {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.cart-header h1 {
    color: #214948;
    font-weight: bold;
}
.cart-item {
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: relative;
}
.cart-item:last-child {
    border-bottom: none;
}
.item-image-container {
    position: relative;
    display: inline-block;
}
.item-checkbox {
    display: flex;
    align-items: center;
}
.item-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    cursor: pointer;
    opacity: 1;
    accent-color: #214948;
}
.item-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.item-details {
    font-size: 14px;
    color: #555;
    line-height: 1.2;
    margin-bottom: 3px;
}
.item-price {
    color: #B12704;
    font-weight: bold;
    font-size: 18px;
}
.quantity-dropdown {
    width: 60px;
    margin-right: 10px;
    border-color: var(--border-color);
}
.subtotal {
    font-size: 18px;
    font-weight: bold;
    color: #214948;
}
.checkout-button {
    background-color: var(--accent-color);
    border-color: #a88734 #9c7e31 #846a29;
    color: #111;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 10px 20px;
}
.checkout-button:hover {
    background-color: #f4d078;
}
.save-for-later, .delete-item {
    font-size: 13px;
    color: var(--secondary-color);
    text-decoration: none;
}
.save-for-later:hover, .delete-item:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
.product-title {
    font-size: 18px;
    font-weight: bold;
    color: #214948;
    margin-bottom: 3px;
}
.stock-status {
    font-weight: bold;
    margin-bottom: 3px;
}
.gift-option {
    font-size: 14px;
    color: #007185;
    margin-top: 10px;
}
.gift-option i {
    margin-right: 5px;
}
.order-summary {
    background-color: #f0f2f2;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
}
.order-summary-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 14px;
}
.summary-total {
    font-weight: bold;
    font-size: 18px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}
.product-actions {
    margin-top: 5px;
}
@media (max-width: 768px) {
    .cart-item {
        flex-direction: column;
    }
    .item-image {
        margin-bottom: 15px;
    }
    .item-details {
        padding-left: 0;
    }
}
@media (max-width: 991px) {
    .col-lg-9, .col-lg-3 {
        width: 100%;
    }
    .order-summary {
        margin-top: 20px;
    }
}