/**
 * Frontend styles for Israeli City Autocomplete
 */

/* City Select Field Wrapper */
.ica-city-select {
    width: 100%;
}

/* Fix Select2 Dropdown Positioning */
.select2-container--open .select2-dropdown {
    margin-top: 0 !important;
    top: 0 !important;
}

.select2-container--open .select2-dropdown--below {
    margin-top: 0 !important;
}

.select2-container--open .select2-dropdown--above {
    margin-bottom: 0 !important;
}

/* Ensure proper stacking */
.select2-container--open {
    z-index: 999999 !important;
}

/* Fix form-row overflow issues */
.woocommerce form .form-row.ica-city-select {
    overflow: visible !important;
}

.woocommerce-checkout .ica-city-select,
.woocommerce-address-fields .ica-city-select {
    overflow: visible !important;
}

/* Parent containers should not clip dropdown */
.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper,
.woocommerce-address-fields__field-wrapper {
    overflow: visible !important;
}

/* Select2 Container Styling */
.ica-city-select .select2-container {
    width: 100% !important;
}

.ica-city-select .select2-container--default .select2-selection--single {
    height: 45px;
    padding: 8px 12px;
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
}

.ica-city-select .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 27px;
    padding-left: 0;
    padding-right: 0;
}

.ica-city-select .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 43px;
    right: 8px;
}

/* RTL Styles */
html[dir="rtl"] .ica-city-select .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: auto;
    left: 8px;
}

/* Focus State */
.ica-city-select .select2-container--default.select2-container--focus .select2-selection--single,
.ica-city-select .select2-container--default.select2-container--open .select2-selection--single {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
    outline: none;
}

/* Dropdown Styling */
.select2-container--default .select2-dropdown {
    border-color: #d3d3d3;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    padding: 10px 12px;
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    font-size: 14px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: #2271b1;
    outline: none;
}

.select2-container--default .select2-results__option {
    padding: 10px 12px;
    font-size: 14px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #2271b1;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: #f0f6fc;
    color: #2271b1;
}

/* RTL Dropdown */
.select2-container--default[dir="rtl"] .select2-results__option {
    text-align: right;
}

/* Native Select Styling (when Select2 is disabled) */
select.ica-city-field:not(.select2-hidden-accessible) {
    width: 100%;
    height: 45px;
    padding: 8px 12px;
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
}

html[dir="rtl"] select.ica-city-field:not(.select2-hidden-accessible) {
    background-position: left 12px center;
}

select.ica-city-field:not(.select2-hidden-accessible):focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
    outline: none;
}

/* WooCommerce Integration */
.woocommerce-checkout .ica-city-select {
    margin-bottom: 0;
}

.woocommerce form .form-row.ica-city-select {
    padding: 3px 0;
}

/* My Account Address Form */
.woocommerce-address-fields .ica-city-select .select2-container {
    width: 100% !important;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .ica-city-select .select2-container--default .select2-selection--single {
        height: 48px;
        padding: 10px 12px;
    }
    
    .ica-city-select .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 26px;
    }
    
    .ica-city-select .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 46px;
    }
    
    select.ica-city-field:not(.select2-hidden-accessible) {
        height: 48px;
        padding: 10px 12px;
    }
}

/* Clear Button */
.ica-city-select .select2-container--default .select2-selection--single .select2-selection__clear {
    margin-right: 20px;
    color: #999;
    font-size: 18px;
    font-weight: normal;
}

html[dir="rtl"] .ica-city-select .select2-container--default .select2-selection--single .select2-selection__clear {
    margin-right: 0;
    margin-left: 20px;
}

.ica-city-select .select2-container--default .select2-selection--single .select2-selection__clear:hover {
    color: #d63638;
}
