.lang-selected {
    background-color: rgba(205, 154, 49, 0.2)
}
/* Base button (common styles) */
.vie-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; /* gap-2 */
    padding: 0.75rem 0; /* py-3 */
    border-radius: 0.75rem; /* rounded-xl */
    font-size: 0.875rem; /* text-sm */
    font-weight: 600; /* font-semibold */
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Inactive state */
.vie-button {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(205, 154, 49, 0.2);
    color: #9ca3af; /* gray-300 */
}

.vie-button:hover {
    border-color: rgba(205, 154, 49, 0.5);
    color: #ffffff;
}

/* Active state */
.vie-button.active {
    background: linear-gradient(
        to right,
        #fff2c9,
        #CD9A31,
        #8f640f
    );
    color: #000000;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    transform: scale(1.02);
    border: none;
}

/* BASE ITEM */
.option-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 10px;
}

/* LEFT PART */
.option-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* CHECKBOX ICON BOX */
.option-box {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid rgba(205, 154, 49, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

/* TEXT */
.option-text {
    font-size: 14px;
    color: #e5e7eb;
}

/* PRICE */
.option-price {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    transition: color 0.2s ease;
}

/* =========================
   ACTIVE STATE
   ========================= */
.option-label.is-active .option-box {
    background: #CD9A31;
    border-color: #CD9A31;
    transform: scale(1.1);
}

.option-label.is-active .option-price {
    color: #CD9A31;
}

.option-label.is-active .option-text {
    color: #ffffff;
}
button svg {
    display: block;
    flex-shrink: 0;
}