/* FAIR GROUP - Header Styles */
/* Глобальные стили для шапки сайта на всех страницах */

/* CSS Variables */
:root {
    --primary-color: #F26A1B;
    --primary-dark: #E55A0B;
    --primary-light: #FF8A4C;
    --black: #000000;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-medium: #666666;
    --gray-dark: #333333;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --border-radius: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
    --header-height: 70px;
}

/* Настройки для мобильных устройств */
@media (max-width: 768px) {
    :root {
        --header-height: 56px;
    }
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0 !important;
    padding: 0 !important;
}

/* Body - отступ для фиксированной шапки */
body {
    margin: 0 !important;
    margin-top: 0 !important;
    padding-top: var(--header-height) !important;
    padding-left: 0;
    padding-right: 0;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0 !important;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(242, 106, 27, 0.1);
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
}

.header.container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Гарантируем, что header находится в самом верху */
.container-fluid.header {
    padding: 0 !important;
    margin: 0 !important;
}

header.header {
    top: 0 !important;
    margin-top: 0 !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--black);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0.75rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

/* Увеличенная ширина header для администратора */
.header.admin-header .header-nav {
    max-width: 1800px;
    padding: 0.75rem 2rem;
    gap: 16px;
}

.header.admin-header .header-right {
    gap: 12px;
    flex-wrap: nowrap;
}

.header.admin-header .header-left {
    gap: 40px;
}

/* Дополнительные стили для администратора на больших экранах */
@media (min-width: 1200px) {
    .header.admin-header .header-nav {
        max-width: 1920px;
        padding: 0.75rem 2.5rem;
        gap: 18px;
    }
    
    .header.admin-header .header-left {
        gap: 48px;
    }
    
    .header.admin-header .header-right {
        gap: 14px;
    }
}

/* Максимальная ширина для очень больших экранов */
@media (min-width: 1600px) {
    .header.admin-header .header-nav {
        max-width: 95%;
        padding: 0.75rem 3rem;
        gap: 20px;
    }
    
    .header.admin-header .header-right {
        gap: 16px;
    }
}

.header-left {
    display: flex;
    align-items: center;
    gap: 48px;
}

.header-left ul {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-left ul li {
    display: inline-block;
    white-space: nowrap;
}

.header-left ul li a {
    display: inline-block;
    white-space: nowrap;
}

.header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
    flex-wrap: nowrap;
    position: relative;
}

.header-right > * {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.header-right .btn-outline,
.header-right .btn-primary {
    margin-right: 0;
    margin-left: 0;
}

.header-right .user-box {
    margin-right: 0;
    margin-left: 0;
    position: relative;
    z-index: 1;
}

/* Navigation List */
.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: nowrap;
}

/* Logo - Enhanced */
.logo-link,
.header-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 6px 10px;
    border-radius: 10px;
}

.logo-link:hover,
.header-logo:hover {
    transform: scale(1.03);
    background: rgba(242, 106, 27, 0.05);
}

.logo-image {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(242, 106, 27, 0.2));
    transition: filter 0.3s ease;
}

.logo-link:hover .logo-image {
    filter: drop-shadow(0 4px 8px rgba(242, 106, 27, 0.3));
}

.header strong {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #F26A1B 0%, #FF8A4C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.header.header--small .logo-image {
    height: 32px;
}

/* Navigation Links - Modern Style */
.nav-link {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    letter-spacing: 0.2px;
    border: 2px solid transparent;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(242, 106, 27, 0.08);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(255, 248, 240, 1);
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

.nav-list a {
    text-decoration: none;
    white-space: nowrap;
}

/* Navigation Link Underline Effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}


/* Primary and Outline Buttons */
.header-right .btn-primary,
.header-right .btn-outline,
.header-right a.btn-primary,
.header-right a.btn-outline,
.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    width: auto;
    margin: 0;
}

/* Регистрация / Панель управления — Solid Orange Button */
.header-right .btn-outline,
.header-right a.btn-outline,
.btn-outline,
.header-register {
    background: linear-gradient(135deg, #F26A1B 0%, #FF8A4C 100%) !important;
    color: #ffffff !important;
    border: 2px solid #F26A1B !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(242, 106, 27, 0.3) !important;
    text-decoration: none !important;
    z-index: 10;
    cursor: pointer !important;
}

.header-right .btn-outline::before,
.header-right a.btn-outline::before,
.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.4s ease;
    z-index: -1;
    pointer-events: none;
}

.header-right .btn-outline:hover,
.header-right a.btn-outline:hover,
.btn-outline:hover,
.header-register:hover {
    background: linear-gradient(135deg, #E55A0B 0%, #F26A1B 100%) !important;
    color: #ffffff !important;
    border-color: #E55A0B !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(242, 106, 27, 0.4) !important;
}

.header-right .btn-outline:hover::before,
.header-right a.btn-outline:hover::before,
.btn-outline:hover::before {
    left: 100%;
}

/* Оставить заявку — Modern Gradient Button */
.header-right .btn-primary,
.header-right a.btn-primary,
.btn-primary {
    border: none;
    background: linear-gradient(135deg, #F26A1B 0%, #FF8A4C 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(242, 106, 27, 0.3);
}

.header-right .btn-primary::before,
.header-right a.btn-primary::before,
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.header-right .btn-primary:hover::before,
.header-right a.btn-primary:hover::before,
.btn-primary:hover::before {
    left: 100%;
}

.header-right .btn-primary:hover,
.header-right a.btn-primary:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, #E55A0B 0%, #F26A1B 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 106, 27, 0.4);
}

.btn-primary.header-cta {
    padding: 8px 20px;
    border-radius: 25px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    letter-spacing: 0.3px;
    font-size: 14px;
}

/* Small Header (when scrolled) */
.header.header--small .header-nav {
    padding: 0.8rem 0;
}

.header.header--small strong {
    font-size: 1.05rem;
}

.header.header--small .nav-link {
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 960px) {
    .header-left ul {
        gap: 18px;
    }
    
    .header-right {
        gap: 16px;
    }
    
    .header-right .btn {
        height: 36px;
        padding: 0 14px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block !important;
        order: 1;
        flex-shrink: 0;
    }
    
    .header-nav {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.5rem 1rem;
        align-items: center;
    }
    
    .header-left {
        gap: 12px;
        order: 2;
        flex: 1;
        justify-content: flex-start;
    }
    
    .header-left ul {
        display: none !important;
    }
    
    /* МОБИЛЬНОЕ МЕНЮ - ОТКРЫТОЕ СОСТОЯНИЕ */
    ul#mobile-menu.mobile-menu-open,
    .nav-list.mobile-menu-open,
    .header-left ul.mobile-menu-open {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: #ffffff !important;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2) !important;
        padding: 2rem 1rem !important;
        gap: 1rem !important;
        z-index: 999 !important;
        overflow-y: auto !important;
        margin: 0 !important;
        width: 100vw !important;
        height: calc(100vh - 70px) !important;
        list-style: none !important;
    }
    
    ul#mobile-menu.mobile-menu-open li,
    .nav-list.mobile-menu-open li,
    .header-left ul.mobile-menu-open li {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        border-bottom: 1px solid #e0e0e0 !important;
    }
    
    ul#mobile-menu.mobile-menu-open li a,
    .nav-list.mobile-menu-open li a,
    .header-left ul.mobile-menu-open li a {
        display: block !important;
        width: 100% !important;
        padding: 16px 20px !important;
        font-size: 16px !important;
        color: #333333 !important;
        background: transparent !important;
        text-decoration: none !important;
        border-radius: 0 !important;
    }
    
    ul#mobile-menu.mobile-menu-open li a:hover,
    .nav-list.mobile-menu-open li a:hover,
    .header-left ul.mobile-menu-open li a:hover {
        background: rgba(242, 106, 27, 0.1) !important;
        color: #F26A1B !important;
    }
    
    /* Скрываем header-right на мобильных, так как user-box в углу, а кнопка не нужна */
    .header-right {
        display: none !important;
    }
    
    .logo-image {
        height: 32px;
    }
    
    .header strong {
        font-size: 1rem;
    }
    
    /* Overlay для мобильного меню */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        display: block !important;
        opacity: 1 !important;
    }
    
    /* Убедимся, что мобильное меню видно */
    .nav-list.mobile-menu-open {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Стили для ссылок в мобильном меню */
    #mobile-menu.mobile-menu-open {
        display: flex !important;
    }
    
    #mobile-menu.mobile-menu-open a {
        color: #333333 !important;
        font-weight: 500;
    }
    
    #mobile-menu.mobile-menu-open a.active {
        color: #F26A1B !important;
        background: rgba(242, 106, 27, 0.1);
    }
}

@media (max-width: 480px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .header-nav {
        padding: 0.4rem 0.75rem;
    }
    
    .mobile-menu-toggle {
        display: block !important;
        font-size: 1.3rem;
        padding: 0.25rem;
    }

    .header strong {
        font-size: 0.95rem;
    }
    
    .logo-image {
        height: 28px;
    }
    
    .logo-link {
        padding: 4px 6px;
    }

    /* МОБИЛЬНОЕ МЕНЮ для маленьких экранов */
    ul#mobile-menu.mobile-menu-open,
    .nav-list.mobile-menu-open,
    .header-left ul.mobile-menu-open {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 56px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: #ffffff !important;
        padding: 1.5rem 1rem !important;
        gap: 0.5rem !important;
        overflow-y: auto !important;
        z-index: 999 !important;
        margin: 0 !important;
        width: 100vw !important;
        height: calc(100vh - 56px) !important;
    }

    ul#mobile-menu.mobile-menu-open li,
    .nav-list.mobile-menu-open li,
    .header-left ul.mobile-menu-open li {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        border-bottom: 1px solid #F0F0F0 !important;
    }
    
    ul#mobile-menu.mobile-menu-open li a,
    .nav-list.mobile-menu-open li a,
    .header-left ul.mobile-menu-open li a {
        display: block !important;
        width: 100% !important;
        padding: 14px 18px !important;
        font-size: 15px !important;
        color: #333333 !important;
        background: transparent !important;
    }

    .nav-link {
        font-size: 1rem;
        padding: 8px 12px;
    }
    
    /* header-right уже скрыт в @media 768px */
}

/* Focus styles for accessibility */
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* User Box - Modern Design */
.user-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
    border: 1.5px solid rgba(242, 106, 27, 0.3);
    transition: all 0.3s ease;
    position: relative !important;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0;
    z-index: 1;
    top: auto !important;
    right: auto !important;
    left: auto !important;
}

.user-box:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%) !important;
    border-color: rgba(242, 106, 27, 0.35);
    box-shadow: 0 6px 16px rgba(242, 106, 27, 0.2);
    transform: translateY(-1px);
}

/* User Avatar Icon */
.user-box::before {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #F26A1B 0%, #FF8A4C 100%);
    border-radius: 50%;
    background-image: url('../images/icon/user.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(242, 106, 27, 0.3);
}

.user-name {
    display: inline-block !important;
    font-size: 13px !important;
    white-space: nowrap !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #2c3e50 !important;
    font-weight: 600 !important;
    letter-spacing: 0.2px !important;
    text-shadow: none !important;
    opacity: 1 !important;
}

.user-box .user-name {
    color: #2c3e50 !important;
    font-weight: 600 !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
}

span.user-name {
    color: #2c3e50 !important;
    font-weight: 600 !important;
    display: inline-block !important;
}

.user-box .logout-link,
.logout-link {
    display: inline-flex !important;
    align-items: center !important;
    font-size: 12px !important;
    color: #fff !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    margin: 0 !important;
    margin-left: 0 !important;
    padding: 5px 12px !important;
    background: linear-gradient(135deg, #F26A1B 0%, #FF8A4C 100%) !important;
    border: 2px solid #F26A1B !important;
    border-radius: 20px !important;
    cursor: pointer !important;
    width: auto !important;
    height: auto !important;
    transition: all 0.25s ease !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    box-shadow: 0 3px 8px rgba(242, 106, 27, 0.3) !important;
    flex-shrink: 0 !important;
}

.user-box .logout-link:hover,
.logout-link:hover {
    color: #fff !important;
    background: linear-gradient(135deg, #E55A0B 0%, #F26A1B 100%) !important;
    border-color: #E55A0B !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 12px rgba(242, 106, 27, 0.4) !important;
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .user-box {
        position: fixed !important;
        top: 6px !important;
        right: 6px !important;
        z-index: 2000 !important;
        padding: 5px 10px;
        gap: 5px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    }
    
    .user-box::before {
        width: 26px;
        height: 26px;
        background-size: cover;
    }
    
    .user-name {
        font-size: 12px;
    }
    
    .logout-link {
        font-size: 11px !important;
        padding: 4px 10px !important;
        background: linear-gradient(135deg, #F26A1B 0%, #FF8A4C 100%) !important;
        color: #fff !important;
        border: 2px solid #F26A1B !important;
    }
}

@media (max-width: 480px) {
    .user-name {
        display: none;
    }
    
    .user-box {
        padding: 4px 6px;
        top: 5px;
        right: 5px;
        gap: 4px;
    }
    
    .user-box::before {
        width: 24px;
        height: 24px;
        background-size: cover;
    }
    
    .logout-link {
        font-size: 10px !important;
        padding: 3px 8px !important;
    }
}

/* ============================================
   УНИВЕРСАЛЬНЫЕ СТИЛИ ДЛЯ ВСЕХ СТРАНИЦ
   Гарантируют правильное отображение меню администратора
   ============================================ */

/* Принудительное исправление отображения элементов header-right на всех страницах */
.header-right {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    flex-wrap: nowrap !important;
    position: relative !important;
}

/* Уменьшенные отступы для администратора */
.header.admin-header .header-right {
    gap: 12px !important;
}

@media (min-width: 1200px) {
    .header.admin-header .header-right {
        gap: 14px !important;
    }
}

@media (min-width: 1600px) {
    .header.admin-header .header-right {
        gap: 16px !important;
    }
}

.header-right > * {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    position: relative !important;
    z-index: 1 !important;
    margin: 0 !important;
}

/* Правильное отображение user-box на всех страницах */
.header-right .user-box {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    position: relative !important;
    margin: 0 !important;
    padding: 6px 14px !important;
    flex-shrink: 0 !important;
    z-index: 1 !important;
}

/* Разделение элементов внутри user-box */
.header-right .user-box .user-name {
    display: inline-block !important;
    margin: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
}

.header-right .user-box .logout-link {
    display: inline-flex !important;
    margin: 0 !important;
    margin-left: 0 !important;
    padding: 5px 12px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

/* Правильные отступы между элементами в header-right - используем gap вместо margin */
.header-right .user-box + a.btn-outline,
.header-right .user-box + .btn-outline {
    margin-left: 0 !important;
}

.header-right a.btn-outline + a.btn-primary,
.header-right .btn-outline + .btn-primary {
    margin-left: 0 !important;
}

/* Убеждаемся, что кнопки не сливаются и имеют правильные отступы */
.header-right a.btn-outline,
.header-right .btn-outline {
    margin: 0 !important;
    padding: 7px 18px !important;
    white-space: nowrap !important;
    position: relative !important;
    z-index: 1 !important;
}

.header-right a.btn-primary,
.header-right .btn-primary {
    margin: 0 !important;
    padding: 7px 18px !important;
    white-space: nowrap !important;
    position: relative !important;
    z-index: 1 !important;
}

/* ============================================
   КРИТИЧНЫЕ СТИЛИ ДЛЯ МОБИЛЬНОГО МЕНЮ
   (в конце файла для максимального приоритета)
   ============================================ */

/* Универсальные стили для мобильного меню на всех страницах */
@media (max-width: 768px) {
    /* Кнопка мобильного меню должна быть видна */
    .mobile-menu-toggle {
        display: flex !important;
        order: 1 !important;
        flex-shrink: 0 !important;
        z-index: 1001 !important;
        cursor: pointer !important;
    }
    
    /* Когда класс mobile-menu-open добавлен - показываем меню */
    #mobile-menu.mobile-menu-open {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        height: calc(100vh - 70px) !important;
        background-color: white !important;
        z-index: 999 !important;
        padding: 2rem 1rem !important;
        margin: 0 !important;
        overflow-y: auto !important;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2) !important;
    }
    
    #mobile-menu.mobile-menu-open li {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border-bottom: 1px solid #e0e0e0 !important;
    }
    
    #mobile-menu.mobile-menu-open li a {
        display: block !important;
        padding: 16px 20px !important;
        color: #333 !important;
        font-size: 16px !important;
        text-decoration: none !important;
        width: 100% !important;
    }
    
    #mobile-menu.mobile-menu-open li a:hover {
        background-color: rgba(242, 106, 27, 0.1) !important;
        color: #F26A1B !important;
    }
}

@media (max-width: 480px) {
    #mobile-menu.mobile-menu-open {
        top: 56px !important;
        height: calc(100vh - 56px) !important;
        padding: 1.5rem 1rem !important;
    }
    
    #mobile-menu.mobile-menu-open li a {
        padding: 14px 18px !important;
        font-size: 15px !important;
    }
}

