/* =============================================== */
/* DELIVERY ZONE AUTOCOMPLETE - ESTILO SELECT   */
/* =============================================== */

[data-controller="delivery-zone-autocomplete"] {
    position: relative;
}

[data-delivery-zone-autocomplete-target="results"] {
    background: white;
    border: 1px solid #d1d5db;
    border-top: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    max-height: 280px;
    overflow-y: auto;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    margin: 0;
    padding: 0;
    display: none;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    border-radius: 0 0 4px 4px;
}

[data-delivery-zone-autocomplete-target="results"].show {
    display: block;
}

/* ESTILO SELECT - OPÇÕES LIMPAS */
.delivery-zone-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    transition: background-color 0.15s ease;
    border-bottom: 1px solid #f3f4f6;
    min-height: 60px;
    background: white;
    font-size: 16px;
}

.delivery-zone-option:last-child {
    border-bottom: none;
}

.delivery-zone-option:hover,
.delivery-zone-option.active {
    background-color: #f8fafc;
}

.zone-name {
    font-weight: 500;
    color: #374151;
    flex: 1;
}

.zone-price {
    font-weight: 600;
    color: #059669;
    margin-left: 16px;
    white-space: nowrap;
}

/* Indicador de carregar mais */
.delivery-zone-load-more {
    padding: 16px 20px;
    background: #f8fafc;
    border-top: 1px solid #f3f4f6;
    cursor: default;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.load-more-content {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

.load-more-content i {
    font-size: 16px;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-4px); }
    60% { transform: translateY(-2px); }
}

/* Estados especiais */
.delivery-zone-no-results,
.delivery-zone-error,
.delivery-zone-loading {
    background: #f9fafb;
    padding: 20px;
    text-align: center;
    cursor: default !important;
    border-bottom: none;
    min-height: auto;
}

.delivery-zone-no-results:hover,
.delivery-zone-error:hover,
.delivery-zone-loading:hover {
    background: #f9fafb !important;
}

.delivery-zone-no-results strong {
    color: #374151;
    font-weight: 600;
}

.delivery-zone-no-results small {
    color: #9ca3af;
    display: block;
    margin-top: 4px;
    font-size: 13px;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .delivery-zone-option {
        min-height: 64px;
        padding: 18px 16px;
        font-size: 16px;
    }
    
    .zone-price {
        margin-left: 12px;
    }
}

/* Custom scrollbar */
[data-delivery-zone-autocomplete-target="results"]::-webkit-scrollbar {
    width: 6px;
}

[data-delivery-zone-autocomplete-target="results"]::-webkit-scrollbar-track {
    background: #f8fafc;
}

[data-delivery-zone-autocomplete-target="results"]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

[data-delivery-zone-autocomplete-target="results"]::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
