:root {
    --link-color: #931d36;
    --price-color: #931d36;
    --primary-color: #931d36;
    --cta-color: #000;
    --text-color: #333;
}

body {
    background-color: #ffffff;
}

.main-cart-page {
    font-family: 'Inter', sans-serif;
}

.heading-bar__title {
    color: #1B1B1B;
    font-size: 32px;
    margin: 0;
    line-height: 1.2;
    text-align: left;
    font-weight: 700;
    font-family: 'UVN Bach Dang', serif !important;
}

/* Cart Item Styles */
.item-product {
    gap: 20px;
}

.product-name {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.product-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.product-name a:hover {
    color: var(--primary-color);
}

.sku-carttitle {
    font-size: 12px;
    color: #999;
    display: block;
}

/* Quantity Control */
.btn-qty {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ced4da;
    background: #fff;
    color: #333;
    border-radius: 0;
    font-size: 18px;
    line-height: 1;
}

.btn-minus {
    border-right: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.btn-plus {
    border-left: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.qty-input {
    border: 1px solid #ced4da;
    outline: none;
}

/* Sidebar Styles */
.sidebar-cart-summary {
    position: sticky;
    top: 20px;
    background: #fbfbfb !important;
    border: 1px solid #eee !important;
}

.custom-checkbox .custom-control-label::before {
    border-radius: 2px;
    border: 1px solid #ced4da;
}

.custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.totals-title {
    color: #333;
}

.coupon-section a {
    color: #2e72d2 !important;
    text-decoration: none;
}

/* Responseive adjustments */
@media (max-width: 991px) {
    .item-product {
        flex-wrap: wrap;
    }
    .remove-wrapper { order: 1; }
    .image-wrapper { order: 2; }
    .info-wrapper { order: 3; width: calc(100% - 120px); }
    .price-wrapper { order: 4; width: 50%; padding-left: 110px; margin: 10px 0 !important; }
    .qty-wrapper { order: 5; width: 50%; display: flex; justify-content: flex-end; }
}

.cart-empty h3 {
    font-family: 'UVN Bach Dang', serif;
    font-weight: 700;
}

.btn-main {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
}
