.tiendas-buscador {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.tiendas-buscador h2 {
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
    display: inline-block;
}
.filtros {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}
.filtro-group {
    display: flex;
    flex-direction: column;
}
.filtro-group label {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}
.filtro-group select, .filtro-group input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}
.btn-primary {
    background: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}
.btn-primary:hover {
    background: #005a87;
}
.btn-small {
    background: #6c757d;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
}
.resultados-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}
.resultados-count {
    font-size: 14px;
    color: #666;
}
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 20px;
}
.result-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.result-card h3 {
    margin: 0 0 10px;
    color: #0073aa;
    font-size: 18px;
}
.tipo-badge {
    display: inline-block;
    background: #e8f4f8;
    color: #0073aa;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}
.info-row {
    margin: 8px 0;
    font-size: 14px;
}
.info-row strong {
    color: #555;
    min-width: 100px;
    display: inline-block;
}
.direccion-card {
    background: #f8f9fa;
    margin-top: 12px;
    padding: 12px;
    border-radius: 8px;
}
.direccion-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}
.direccion-location {
    display: inline-block;
    background: #e9ecef;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    color: #666;
}
.loading {
    text-align: center;
    padding: 60px;
}
.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.no-results {
    text-align: center;
    padding: 60px;
    background: #f8f9fa;
    border-radius: 12px;
    color: #666;
}
@media (max-width: 768px) {
    .filtros {
        grid-template-columns: 1fr;
    }
    .results-grid {
        grid-template-columns: 1fr;
    }
}