/**
 * Intigo WooCommerce Checkout Styles
 */

/* Intigo Field Containers */
.intigo-gouvernorat-field,
.intigo-city-field,
.intigo-locality-field {
    margin-bottom: 15px;
}

/* Select Fields */
.intigo-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.intigo-select:focus {
    border-color: #f7941d;
    box-shadow: 0 0 0 2px rgba(247, 148, 29, 0.2);
    outline: none;
}

.intigo-select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Select2 Customization */
.select2-container--default .select2-selection--single {
    height: 44px;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 30px;
    color: #333;
    padding-left: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999;
}

/* Focus state for Select2 */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #f7941d;
    box-shadow: 0 0 0 2px rgba(247, 148, 29, 0.2);
}

/* Select2 Dropdown */
.select2-dropdown {
    border-color: #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #f7941d;
    color: #fff;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #fff5e6;
    color: #333;
}

.select2-search--dropdown .select2-search__field {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: #f7941d;
    outline: none;
}

/* Field Labels */
.intigo-gouvernorat-field label,
.intigo-city-field label,
.intigo-locality-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

/* Required indicator */
.intigo-gouvernorat-field label .required,
.intigo-city-field label .required,
.intigo-locality-field label .required {
    color: #e74c3c;
    margin-left: 3px;
}

/* Validation States */
.intigo-gouvernorat-field.woocommerce-invalid .intigo-select,
.intigo-city-field.woocommerce-invalid .intigo-select,
.intigo-locality-field.woocommerce-invalid .intigo-select {
    border-color: #e74c3c;
}

.intigo-gouvernorat-field.woocommerce-validated .intigo-select,
.intigo-city-field.woocommerce-validated .intigo-select,
.intigo-locality-field.woocommerce-validated .intigo-select {
    border-color: #2ecc71;
}

/* Admin Order Details */
.intigo-shipping-details {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    margin-top: 15px;
    border-left: 3px solid #f7941d;
}

.intigo-shipping-details h3,
.intigo-shipping-details h2 {
    margin: 0 0 10px 0;
    color: #f7941d;
    font-size: 16px;
}

.intigo-shipping-details p {
    margin: 5px 0;
    font-size: 14px;
}

.intigo-shipping-details strong {
    color: #555;
}

/* Loading State */
.intigo-loading {
    position: relative;
    pointer-events: none;
}

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

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .intigo-select {
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .select2-container--default .select2-selection--single {
        height: 48px;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 34px;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 46px;
    }
}

/* Phone Validation */
.intigo-phone-error {
    border-color: #e74c3c !important;
}

.intigo-phone-error:focus {
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2) !important;
}

.intigo-phone-error-message {
    color: #e74c3c;
    font-size: 12px;
    display: block;
    margin-top: 5px;
}

/* Phone field styling */
input#billing_phone {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

/* Bilingual labels support (French + Arabic) */
.woocommerce-checkout .form-row label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

/* RTL support for Arabic text in labels */
.woocommerce-checkout .form-row label {
    direction: ltr;
    text-align: left;
}

/* Intigo Branding Colors */
:root {
    --intigo-orange: #f7941d;
    --intigo-orange-light: #fff5e6;
    --intigo-orange-dark: #d97a0a;
}
