/* =========================================
   Fragrance Configurator Styles
========================================= */

#dynamic-fragrance-fields {
    margin-bottom: 20px;
    margin-top: 10px;
}

.woocommerce-variation-add-to-cart {
    flex-wrap: wrap !important;
}

/* Only style when active */
#dynamic-fragrance-fields.active {
    padding: 20px;
    background: transparent;
    border-radius: 8px;
}
.fragrance-field {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.fragrance-field label {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
    color: #333;
}

.fragrance-field select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.fragrance-field select:focus {
    border-color: #000;
    outline: none;
}

body.rtl #dynamic-fragrance-fields {
    direction: rtl;
    text-align: right;
}

body.rtl .fragrance-field {
    align-items: flex-end;
}

/* Select2 Container */
.select2-container--default .select2-selection--single {
    height: 50px;
    border-radius: 25px;
    border: 1px solid #ddd;
    padding: 10px 20px;
    display: flex;
    align-items: center;
}

/* Dropdown Box */
.select2-dropdown {
    border-radius: 20px;
    border: 1px solid #ddd;
    padding: 10px;
}

/* Options */
.select2-results__option {
    padding: 10px 15px;
    border-radius: 15px;
}

/* Hover */
.select2-results__option--highlighted {
    background-color: #f5f5f5;
}

/* RTL Fix */
body.rtl .select2-container {
    direction: rtl;
}

.fragrance-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    width: 100%;
    height: 50px;

    padding: 0 50px 0 20px;

    border-radius: 30px;
    border: 1px solid #ddd;

    background-color: #fff;
    font-size: 15px;
    cursor: pointer;

    transition: all 0.3s ease;
}

.fragrance-field {
    position: relative;
}

.fragrance-field::after {
    content: "⌄";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    pointer-events: none;
    font-size: 16px;
    color: #777;
}

body.rtl .fragrance-field::after {
    right: auto;
    left: 20px;
}

.fragrance-field {
    position: relative;
}

.fragrance-field::after {
    content: "⌄";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    pointer-events: none;
    font-size: 16px;
    color: #777;
}

body.rtl .fragrance-field::after {
    right: auto;
    left: 20px;
}

.fragrance-select:hover {
    border-color: #bbb;
}

.fragrance-select:focus {
    outline: none;
    border-color: #c6b79d;
    box-shadow: 0 0 0 2px rgba(198,183,157,0.2);
}

.fragrance-select {
    background-color: #faf8f5;
    border: 1px solid #e6dfd5;
}

.fragrance-select:focus {
    border-color: #d2c4ad;
}



/* Optional: Grid layout for many bottles */

/*@media (min-width: 768px) {
    #dynamic-fragrance-fields {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}*/
