/**
 * New Landing Page Header Styles
 * Based on Fastooo Design
 * Pixel-Perfect Implementation
 */

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    /* Colors from screenshot */
    --header-bg: #FFFFFF;
    --header-border: #EBEBEB;
    --nav-text: #333333;
    --nav-text-hover: #1E1E1E;
    --nav-active-indicator: #D4A853;
    --login-btn-bg: #D96319;
    --login-btn-hover: #D55A30;
    --login-btn-text: #FFFFFF;
    --lang-btn-border: #D1D1D1;
    --lang-btn-text: #555555;
    --lang-btn-hover: #E96B3F;

    /* Typography */
    --font-primary-ar: 'Cairo', sans-serif;
    --font-primary-en: 'Cairo', sans-serif;

    /* Spacing */
    --header-height: 72px;
    --header-padding-x: 24px;
    --nav-gap: 40px;
    --container-max-width: 1320px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   HEADER BASE STYLES
   ======================================== */
.header-new {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    /* height: var(--header-height); */
    padding: 20px 0;
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
    z-index: 1000;
    transition: box-shadow var(--transition-normal), background var(--transition-normal);
}

.header-new.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-new__container {
    max-width: var(--container-max-width);
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--header-padding-x);
}

.header-new__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 30px;
}

/* ========================================
   LOGO STYLES
   ======================================== */
.header-new__logo {
    flex-shrink: 0;
}

.header-new__logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.header-new__logo-link:hover {
    opacity: 0.85;
}

.header-new__logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* ========================================
   NAVIGATION STYLES
   ======================================== */

@media (min-width: 875px) {
    .header-new__nav {
        display: none !important;
    }
}

.header-new__nav {
    flex: 1;
    display: flex;
    justify-content: center;
    z-index: 100000 !important;
}

.header-new__nav-list {
    display: flex;
    align-items: center;
    gap: var(--nav-gap);
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-new__nav-item {
    position: relative;
}

.header-new__nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-family: var(--font-primary-ar);
    font-size: 15px;
    font-weight: 500;
    color: var(--nav-text);
    text-decoration: none;
    padding: 8px 0;
    letter-spacing: 0.02em;
    transition: color var(--transition-fast);
}

[dir="ltr"] .header-new__nav-link {
    font-family: var(--font-primary-en);
}

.header-new__nav-link:hover {
    color: var(--login-btn-hover);
}

/* Active Indicator */
.header-new__nav-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--login-btn-hover);
    border-radius: 2px;
    transition: width var(--transition-smooth);
}

.header-new__nav-link:hover .header-new__nav-indicator,
.header-new__nav-link.active .header-new__nav-indicator {
    width: 100%;
}

.header-new__nav-link.active {
    color: var(--login-btn-hover);
    font-weight: 600;
}

/* ========================================
   ACTIONS SECTION
   ======================================== */
.header-new__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* ========================================
   LANGUAGE SWITCHER
   ======================================== */
.header-new__lang-wrapper {
    position: relative;
}

.header-new__lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 36px;
    padding: 0 12px;
    color: var(--login-btn-bg);
    background: transparent;
    border: 1.5px solid var(--lang-btn-hover);
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.header-new__lang-btn:hover {
    background: var(--login-btn-bg);
    color: var(--login-btn-text);
}

.header-new__lang-code {
    font-family: var(--font-primary-en);
    font-size: 13px;
    font-weight: 500;
    color: var(--login-btn-bg);
    text-transform: uppercase;
}

.header-new__lang-btn:hover .header-new__lang-code {
    color: var(--login-btn-text);
}

/* Language Dropdown - Premium Glassmorphism */
.header-new__lang-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-15px) scale(0.95);
    min-width: 120px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(217, 99, 25, 0.15);
    border-radius: 16px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 16px rgba(217, 99, 25, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    list-style: none;
    margin: 0;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 100;
    overflow: hidden;
}

/* Dropdown Arrow */
.header-new__lang-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(217, 99, 25, 0.15);
    border-left: 1px solid rgba(217, 99, 25, 0.15);
    border-radius: 3px 0 0 0;
}

[dir="rtl"] .header-new__lang-dropdown {
    left: auto;
    right: 50%;
    transform: translateX(50%) translateY(-15px) scale(0.95);
}

.header-new__lang-wrapper.open .header-new__lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

[dir="rtl"] .header-new__lang-wrapper.open .header-new__lang-dropdown {
    transform: translateX(50%) translateY(0) scale(1);
}

.header-new__lang-item {
    padding: 0;
    margin: 0;
}

.header-new__lang-item:not(:last-child) {
    margin-bottom: 4px;
}

.header-new__lang-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    font-family: var(--font-primary-en);
    font-size: 14px;
    font-weight: 600;
    color: #1A2744;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover gradient background */
.header-new__lang-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #D96319 0%, #73340D 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.header-new__lang-link:hover {
    color: #FFFFFF !important;
    transform: translateX(0);
}

.header-new__lang-link:hover::before {
    opacity: 1;
}

/* Active state indicator */
.header-new__lang-item.active .header-new__lang-link {
    background: rgba(217, 99, 25, 0.08);
    color: #D96319;
}

.header-new__lang-item.active .header-new__lang-link:hover {
    color: #FFFFFF !important;
}

.header-new__lang-item.active .header-new__lang-link::after {
    content: '✓';
    font-size: 12px;
    margin-left: 6px;
}

[dir="rtl"] .header-new__lang-item.active .header-new__lang-link::after {
    margin-left: 0;
    margin-right: 6px;
}

/* ========================================
   LOGIN BUTTON
   ======================================== */
.header-new__login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 20px;
    background: var(--login-btn-bg);
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary-ar);
    font-size: 14px;
    font-weight: 500;
    color: var(--login-btn-text);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 8px rgba(233, 107, 63, 0.25);
}

[dir="ltr"] .header-new__login-btn {
    font-family: var(--font-primary-en);
    flex-direction: row-reverse;
}

.header-new__login-btn:hover {
    background: var(--login-btn-hover);
    color: var(--login-btn-text);
    box-shadow: 0 4px 16px rgba(233, 107, 63, 0.35);
    transform: translateY(-1px);
}

.header-new__login-btn:active {
    transform: translateY(0);
}

.header-new__login-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.header-new__login-text {
    white-space: nowrap;
}

/* ========================================
   MOBILE TOGGLE BUTTON
   ======================================== */
.header-new__mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.header-new__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--nav-text);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.header-new__mobile-toggle.active .header-new__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header-new__mobile-toggle.active .header-new__toggle-line:nth-child(2) {
    opacity: 0;
}

.header-new__mobile-toggle.active .header-new__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   MOBILE OVERLAY
   ======================================== */
.header-new__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
}

.header-new__overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --nav-gap: 28px;
        --header-height: 68px;
    }

    .header-new__nav-link {
        font-size: 14px;
    }

    .header-new__login-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Mobile Navigation */
@media (max-width: 875px) {
    .header-new__mobile-toggle {
        display: flex;
        order: -1;
        z-index: 1002;
    }

    [dir="rtl"] .header-new__mobile-toggle {
        order: 3;
    }

    /* Premium Mobile Sidebar */
    .header-new__nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
        padding: 0;
        flex-direction: column;
        justify-content: flex-start;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
        overflow-y: auto;
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
        z-index: 10002;
        opacity: 1;
        visibility: visible;
    }

    [dir="rtl"] .header-new__nav {
        right: auto;
        left: 0;
        transform: translateX(-100%);
        box-shadow: 20px 0 60px rgba(0, 0, 0, 0.15);
    }

    .header-new__nav.active {
        transform: translateX(0);
    }

    [dir="rtl"] .header-new__nav.active {
        transform: translateX(0);
    }

    /* Sidebar Header */
    /* .header-new__nav::before {
        content: '';
        display: block;
        width: 100%;
        height: 120px;
        background: linear-gradient(135deg, #D96319 0%, #73340D 100%);
        position: relative;
    } */

    /* Nav List Container */
    .header-new__nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        padding: 32px 24px;
    }

    .header-new__nav-item {
        width: 100%;
        border-bottom: none;
        margin-bottom: 8px;
    }

    .header-new__nav-item:last-child {
        margin-bottom: 0;
    }

    /* Premium Nav Links */
    .header-new__nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 18px 20px;
        font-size: 17px;
        font-weight: 600;
        color: #1A2744;
        background: #FFFFFF;
        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        position: relative;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .header-new__nav-link::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: transparent;
        border-radius: 0 4px 4px 0;
        transition: background 0.3s ease;
    }

    [dir="rtl"] .header-new__nav-link::after {
        left: auto;
        right: 0;
        border-radius: 4px 0 0 4px;
    }

    .header-new__nav-link:hover {
        color: #D96319;
        background: #FFF7ED;
        transform: translateX(-4px);
        box-shadow: 0 4px 16px rgba(217, 99, 25, 0.12);
    }

    [dir="rtl"] .header-new__nav-link:hover {
        transform: translateX(4px);
    }

    .header-new__nav-link:hover::after {
        background: linear-gradient(180deg, #D96319 0%, #73340D 100%);
    }

    .header-new__nav-link.active {
        color: #D96319;
        background: linear-gradient(135deg, rgba(217, 99, 25, 0.08) 0%, rgba(217, 99, 25, 0.03) 100%);
    }

    .header-new__nav-link.active::after {
        background: linear-gradient(180deg, #D96319 0%, #73340D 100%);
    }

    /* Hide default indicator on mobile */
    .header-new__nav-indicator {
        display: none;
    }

    /* Arrow Icon for Links */
    .header-new__nav-link::before {
        content: '';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: translateY(-50%) rotate(-45deg);
        opacity: 0.5;
        transition: all 0.3s ease;
    }

    [dir="rtl"] .header-new__nav-link::before {
        right: auto;
        left: 20px;
        transform: translateY(-50%) rotate(135deg);
    }

    .header-new__nav-link:hover::before {
        opacity: 1;
        right: 16px;
    }

    [dir="rtl"] .header-new__nav-link:hover::before {
        right: auto;
        left: 16px;
    }

    .header-new__actions {
        gap: 10px;
    }

    .header-new__login-text {
        display: none;
    }

    .header-new__login-btn {
        width: 40px;
        height: 40px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .header-new__login-icon {
        width: 20px;
        height: 20px;
    }

    /* Sidebar Header */
    .header-new__sidebar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 24px;
        background: linear-gradient(135deg, #D96319 0%, #73340D 100%);
        min-height: 100px;
    }

    .header-new__sidebar-logo {
        height: 40px;
        width: auto;
        filter: brightness(0) invert(1);
    }

    .header-new__sidebar-close {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.15);
        border: none;
        border-radius: 12px;
        color: #FFFFFF;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .header-new__sidebar-close:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: rotate(90deg);
    }

    /* Nav Icons */
    .header-new__nav-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, rgba(217, 99, 25, 0.1) 0%, rgba(217, 99, 25, 0.05) 100%);
        border-radius: 12px;
        margin-right: 16px;
        color: #D96319;
        transition: all 0.3s ease;
    }

    [dir="rtl"] .header-new__nav-icon {
        margin-right: 0;
        margin-left: 16px;
    }

    .header-new__nav-link:hover .header-new__nav-icon {
        background: linear-gradient(135deg, #D96319 0%, #73340D 100%);
        color: #FFFFFF;
    }

    .header-new__nav-link.active .header-new__nav-icon {
        background: linear-gradient(135deg, #D96319 0%, #73340D 100%);
        color: #FFFFFF;
    }

    /* Hide arrow pseudo-element since we have icons */
    .header-new__nav-link::before {
        display: none;
    }

    /* Sidebar Actions - Login & Lang */
    .header-new__sidebar-actions {
        padding: 0 24px;
        margin-top: 24px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    /* Sidebar Login Button */
    .header-new__sidebar-login {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 16px 20px;
        background: linear-gradient(135deg, #D96319 0%, #73340D 100%);
        border-radius: 16px;
        color: #FFFFFF;
        font-family: 'Cairo', sans-serif;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(217, 99, 25, 0.3);
        transition: all 0.3s ease;
        justify-content: center;
        gap: 12px;
    }

    .header-new__sidebar-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(217, 99, 25, 0.4);
        color: #FFFFFF;
    }

    .header-new__sidebar-login-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Sidebar Language Switcher */
    .header-new__sidebar-lang {
        display: flex;
        gap: 12px;
    }

    .header-new__sidebar-lang-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px;
        background: #FFFFFF;
        border: 1px solid rgba(226, 232, 240, 0.8);
        border-radius: 16px;
        color: #1A2744;
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .header-new__sidebar-lang-btn:hover {
        background: #F8FAFC;
        border-color: #D96319;
        color: #D96319;
        transform: translateY(-2px);
    }

    .header-new__sidebar-lang-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #D96319;
    }

    /* Sidebar Footer */
    .header-new__sidebar-footer {
        margin-top: auto;
        padding: 24px;
        border-top: 1px solid rgba(226, 232, 240, 0.8);
        text-align: center;
    }

    .header-new__sidebar-copyright {
        font-family: 'Cairo', sans-serif;
        font-size: 13px;
        color: #94A3B8;
        margin: 0;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    :root {
        --header-height: 64px;
        --header-padding-x: 16px;
    }

    .header-new__logo-img {
        height: 40px;
    }

    .header-new__lang-btn {
        min-width: 38px;
        height: 34px;
        padding: 0 10px;
    }

    .header-new__lang-code {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .header-new__actions {
        display: none;
    }
}

/* ========================================
   ANIMATION KEYFRAMES
   ======================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

/* Initial Animation */
.header-new {
    animation: fadeInDown 0.6s ease forwards;
}

/* ========================================
   USER MENU STYLES (DESKTOP)
   ======================================== */
.header-new__user-menu {
    position: relative;
}

.header-new__user-avatar {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-new__user-img,
.header-new__user-img-placeholder {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ef7822;
    transition: all 0.3s;
}

.header-new__user-img-placeholder {
    background: linear-gradient(135deg, #ef7822, #f97316);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.header-new__user-avatar:hover .header-new__user-img,
.header-new__user-avatar:hover .header-new__user-img-placeholder {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(239, 120, 34, 0.3);
}

/* User Dropdown */
.header-new__user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 16px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

html[dir="rtl"] .header-new__user-dropdown {
    left: 0;
    right: auto;
}

.header-new__user-dropdown.active {
    opacity: 1;
    visibility: visible;
}

.header-new__user-info {
    padding: 8px 0;
}

.header-new__user-name {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #0f172a;
    margin-bottom: 4px;
}

.header-new__user-email {
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    color: #64748b;
}

.header-new__dropdown-divider {
    margin: 12px 0;
    border: none;
    border-top: 1px solid #f1f5f9;
}

.header-new__dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #334155;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    background: transparent;
    width: 100%;
    cursor: pointer;
}

.header-new__dropdown-link:hover {
    background: #f8fafc;
    color: #ef7822;
}

.header-new__dropdown-link i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.header-new__dropdown-link--logout {
    color: #dc2626;
}

.header-new__dropdown-link--logout:hover {
    background: #fee2e2;
    color: #dc2626;
}

/* ========================================
   SIDEBAR USER PROFILE (MOBILE)
   ======================================== */
.header-new__sidebar-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 16px;
}

.header-new__sidebar-avatar,
.header-new__sidebar-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ef7822;
}

.header-new__sidebar-avatar-placeholder {
    background: linear-gradient(135deg, #ef7822, #f97316);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.header-new__sidebar-user-info {
    flex: 1;
}

.header-new__sidebar-user-name {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #0f172a;
    margin-bottom: 4px;
}

.header-new__sidebar-user-email {
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    color: #64748b;
}

.header-new__sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: #334155;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s;
    margin-bottom: 8px;
    border: none;
    background: transparent;
    width: 100%;
    cursor: pointer;
}

.header-new__sidebar-link:hover {
    background: #f8fafc;
    color: #ef7822;
}

.header-new__sidebar-link i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.header-new__sidebar-link--logout {
    color: #dc2626;
}

.header-new__sidebar-link--logout:hover {
    background: #fee2e2;
}