/* ===================================================== */
/* 🎨 ESTILOS ESPECIALES PARA ENLACES DEL HEADER        */
/* Fe y Vida + Tienda - Jerarquía Visual Mejorada       */
/* ===================================================== */

/* ==============================
   🔍 BÚSQUEDA AVANZADA
   Objetivo: herramienta, funcionalidad
   Estilo: elegante, botón azul claro
============================== */

/* Seleccionar el enlace "Búsqueda Avanzada" específicamente */
.ei-nav-menu li:nth-child(5) a {
    position: relative;
    color: #ff2f2f!important;
    font-weight: 700 !important; /* Más peso para destacar */
}

.ei-nav-menu li:nth-child(5) a:hover {
    color: #fff !important;
    background: rgba(255, 109, 109, 0.85);
    padding: 8px 12px !important;
    border-radius: 6px;
    text-shadow: none;
    box-shadow: 0 2px 8px rgba(122, 108, 255, 0.3);
}

/* ==============================
   🕊 FE Y VIDA
   Objetivo: espiritual, humano, editorial
   Estilo: elegante, botón dorado claro
============================== */

/* Seleccionar el enlace "Fe y Vida" específicamente */
.ei-nav-menu li:nth-child(6) a {
    position: relative; /* Para que ::after funcione */
    color: #F7C948 !important; /* Dorado claro suave */
    font-weight: 700 !important; /* Más peso para destacar */
}

.ei-nav-menu li:nth-child(6) a:hover {
    color: #fff !important;
    background: rgba(212, 160, 23, 0.85) !important; /* Dorado intenso con transparencia */
    padding: 8px 12px !important;
    border-radius: 6px;
    text-shadow: none;
    box-shadow: 0 2px 8px rgba(212, 160, 23, 0.3);
}

.ei-nav-menu li:nth-child(6) a:active {
    background: rgba(212, 160, 23, 0.85) !important;
    color: #fff !important;
}


/* ==============================
   🛒 TIENDA
   Objetivo: conversión
   Estilo: acción, valor, puede parecer botón
============================== */

/* Seleccionar el enlace "Tienda" específicamente */
.ei-nav-menu li:nth-child(7) a {
    position: relative; /* Para que ::before funcione si se activa */
    color: #7FD3A8 !important; /* Verde sobrio elegante */
    font-weight: 700 !important; /* Más peso para destacar */
}

.ei-nav-menu li:nth-child(7) a:hover {
    color: #fff !important;
    background: rgba(46, 139, 87, 0.85); /* Fondo sólido en hover */
    padding: 8px 12px !important;
    border-radius: 6px;
    text-shadow: none;
    box-shadow: 0 2px 8px rgba(46, 139, 87, 0.3);
}

/* ==============================
   📱 RESPONSIVE
============================== */

/* En móvil, mantener los estilos pero ajustar el hover */
@media (max-width: 992px) {
    .ei-nav-menu li:nth-child(5) a:hover,
    .ei-nav-menu li:nth-child(6) a:hover,
    .ei-nav-menu li:nth-child(7) a:hover {
        padding: 12px 16px !important;
    }
    .ei-nav-menu li:nth-child(6) a {
        margin-left: 0px !important;
    }
}

/* ==============================
   ✨ BADGES OPCIONALES (comentado por defecto)
============================== */

/* Badge sutil para "Fe y Vida" (opcional - comentado) */
/*
.ei-nav-menu li:nth-child(6) a::before {
    content: "Nuevo";
    position: absolute;
    top: -8px;
    right: -8px;
    background: #d9a028;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
*/

/* Badge sutil para "Tienda" (opcional - comentado por defecto) */
/*
.ei-nav-menu li:nth-child(7) a::before {
    content: "Nuevo";
    position: absolute;
    top: -8px;
    right: -8px;
    background: #d9a028;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
*/
