/**
 * 🎨 Estilos para el Widget Dokan Ciudades Filtro Inteligente
 * Versión: 1.0.0
 */

/* =============================================
   1. CONTENEDOR PRINCIPAL DEL WIDGET
   ============================================= */
.dokan-ciudades-filtro-contenedor {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dokan-ciudades-filtro-contenedor:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border-color: #cbd5e0;
}

/* =============================================
   2. TÍTULO DE LA SECCIÓN
   ============================================= */
.dokan-ciudades-filtro-titulo {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    padding: 16px 20px;
    margin: 0;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px 8px 0 0;
}

/* =============================================
   3. CONTENIDO DEL FILTRO
   ============================================= */
.dokan-ciudades-filtro-contenido {
    padding: 12px 20px;
}

/* =============================================
   4. ELEMENTOS INDIVIDUALES DEL FILTRO
   ============================================= */
.dokan-ciudades-filtro-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f7fafc;
}

.dokan-ciudades-filtro-item:last-child {
    border-bottom: none;
}

.dokan-ciudades-filtro-item:hover {
    color: #2d3748;
    background-color: #f7fafc;
    margin: 0 -8px;
    padding: 10px 8px;
    border-radius: 6px;
    transform: translateX(4px);
}

.dokan-ciudades-filtro-item[data-test="hola-mundo"] {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #f59e0b;
    border-radius: 6px;
    padding: 12px;
    margin: 8px 0;
    font-weight: 600;
    color: #92400e;
}

.dokan-ciudades-filtro-item[data-test="hola-mundo"]:hover {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    transform: scale(1.02);
}

/* =============================================
   5. CONTADOR DE PRODUCTOS
   ============================================= */
.dokan-ciudades-filtro-conteo {
    background: #edf2f7;
    color: #718096;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
    transition: all 0.2s ease;
}

.dokan-ciudades-filtro-item:hover .dokan-ciudades-filtro-conteo {
    background: #667eea;
    color: white;
}

/* =============================================
   6. ESTILOS RESPONSIVOS
   ============================================= */
@media (max-width: 768px) {
    .dokan-ciudades-filtro-contenedor {
        margin-bottom: 16px;
        border-radius: 6px;
    }
    
    .dokan-ciudades-filtro-titulo {
        font-size: 16px;
        padding: 14px 16px;
    }
    
    .dokan-ciudades-filtro-contenido {
        padding: 10px 16px;
    }
    
    .dokan-ciudades-filtro-item {
        font-size: 13px;
        padding: 8px 0;
    }
}

/* =============================================
   7. ESTADOS INTERACTIVOS
   ============================================= */
.dokan-ciudades-filtro-item:active {
    transform: translateX(2px) scale(0.98);
}

/* =============================================
   8. ANIMACIONES
   ============================================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dokan-ciudades-filtro-contenedor {
    animation: fadeIn 0.5s ease-out;
}

/* =============================================
   9. INDICADOR VISUAL DE HOVER
   ============================================= */
.dokan-ciudades-filtro-item::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: #667eea;
    border-radius: 0 2px 2px 0;
    transition: height 0.2s ease;
}

.dokan-ciudades-filtro-item:hover::before {
    height: 20px;
}

/* =============================================
   10. MEJORAS DE ACCESIBILIDAD
   ============================================= */
.dokan-ciudades-filtro-item:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .dokan-ciudades-filtro-contenedor {
        border: 2px solid #000;
    }
    
    .dokan-ciudades-filtro-item:hover {
        background-color: #ffff00;
        color: #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .dokan-ciudades-filtro-contenedor,
    .dokan-ciudades-filtro-item,
    .dokan-ciudades-filtro-conteo {
        transition: none;
        animation: none;
    }
}


/* =============================================
   11. ESTILOS PARA DATOS DINÁMICOS
   ============================================= */

/* Resumen estadístico */
.dokan-ciudades-filtro-contenido > div:last-child {
    background: #f8fafc;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 11px;
    color: #475569;
    line-height: 1.4;
}

/* Indicador de ciudad activa */
.dokan-ciudades-filtro-item[data-conteo="0"] {
    opacity: 0.5;
    cursor: not-allowed;
}

.dokan-ciudades-filtro-item[data-conteo="0"]:hover {
    background-color: transparent;
    transform: none;
    margin: 0;
    padding: 10px 0;
}

/* Badge para ciudades populares */
.dokan-ciudades-filtro-item[data-conteo="100"] .dokan-ciudades-filtro-conteo,
.dokan-ciudades-filtro-item[data-conteo^="5"] .dokan-ciudades-filtro-conteo,
.dokan-ciudades-filtro-item[data-conteo^="6"] .dokan-ciudades-filtro-conteo,
.dokan-ciudades-filtro-item[data-conteo^="7"] .dokan-ciudades-filtro-conteo,
.dokan-ciudades-filtro-item[data-conteo^="8"] .dokan-ciudades-filtro-conteo,
.dokan-ciudades-filtro-item[data-conteo^="9"] .dokan-ciudades-filtro-conteo {
    background: #dc2626;
    color: white;
    font-weight: bold;
}

/* Animación de carga para datos dinámicos */
.dokan-ciudades-cargando {
    opacity: 0.7;
    pointer-events: none;
}

.dokan-ciudades-cargando::after {
    content: " ⟳";
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-left: 5px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}