/* ========================================
   BREADCRUMBS - Navegación de migas
   Archivo: breadcrumbs.css
   ======================================== */

/* Sección breadcrumbs */
.ns-breadcrumbs {
    padding: 1.5rem 0 1rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(156, 130, 99, 0.1);
}

.ns-breadcrumbs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Si está dentro de Elementor container */
.elementor-container .ns-breadcrumbs-container,
.ns-epic-container .ns-breadcrumbs-container {
    padding: 0;
}

/* Navegación */
.ns-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.9rem;
    color: #666;
}

.ns-breadcrumb-nav a {
    color: #9c8263;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.ns-breadcrumb-nav a:hover {
    color: #8a6f56;
    text-decoration: underline;
}

.ns-breadcrumb-nav span {
    color: #666;
    font-weight: 600;
}

/* Separador */
.ns-breadcrumb-separator {
    color: #ccc;
    margin: 0 0.25rem;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .ns-breadcrumbs {
        padding: 1rem 0 0.75rem;
    }
    
    .ns-breadcrumbs-container {
        padding: 0 1rem;
    }
    
    .ns-breadcrumb-nav {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .ns-breadcrumb-nav {
        font-size: 0.8rem;
        gap: 0.375rem;
    }
}

/* Estados de enfoque para accesibilidad */
.ns-breadcrumb-nav a:focus {
    outline: 2px solid #9c8263;
    outline-offset: 2px;
    border-radius: 2px;
}