/**
 * Turkey City & District for WooCommerce - Checkout Styles
 *
 * @package TurkeyCityDistrictWC
 */

/* İl ve İlçe alanları */
.tcdwc-city-field,
.tcdwc-district-field {
    width: 48% !important;
    float: left;
}

.tcdwc-city-field {
    margin-right: 4% !important;
}

.tcdwc-district-field {
    margin-right: 0 !important;
}

/* City alanını gizle (state olarak kullanıyoruz) */
.tcdwc-hidden-city {
    display: none !important;
}

/* Select2 ile uyum */
.tcdwc-city-field .select2-container,
.tcdwc-district-field .select2-container {
    width: 100% !important;
}

/* Loading durumu */
.tcdwc-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.tcdwc-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border: 2px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: tcdwc-spin 0.8s linear infinite;
}

@keyframes tcdwc-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media screen and (max-width: 768px) {
    .tcdwc-city-field,
    .tcdwc-district-field {
        width: 100% !important;
        float: none;
        margin-right: 0 !important;
    }
    
    .tcdwc-city-field {
        margin-bottom: 15px;
    }
}

/* Hata durumu */
.tcdwc-city-field.woocommerce-invalid .select2-container--default .select2-selection--single,
.tcdwc-district-field.woocommerce-invalid .select2-container--default .select2-selection--single,
.tcdwc-city-field.woocommerce-invalid select,
.tcdwc-district-field.woocommerce-invalid select {
    border-color: #e2401c !important;
}

/* Başarılı durum */
.tcdwc-city-field.woocommerce-validated .select2-container--default .select2-selection--single,
.tcdwc-district-field.woocommerce-validated .select2-container--default .select2-selection--single {
    border-color: #69bf29 !important;
}

/* Block checkout uyumu (WooCommerce Blocks) */
.wc-block-components-address-form .tcdwc-city-field,
.wc-block-components-address-form .tcdwc-district-field {
    flex: 1 1 48%;
}

/* Select stil düzeltmeleri */
.tcdwc-city-field select,
.tcdwc-district-field select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    line-height: 1.5;
    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;
}

.tcdwc-city-field select:focus,
.tcdwc-district-field select:focus {
    outline: none;
    border-color: #0071a1;
    box-shadow: 0 0 0 1px #0071a1;
}

.tcdwc-city-field select:disabled,
.tcdwc-district-field select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}
