﻿
.quantity-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
    height: 38px;
    background-color: #fff;
}

.currency-sup {
    font-size: 60%;
    vertical-align: super;
    color: #888;
    margin-left: 2px;
}

.btn-quantity {
    width: 38px;
    height: 100%;
    background-color: #fff; /* Nền trắng */
    border: none;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-right: 1px solid #ccc; /* Đường viền phân cách */
}

    .btn-quantity:last-child {
        border-left: 1px solid #ccc;
        border-right: none;
    }

    .btn-quantity:hover {
        background-color: #f8f8f8; /* Hover nhẹ nhàng */
        color: #000;
    }

.quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 16px;
    background-color: #fff;
    height: 100%;
    padding: 0;
}

    .quantity-input:focus {
        outline: none;
    }


/* Add to cart button */
.btn-add-to-cart {
    background-color: #79443b;
    color: #fff;
    border: none;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

    .btn-add-to-cart:hover {
        background-color: #5c322c;
    }

.input-group-text {
    background-color: white !important;
    border: none !important;
}

.title a {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* giới hạn 2 dòng */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 48px; /* đảm bảo cao đồng đều cho 2 dòng */
    color: #333;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
}

.product-title {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Giới hạn 2 dòng */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    line-height: 1.3;
    min-height: 2.6em; /* Đảm bảo đúng 2 dòng */
    font-weight: 600;
    color: #333;
}
/* Đổi màu viền checkbox */
.form-check-input {
    border: 2px solid #ccc;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

    /* Khi được check, đổi màu nền + màu icon dấu check */
    .form-check-input:checked {
        background-color: #875753; /* màu bạn thích, ví dụ màu đen chuyên nghiệp */
        border-color: #875753;
    }

.accordion-button::after {
    filter: brightness(0) invert(1); /* Đổi màu từ đen sang trắng */
}