/* Torod Checkout Styles */

/* Ensure Select2 matches standard WooCommerce inputs */
.woocommerce .select2-container .select2-selection--single {
    height: 48px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 4px !important;
    display: flex;
    align-items: center;
    background-color: #ffffff !important; /* Force white bg to override validation errors */
    background-image: none !important;
}

/* Ensure Arrow position */
.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
    top: 1px;
}

/* Text alignment and color */
.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 48px !important;
    color: #333 !important;
    padding-left: 12px;
    padding-right: 24px;
}

/* RTL Support */
.woocommerce[dir="rtl"] .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: 12px;
    padding-left: 24px;
}
.woocommerce[dir="rtl"] .select2-container--default .select2-selection--single .select2-selection__arrow {
    left: 1px;
    right: auto;
}

/* Dropdown Z-Index Fix */
.select2-dropdown {
    border: 1px solid #d1d5db;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 999999 !important; /* Force on top of everything */
}

.select2-results__option {
    padding: 10px 12px;
    font-size: 14px;
}

/* Removed Custom Highlight Color - defaults to Theme/Browser default */

/* Ensure field visibility */
.torod-city-select {
    width: 100%;
}