/* -- CSS TÙY CHỈNH CHO BIẾN THỂ - Đối tác lập trình -- */

/* Container cho các nhóm thuộc tính */
.custom-variations-container {
    margin-bottom: 20px;
}

.variation-group {
    margin-bottom: 15px;
}

.variation-label-title {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 500;
    color: #242424;
}

/* Các nhãn biến thể */
.variation-labels {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
}

.single-variation-label {
    flex: 0 0 auto;
    border: 2px solid rgb(235, 51, 0);
    border-radius: 9rem;
    padding: 8px 15px;
    cursor: pointer;
    transition: .15s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none; /* Không cho phép chọn text */
    font-size: 16px;
    font-weight: 600;
    background: white;
}

.single-variation-label:hover {
    background: rgba(235, 51, 0, .1);
}

.single-variation-label.selected {
    background: #eb3300; /* Màu chính của WordPress */
    color: #fff;
}

/* Khu vực giỏ hàng tạm */
.temp-cart-container {
    border: 1px solid #e0e0e0;
    padding: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #fafafa;
}

.temp-cart-container h3 {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 18px;
    font-weight: 500;
}
#temp-cart-items tr {
    border-bottom: 1px dashed #e0e0e0;
}
#temp-cart-items td {
    padding-top: 10px;
    padding-bottom: 10px;
}
.tempName {
    font-size: 18px;
    font-weight: 500;
}
.tempName span {
    color: #808080;
}
.tempQty {
    border: 1px solid #242424;
    border-radius: 9rem;
}
.tempQty__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border: 0;
    background: none;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}
.tempQty__btn:focus {
    box-shadow: none;
    border: 0;
    outline: 0;
}
.temp-cart-qty {
    font-size: 12px;
    font-weight: 500;
    border: 0;
    background: none;
    width: 30px;
    text-align: center;
    -moz-appearance: textfield;
}
.temp-cart-qty::-webkit-outer-spin-button,
.temp-cart-qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.temp-cart-qty:focus {
    border: 0;
    outline: 0;
    box-shadow: none;
}
#temp-cart-items tr:last-child {
    border-bottom: 0;
}
.termName {

}

.remove-temp-item {
    color: red;
    border: 1px solid red;
    background: transparent;
    cursor: pointer;
    border-radius: 3px;
    padding: 2px 5px;
    font-size: 12px;
    font-weight: 500;
}

#temp-cart-total {
    margin-top: 15px;
    font-size: 1.2em;
    text-align: right;
}
/*# sourceMappingURL=custom-variations.css.map */