

/* Ẩn mũi tên tăng giảm mặc định của thẻ input number */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Nút bị vô hiệu hóa khi hết hàng */
.btn-disabled {
    background-color: #cccccc !important;
    border-color: #cccccc !important;
    color: #666666 !important;
    cursor: not-allowed !important;
    pointer-events: none;
}

/* Cụm hiển thị giá tiền */
.price-display-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.price-main {
    font-weight: bold;
    font-size: 24px;
    color: #b0b435;
}

.price-old {
    color: #929292;
    font-size: 16px;
}

.discount-badge {
    background-color: #b0b435;
    color: #ffffff;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    vertical-align: middle;
}

/* Nút chọn Phân loại sản phẩm */
.variant-item {
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 5px 10px;
    background-color: #fff;
    color: #000;
    transition: all 0.2s ease;
}
    /* JS chỉ cần add class này, CSS tự đổi màu */
    .variant-item.is-selected {
        border-color: #b0b435;
        background-color: #b0b435;
        color: #fff;
    }

.variant-img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    margin-right: 8px;
    border-radius: 2px;
}

/* Nút thêm vào giỏ / Mua ngay */
.action-btn {
    color: white;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
}

/* Avatar người dùng đánh giá */
.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #b0b435;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.rating-stars {
    color: #ffc107;
    font-size: 20px;
    cursor: pointer;
}

/* ═══════════════════════════════════════
   SỐ ĐÃ BÁN TRÊN TRANG DETAIL
   ═══════════════════════════════════════ */

/* Badge nhỏ cạnh "Tình trạng" - dùng brand color */
.sold-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f7f9f0;
    border: 1px solid #c8cb62;
    color: #7a7d1f;
    font-size: 13px;
    font-weight: 600;
    padding: 3px 11px;
    border-radius: 20px;
    white-space: nowrap;
}

    .sold-count-badge i {
        color: #b0b435;
        font-size: 12px;
    }

    .sold-count-badge strong {
        color: #7a7d1f;
    }

.product-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}
