/* EU Regional Navigation - SPA vs Global Differentiation */

/* Indicators for SPA (In-Page) Links */
.nav-spa-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-spa-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    /* Blue indicator for SPA */
    transition: width 0.3s ease;
}

.nav-spa-link:hover::after {
    width: 100%;
}

/* Indicators for Global (Cross-Page) Links */
.nav-global-link {
    font-weight: 700 !important;
    color: #1e3a8a !important;
}

.nav-global-link:hover {
    color: #1d4ed8 !important;
    text-decoration: underline;
}

/* Special indicator for the active country page */
.nav-global-link.active-country {
    background: #eff6ff;
    border-radius: 4px;
    padding-left: 5px;
    border-left: 3px solid #1d4ed8;
}

/* Mega Menu Categorization Styling */
.mega-col h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.mega-col h4 i {
    width: 16px;
    text-align: center;
}

/* Mobile Menu Refinements */
.mobile-menu ul li {
    transition: background 0.2s;
}

.mobile-menu ul li:hover {
    background: #f8fafc;
}

.mobile-nav-cat {
    background: #f1f5f9;
    padding: 8px 12px;
    margin: 5px 0;
    border-radius: 4px;
}

/* Floating CTA Overlay Reset for Mobile */
@media (max-width: 767px) {
    .floating-cta-wrap {
        bottom: 70px !important;
        /* Ensure it doesn't overlap mobile nav if any */
    }
}