/* Container Utama */
.wardrobe-selector {
    font-family: sans-serif;
    max-width: 400px;
}

/* Label Tajuk Kecil */
.wardrobe-label {
    font-size: 11px;
    font-weight: bold;
    color: #a0a0a0;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Kumpulan Butang */
.option-group {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

/* Gaya Butang Biasa */
.opt-btn {
    padding: 10px 20px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 50px;
    font-weight: bold;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s;
}

/* Gaya Butang Bila Aktif/Diklik */
.opt-btn.active {
    background: black;
    color: white;
    border-color: black;
}

/* Butang WhatsApp */
.wa-inquiry-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    color: white !important;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none !important;
    font-weight: bold;
    width: 100%;
    margin-top: 10px;
}