/**
 * ENNU Premium Navigation System
 * World-class, sophisticated header and navigation design
 * Inspired by Linear, Stripe, Notion - clean, minimal, refined
 * Version: 4.1.0
 */

/* ============================================
   CSS CUSTOM PROPERTIES - Design Tokens
   ============================================ */
:root {
    /* Timing */
    --ennu-transition-fast: 150ms;
    --ennu-transition-normal: 200ms;
    --ennu-transition-slow: 300ms;
    --ennu-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ennu-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing */
    --ennu-header-height: 64px;
    --ennu-header-padding: 0 24px;
    --ennu-nav-gap: 4px;

    /* Shadows - Subtle, sophisticated */
    --ennu-shadow-subtle: 0 1px 2px rgba(0, 0, 0, 0.04);
    --ennu-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --ennu-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --ennu-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --ennu-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    --ennu-shadow-header: 0 1px 0 rgba(0, 0, 0, 0.05);

    /* Border radius */
    --ennu-radius-sm: 6px;
    --ennu-radius-md: 8px;
    --ennu-radius-lg: 12px;
    --ennu-radius-full: 9999px;

    /* Typography */
    --ennu-font-sans: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
    --ennu-font-weight-normal: 450;
    --ennu-font-weight-medium: 500;
    --ennu-font-weight-semibold: 600;

    /* Colors - Neutral palette */
    --ennu-gray-50: #fafafa;
    --ennu-gray-100: #f4f4f5;
    --ennu-gray-200: #e4e4e7;
    --ennu-gray-300: #d4d4d8;
    --ennu-gray-400: #a1a1aa;
    --ennu-gray-500: #71717a;
    --ennu-gray-600: #52525b;
    --ennu-gray-700: #3f3f46;
    --ennu-gray-800: #27272a;
    --ennu-gray-900: #18181b;
}

/* ============================================
   HEADER WRAPPER - Premium Foundation
   ============================================ */
.ennu-panel-header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow var(--ennu-transition-normal) var(--ennu-ease-out);
}

.ennu-panel-header-wrapper.scrolled {
    box-shadow: var(--ennu-shadow-md);
}

/* Dark header variants */
.provider-panel-wrapper,
.practice-manager-panel-wrapper,
.front-desk-panel-wrapper,
.affiliates-panel-wrapper,
.aesthetics-provider-panel-wrapper,
.aesthetics-practice-manager-panel-wrapper {
    background: linear-gradient(180deg, var(--header-start, #1a1a2e) 0%, var(--header-end, #16213e) 100%);
    backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Light header variants */
.patient-portal-wrapper,
.aesthetics-patient-portal-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* ============================================
   HEADER STRUCTURE - Clean Layout
   ============================================ */
.ennu-panel-header {
    background: transparent;
    border: none;
}

.ennu-header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: var(--ennu-header-padding);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ennu-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--ennu-header-height);
    border-bottom: none;
    padding: 0;
}

.ennu-header-left,
.ennu-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ennu-header-right {
    gap: 8px;
}

/* ============================================
   BRANDING - Refined Logo Area
   ============================================ */
.ennu-branding {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ennu-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity var(--ennu-transition-fast) var(--ennu-ease-out);
}

.ennu-logo-link:hover {
    opacity: 0.85;
}

.ennu-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

/* Portal Badge - Elegant pill design */
.ennu-portal-badge,
.ennu-portal-badge-static,
.ennu-portal-badge-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: var(--ennu-font-weight-medium);
    letter-spacing: 0.01em;
    border-radius: var(--ennu-radius-full);
    transition: all var(--ennu-transition-fast) var(--ennu-ease-out);
    white-space: nowrap;
}

/* Dark header badge */
.provider-panel-wrapper .ennu-portal-badge,
.practice-manager-panel-wrapper .ennu-portal-badge,
.front-desk-panel-wrapper .ennu-portal-badge,
.affiliates-panel-wrapper .ennu-portal-badge,
.aesthetics-provider-panel-wrapper .ennu-portal-badge,
.aesthetics-practice-manager-panel-wrapper .ennu-portal-badge {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Light header badge */
.patient-portal-wrapper .ennu-portal-badge,
.aesthetics-patient-portal-wrapper .ennu-portal-badge {
    background: var(--ennu-gray-100);
    color: var(--ennu-gray-700);
    border: 1px solid var(--ennu-gray-200);
}

.ennu-portal-badge-button:hover {
    background: rgba(255, 255, 255, 0.18);
}

.ennu-portal-badge .badge-icon,
.ennu-portal-badge .switcher-arrow {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

/* ============================================
   NAVIGATION - Minimal & Refined
   ============================================ */
.ennu-header-nav {
    padding: 0;
    margin: 0 -8px;
}

.ennu-main-navigation {
    display: flex;
    align-items: center;
}

.ennu-nav-menu {
    display: flex;
    align-items: center;
    gap: var(--ennu-nav-gap);
    list-style: none;
    margin: 0;
    padding: 8px 0 12px;
}

.ennu-nav-item {
    position: relative;
    margin: 0;
    padding: 0;
}

/* Navigation Links - Subtle & Clean */
.ennu-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    font-family: var(--ennu-font-sans);
    font-size: 14px;
    font-weight: var(--ennu-font-weight-medium);
    letter-spacing: -0.006em;
    text-decoration: none;
    border-radius: var(--ennu-radius-sm);
    transition: all var(--ennu-transition-fast) var(--ennu-ease-out);
    cursor: pointer;
    border: none;
    background: transparent;
    white-space: nowrap;
}

/* Dark header nav links */
.provider-panel-wrapper .ennu-nav-link,
.practice-manager-panel-wrapper .ennu-nav-link,
.front-desk-panel-wrapper .ennu-nav-link,
.affiliates-panel-wrapper .ennu-nav-link,
.aesthetics-provider-panel-wrapper .ennu-nav-link,
.aesthetics-practice-manager-panel-wrapper .ennu-nav-link {
    color: rgba(255, 255, 255, 0.75);
}

.provider-panel-wrapper .ennu-nav-link:hover,
.practice-manager-panel-wrapper .ennu-nav-link:hover,
.front-desk-panel-wrapper .ennu-nav-link:hover,
.affiliates-panel-wrapper .ennu-nav-link:hover,
.aesthetics-provider-panel-wrapper .ennu-nav-link:hover,
.aesthetics-practice-manager-panel-wrapper .ennu-nav-link:hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.08);
}

/* Light header nav links */
.patient-portal-wrapper .ennu-nav-link,
.aesthetics-patient-portal-wrapper .ennu-nav-link {
    color: var(--ennu-gray-600);
}

.patient-portal-wrapper .ennu-nav-link:hover,
.aesthetics-patient-portal-wrapper .ennu-nav-link:hover {
    color: var(--ennu-gray-900);
    background: var(--ennu-gray-100);
}

/* Active/Current state */
.ennu-nav-item.current-menu-item .ennu-nav-link,
.ennu-nav-item.current-menu-ancestor .ennu-nav-link {
    color: rgba(255, 255, 255, 1);
}

.patient-portal-wrapper .ennu-nav-item.current-menu-item .ennu-nav-link,
.aesthetics-patient-portal-wrapper .ennu-nav-item.current-menu-item .ennu-nav-link {
    color: var(--ennu-gray-900);
    background: var(--ennu-gray-100);
}

/* Dropdown Icon */
.ennu-nav-link .dropdown-icon {
    width: 12px;
    height: 12px;
    opacity: 0.5;
    transition: transform var(--ennu-transition-fast) var(--ennu-ease-out);
}

.ennu-nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
    opacity: 0.8;
}

/* ============================================
   DROPDOWN MENUS - Elegant & Refined
   ============================================ */
.ennu-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 200px;
    background: #ffffff;
    border-radius: var(--ennu-radius-lg);
    box-shadow: var(--ennu-shadow-xl),
                0 0 0 1px rgba(0, 0, 0, 0.04);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--ennu-transition-normal) var(--ennu-ease-out);
    z-index: 1001;
    overflow: hidden;
}

.ennu-nav-item:hover .ennu-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-inner {
    padding: 6px;
}

/* Dropdown Items */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: var(--ennu-font-weight-normal);
    color: var(--ennu-gray-700);
    text-decoration: none;
    border-radius: var(--ennu-radius-sm);
    transition: all var(--ennu-transition-fast) var(--ennu-ease-out);
}

.dropdown-item:hover {
    background: var(--ennu-gray-50);
    color: var(--ennu-gray-900);
}

.dropdown-item .item-text {
    flex: 1;
}

.dropdown-item .item-icon {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}

/* Dropdown separator */
.dropdown-separator {
    height: 1px;
    background: var(--ennu-gray-100);
    margin: 6px 0;
}

/* ============================================
   USER PROFILE & ACTIONS - Minimal
   ============================================ */
.ennu-employee-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ennu-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: var(--ennu-radius-full);
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.ennu-user-name {
    font-size: 14px;
    font-weight: var(--ennu-font-weight-medium);
    color: rgba(255, 255, 255, 0.9);
}

.patient-portal-wrapper .ennu-user-name,
.aesthetics-patient-portal-wrapper .ennu-user-name {
    color: var(--ennu-gray-800);
}

/* Quick Action Buttons */
.ennu-quick-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ennu-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    border-radius: var(--ennu-radius-md);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all var(--ennu-transition-fast) var(--ennu-ease-out);
}

.ennu-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 1);
}

.patient-portal-wrapper .ennu-action-btn,
.aesthetics-patient-portal-wrapper .ennu-action-btn {
    color: var(--ennu-gray-500);
}

.patient-portal-wrapper .ennu-action-btn:hover,
.aesthetics-patient-portal-wrapper .ennu-action-btn:hover {
    background: var(--ennu-gray-100);
    color: var(--ennu-gray-900);
}

/* User Dropdown */
.ennu-user-dropdown {
    position: relative;
}

.ennu-user-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--ennu-radius-md);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all var(--ennu-transition-fast) var(--ennu-ease-out);
}

.ennu-user-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
}

/* ============================================
   MOBILE NAVIGATION - Touch Optimized
   ============================================ */

/* Hide mobile elements by default */
.ennu-mobile-nav-toggle {
    display: none;
}

.ennu-mobile-nav,
.ennu-mobile-nav-overlay {
    display: none;
    visibility: hidden;
    opacity: 0;
}

/* Mobile Breakpoint */
@media (max-width: 1024px) {
    :root {
        --ennu-header-height: 56px;
        --ennu-header-padding: 0 16px;
    }

    /* Hide desktop nav */
    .ennu-header-nav {
        display: none;
    }

    /* Show mobile toggle */
    .ennu-mobile-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        border-radius: var(--ennu-radius-md);
        color: rgba(255, 255, 255, 0.8);
        cursor: pointer;
        transition: all var(--ennu-transition-fast) var(--ennu-ease-out);
        -webkit-tap-highlight-color: transparent;
    }

    .ennu-mobile-nav-toggle:hover,
    .ennu-mobile-nav-toggle:active {
        background: rgba(255, 255, 255, 0.1);
    }

    .patient-portal-wrapper .ennu-mobile-nav-toggle,
    .aesthetics-patient-portal-wrapper .ennu-mobile-nav-toggle {
        color: var(--ennu-gray-600);
    }

    .patient-portal-wrapper .ennu-mobile-nav-toggle:hover,
    .aesthetics-patient-portal-wrapper .ennu-mobile-nav-toggle:hover {
        background: var(--ennu-gray-100);
    }

    .ennu-mobile-nav-toggle svg {
        width: 22px;
        height: 22px;
    }

    /* Hamburger to X animation */
    .ennu-mobile-nav-toggle .icon-menu,
    .ennu-mobile-nav-toggle .icon-close {
        transition: all var(--ennu-transition-fast) var(--ennu-ease-out);
    }

    .ennu-mobile-nav-toggle.active .icon-menu {
        opacity: 0;
        transform: rotate(45deg) scale(0.8);
    }

    .ennu-mobile-nav-toggle .icon-close {
        position: absolute;
        opacity: 0;
        transform: rotate(-45deg) scale(0.8);
    }

    .ennu-mobile-nav-toggle.active .icon-close {
        opacity: 1;
        transform: rotate(0) scale(1);
    }

    /* Mobile Overlay */
    .ennu-mobile-nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        z-index: 9998;
        transition: all var(--ennu-transition-normal) var(--ennu-ease-out);
        -webkit-tap-highlight-color: transparent;
    }

    .ennu-mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile Navigation Panel */
    .ennu-mobile-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, calc(100vw - 48px));
        height: 100%;
        height: 100dvh;
        background: #ffffff;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
        z-index: 9999;
        transform: translateX(100%);
        visibility: hidden;
        transition: all var(--ennu-transition-slow) var(--ennu-ease-out);
        overflow: hidden;
    }

    .ennu-mobile-nav.active {
        transform: translateX(0);
        visibility: visible;
    }

    /* Mobile Nav Header */
    .ennu-mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        border-bottom: 1px solid var(--ennu-gray-100);
        background: var(--ennu-gray-50);
        flex-shrink: 0;
    }

    .ennu-mobile-nav-title {
        font-size: 15px;
        font-weight: var(--ennu-font-weight-semibold);
        color: var(--ennu-gray-900);
        margin: 0;
        letter-spacing: -0.01em;
    }

    .ennu-mobile-nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: transparent;
        border: none;
        border-radius: var(--ennu-radius-md);
        color: var(--ennu-gray-500);
        cursor: pointer;
        transition: all var(--ennu-transition-fast) var(--ennu-ease-out);
        -webkit-tap-highlight-color: transparent;
    }

    .ennu-mobile-nav-close:hover,
    .ennu-mobile-nav-close:active {
        background: var(--ennu-gray-100);
        color: var(--ennu-gray-700);
    }

    .ennu-mobile-nav-close svg {
        width: 20px;
        height: 20px;
    }

    /* Mobile Nav Content */
    .ennu-mobile-nav-content {
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .ennu-mobile-nav .ennu-nav-menu {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
        margin: 0;
    }

    .ennu-mobile-nav .ennu-nav-item {
        margin: 0;
        padding: 0;
    }

    .ennu-mobile-nav .ennu-nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
        font-weight: var(--ennu-font-weight-medium);
        color: var(--ennu-gray-800);
        border-radius: 0;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;
    }

    .ennu-mobile-nav .ennu-nav-link:hover,
    .ennu-mobile-nav .ennu-nav-link:active {
        background: var(--ennu-gray-50);
        color: var(--ennu-gray-900);
    }

    .ennu-mobile-nav .ennu-nav-item.current-menu-item .ennu-nav-link {
        color: var(--ennu-gray-900);
        background: var(--ennu-gray-50);
        font-weight: var(--ennu-font-weight-semibold);
    }

    /* Mobile Dropdown */
    .ennu-mobile-nav .ennu-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border-radius: 0;
        background: var(--ennu-gray-50);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--ennu-transition-normal) var(--ennu-ease-out);
    }

    .ennu-mobile-nav .ennu-nav-item.expanded .ennu-dropdown-menu {
        max-height: 500px;
    }

    .ennu-mobile-nav .dropdown-inner {
        padding: 4px 0;
    }

    .ennu-mobile-nav .dropdown-item {
        padding: 12px 20px 12px 36px;
        font-size: 14px;
        color: var(--ennu-gray-600);
        border-radius: 0;
    }

    .ennu-mobile-nav .dropdown-item:hover,
    .ennu-mobile-nav .dropdown-item:active {
        background: var(--ennu-gray-100);
        color: var(--ennu-gray-900);
    }

    /* Mobile dropdown arrow rotation */
    .ennu-mobile-nav .ennu-nav-link .dropdown-icon {
        transition: transform var(--ennu-transition-fast) var(--ennu-ease-out);
    }

    .ennu-mobile-nav .ennu-nav-item.expanded .ennu-nav-link .dropdown-icon {
        transform: rotate(180deg);
    }

    /* Hide elements on mobile */
    .ennu-employee-profile .profile-details,
    .ennu-quick-actions {
        display: none;
    }

    .ennu-portal-badge .badge-text {
        display: none;
    }

    .ennu-logo {
        height: 28px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    :root {
        --ennu-header-height: 52px;
        --ennu-header-padding: 0 12px;
    }

    .ennu-logo {
        height: 24px;
    }

    .ennu-mobile-nav {
        width: 100%;
        max-width: none;
    }

    .ennu-mobile-nav .ennu-nav-link {
        padding: 16px 16px;
    }

    .ennu-mobile-nav .dropdown-item {
        padding: 14px 16px 14px 32px;
    }
}

/* ============================================
   PORTAL SWITCHER - Refined Dropdown
   ============================================ */
.ennu-portal-switcher {
    position: relative;
}

.ennu-portal-switcher-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: #ffffff;
    border-radius: var(--ennu-radius-lg);
    box-shadow: var(--ennu-shadow-xl),
                0 0 0 1px rgba(0, 0, 0, 0.04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(0.96);
    transform-origin: top left;
    transition: all var(--ennu-transition-normal) var(--ennu-ease-out);
    z-index: 1002;
    overflow: hidden;
}

.ennu-portal-switcher.active .ennu-portal-switcher-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.switcher-menu-inner {
    padding: 6px;
}

.switcher-menu-header {
    padding: 8px 12px;
    border-bottom: 1px solid var(--ennu-gray-100);
    margin-bottom: 4px;
}

.switcher-title {
    font-size: 11px;
    font-weight: var(--ennu-font-weight-semibold);
    color: var(--ennu-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.switcher-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: var(--ennu-font-weight-medium);
    color: var(--ennu-gray-700);
    text-decoration: none;
    border-radius: var(--ennu-radius-sm);
    transition: all var(--ennu-transition-fast) var(--ennu-ease-out);
}

.switcher-item:hover {
    background: var(--ennu-gray-50);
    color: var(--ennu-gray-900);
}

.switcher-icon {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

/* ============================================
   ANIMATIONS & MICRO-INTERACTIONS
   ============================================ */

/* Subtle hover lift effect */
.ennu-nav-link:active {
    transform: scale(0.98);
}

/* Focus states for accessibility */
.ennu-nav-link:focus-visible,
.ennu-action-btn:focus-visible,
.ennu-mobile-nav-toggle:focus-visible,
.ennu-mobile-nav-close:focus-visible,
.dropdown-item:focus-visible,
.switcher-item:focus-visible {
    outline: 2px solid rgba(59, 130, 246, 0.5);
    outline-offset: 2px;
}

/* Smooth scroll behavior */
.ennu-mobile-nav-content {
    scroll-behavior: smooth;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .ennu-panel-header-wrapper {
        position: relative;
        box-shadow: none;
        border-bottom: 1px solid #000;
    }

    .ennu-mobile-nav-toggle,
    .ennu-mobile-nav,
    .ennu-mobile-nav-overlay,
    .ennu-dropdown-menu,
    .ennu-portal-switcher-menu {
        display: none !important;
    }
}
