:root {
    --primary:      #5f0999;
    --primary-dark: #841dd8;
    --accent:       #f59e0b;
    --dark:         #139b6d;
    --light:        #f8fafc;
    --glass:        rgba(182, 162, 162, 0.38);
    --glass-border: rgba(255, 255, 255, 0.15);
    --shadow-color: rgba(245, 231, 156, 0.5);
    --text-light:   #e2e8f0;
    --text-muted:   #94a3b8;

    /* متغیرهای جدید برای منوی موبایل فول‌صفحه */
    --mobile-nav-bg: #0a0a0f;
    --mobile-nav-accent: #6c5ce7;
    --mobile-nav-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --mobile-nav-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    --mobile-item-radius: 16px;
    --mobile-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: var(--light);
    overflow-x: hidden;
}

/* ─── هدر ───────────────────────────────── */
.site-header {
    position: fixed;
    top: 0; right: 0; left: 0;
    z-index: 1000;
    padding: 4px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(8, 116, 44, 0.97);
    box-shadow: 0 4px 30px rgba(43, 216, 109, 0.7), 0 1px 0 var(--glass-border);
}

.site-header.scrolled {
    padding: 10px 0;
    background: rgb(22, 3, 22);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3), 0 1px 0 var(--glass-border);
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0; left: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.site-header.scrolled::after { opacity: 1; }

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* ─── برندینگ ────────────────────────────── */
.site-branding {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
}

.site-branding img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(37,99,235,0.4));
    transition: transform 0.3s ease;
    border-radius: 10px;
    padding: 0 !important;
    margin: 0 !important;
    display: block;
}

.site-branding:hover img { transform: scale(1.05); }

.brand-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.site-branding:hover .brand-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 6px 20px var(--shadow-color);
}

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.brand-name span:first-child {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}
.brand-name span:last-child {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ─── منوی دسکتاپ ───────────────────────── */
.primary-nav {
    display: flex;
    align-items: center;
}
.primary-nav > ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
}
.primary-nav > ul > li { position: relative; }

.primary-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.25s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.primary-nav > ul > li > a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.25s ease;
}
.primary-nav > ul > li > a:hover::before,
.primary-nav > ul > li.current-menu-item > a::before,
.primary-nav > ul > li.current_page_item > a::before {
    opacity: 1;
    transform: scale(1);
}
.primary-nav > ul > li > a:hover,
.primary-nav > ul > li.current-menu-item > a,
.primary-nav > ul > li.current_page_item > a { color: #fff; }

.primary-nav > ul > li > a i:not(.arrow-icon) { font-size: 0.8rem; opacity: 0.7; }
.primary-nav .arrow-icon { font-size: 0.7rem; transition: transform 0.3s ease; margin-right: 2px; }
.primary-nav > ul > li.menu-item-has-children:hover > a .arrow-icon { transform: rotate(180deg); }

/* زیرمنوی دسکتاپ */
.primary-nav .sub-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 220px;
    background: rgba(8, 116, 44, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.97);
    transform-origin: top right;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}
.primary-nav .sub-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: rgba(8, 116, 44, 0.97);
    border-right: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-border);
    transform: rotate(-45deg);
    border-radius: 2px;
}
.primary-nav > ul > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.primary-nav .sub-menu li { display: block; width: 100%; }
.primary-nav .sub-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    width: 100%;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.88rem;
    border-radius: 10px;
    transition: all 0.2s ease;
    position: relative;
}
.primary-nav .sub-menu li a i { width: 18px; text-align: center; color: var(--primary); font-size: 0.85rem; flex-shrink: 0; }
.primary-nav .sub-menu li a:hover { background: var(--glass); color: #fff; padding-right: 18px; }
.primary-nav .sub-menu li a:hover i { color: var(--accent); }
/* خط زیر آیتم‌های زیرمنو */
.primary-nav .sub-menu li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 14px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 2px;
    transition: all 0.3s ease;
}
.primary-nav .sub-menu li a:hover::after {
    width: calc(100% - 28px);
}

/* ─── دکمه‌های هدر ───────────────────────── */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-search {
    width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--glass-border);
    background: var(--glass); color: var(--text-light); display: flex; align-items: center;
    justify-content: center; cursor: pointer; transition: all 0.25s ease; font-size: 0.9rem;
    text-decoration: none;
}
.btn-search:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.3); transform: translateY(-1px); }

.btn-cta, .mobile-cta {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 3px 5px;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-color);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn-cta::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%; width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    transform: translateX(100%);
    transition: transform 0.6s ease;
}
.btn-cta:hover::before { transform: translateX(-100%); }
.btn-cta:hover, .mobile-cta:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    box-shadow: 0 6px 25px var(--shadow-color);
    transform: translateY(-2px);
}

/* پروفایل کاربر */
.user-profile-btn {
    padding: 5px 15px 5px 5px !important;
}
.user-profile-btn img.avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.4);
    margin-right: 5px;
}
.mobile-cta.user-profile-btn {
    padding: 3px 20px 3px 8px !important;
    justify-content: center;
}
.mobile-cta.user-profile-btn img.avatar {
    width: 45px; height: 45px;
}

/* ─── دکمه همبرگر ─────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 36px;
    height: 26px;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1001;
}
.hamburger span {
    display: block;
    height: 2.5px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}
.hamburger.is-active span:nth-child(1) { transform: translateY(11.75px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: translateY(-11.75px) rotate(-45deg); }

/* ─── دکمه شارژ هدر ───────────────────────── */
.btn-recharge-header {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}
.btn-recharge-header::before,
.btn-recharge-header::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
}
.btn-recharge-header::before {
    background: radial-gradient(circle at 30% 50%, rgba(0,0,0,0.4) 0%, transparent 60%);
    animation: shadow-slide 3s ease-in-out infinite;
}
.btn-recharge-header::after {
    background: radial-gradient(circle at 70% 50%, rgba(0,0,0,0.3) 0%, transparent 60%);
    animation: shadow-slide-reverse 3.5s ease-in-out infinite 0.5s;
}
@keyframes shadow-slide {
    0% { opacity: 0; transform: translateX(-100%) scale(0.8); }
    30% { opacity: 1; transform: translateX(0) scale(1); }
    70% { opacity: 1; transform: translateX(0) scale(1); }
    100% { opacity: 0; transform: translateX(100%) scale(0.8); }
}
@keyframes shadow-slide-reverse {
    0% { opacity: 0; transform: translateX(100%) scale(0.8); }
    30% { opacity: 1; transform: translateX(0) scale(1); }
    70% { opacity: 1; transform: translateX(0) scale(1); }
    100% { opacity: 0; transform: translateX(-100%) scale(0.8); }
}
.btn-recharge-header:hover::before,
.btn-recharge-header:hover::after {
    animation-play-state: paused;
    opacity: 0;
}
.btn-recharge-header:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.5);
    border-color: rgba(255,255,255,0.3);
}
.btn-recharge-header .recharge-label {
    display: none;
    font-size: 0.75rem;
    margin-right: 4px;
    position: relative;
    z-index: 1;
}
.btn-recharge-header i { position: relative; z-index: 1; }
@media (min-width: 1024px) {
    .btn-recharge-header {
        width: auto;
        padding: 0 16px;
        gap: 6px;
        border-radius: 10px;
    }
    .btn-recharge-header .recharge-label { display: inline; }
}

/* ─── بج اعلان ────────────────────────────── */
.btn-notification { position: relative; }
.notif-badge-desktop {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    font-family: sans-serif;
}

/* ============================================================
   منوی موبایل فول‌صفحه مدرن (جایگزین کامل Bottom Sheet)
   ============================================================ */

/* ─── پوشش پشت منو ────────────────────────── */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* ─── منوی اصلی فول‌صفحه ───────────────────── */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--mobile-nav-bg);
    z-index: 9999;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: var(--mobile-nav-shadow);
}
.mobile-nav.is-open {
    right: 0;
}

/* ─── هدر منوی موبایل (لوگو + دکمه بستن) ──── */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(10,10,15,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.mobile-nav-logo img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}
.mobile-nav-logo .brand-icon {
    width: 40px;
    height: 40px;
    background: var(--mobile-nav-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}
/* دکمه بستن */
.mobile-close-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-close-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

/* ─── محتوای منو ───────────────────────────── */
.mobile-nav-content {
    padding: 20px 24px 100px;
    min-height: calc(100vh - 80px);
}

/* ─── بخش کاربری ───────────────────────────── */
.mobile-user-section {
    background: rgba(255,255,255,0.05);
    border-radius: var(--mobile-item-radius);
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.mobile-user-info .avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid var(--mobile-nav-accent);
    object-fit: cover;
}
.mobile-user-details {
    flex: 1;
}
.mobile-user-details .user-name {
    display: block;
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
}
.mobile-user-details .user-role {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}
.mobile-user-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}
.mobile-user-action:hover {
    background: var(--mobile-nav-accent);
}
.mobile-user-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}
.mobile-user-login i {
    font-size: 48px;
    color: rgba(255,255,255,0.3);
}
.mobile-user-login span {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
}
.mobile-login-btn {
    padding: 12px 40px;
    background: var(--mobile-nav-gradient);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.mobile-login-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(108,92,231,0.4);
}

/* ─── منوی اصلی موبایل ──────────────────────── */
.mobile-main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-main-menu > li {
    margin-bottom: 4px;
}
.mobile-main-menu > li > a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    border-radius: var(--mobile-item-radius);
    transition: var(--mobile-transition);
    position: relative;
}
.mobile-main-menu > li > a:hover {
    background: rgba(255,255,255,0.08);
    color: white;
    transform: translateX(-4px);
}
.mobile-main-menu > li > a i {
    width: 24px;
    font-size: 18px;
    color: var(--mobile-nav-accent);
}
/* فلش زیرمنو */
.menu-item-has-children > a::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}
.menu-item-has-children > a.open::after {
    transform: rotate(180deg);
    color: var(--mobile-nav-accent);
}

/* زیرمنوهای موبایل (کشویی با max-height) */
.mobile-sub-menu {
    list-style: none;
    padding: 0;
    margin: 0 16px 8px 16px;
    background:  #483d99;
    border-radius: 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-sub-menu.open {
    max-height: 800px; /* مقدار کافی برای محتوا */
}
.mobile-sub-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}
.mobile-sub-menu li a:hover {
    background: rgba(255,255,255,0.05);
    color: white;
    padding-right: 28px;
}
.mobile-sub-menu li a i {
    width: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.3);
}
/* خط زیر آیتم‌های زیرمنو */
.mobile-sub-menu a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 16px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 2px;
    transition: all 0.3s ease;
}
.mobile-sub-menu a:hover::after {
    width: calc(100% - 32px);
}

/* ─── بخش اکشن‌های موبایل ────────────────────── */
.mobile-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mobile-action-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--mobile-item-radius);
    text-decoration: none;
    transition: var(--mobile-transition);
    font-weight: 500;
}
/* دکمه شارژ */
.recharge-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}
.recharge-btn:hover {
    transform: translateX(-4px);
    box-shadow: 0 10px 30px rgba(245,87,108,0.4);
}
.recharge-btn i:last-child {
    margin-right: auto;
}
/* دکمه اعلانات */
.notification-btn {
    background: rgba(255,255,255,0.05);
    color: white;
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
}
.notification-btn:hover {
    background: rgba(255,255,255,0.1);
}

/* ─── فوتر منوی موبایل ───────────────────────── */
.mobile-nav-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-text {
    color: rgba(255,255,255,0.3);
    font-size: 13px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    color: rgba(255,255,255,0.3);
    font-size: 18px;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    color: white;
    transform: translateY(-2px);
}

/* ─── انیمیشن‌های ورود آیتم‌ها ────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.mobile-nav.is-open .mobile-user-section {
    animation: fadeInUp 0.5s ease 0.1s both;
}
.mobile-nav.is-open .mobile-main-menu > li {
    animation: fadeInUp 0.5s ease both;
}
.mobile-nav.is-open .mobile-main-menu > li:nth-child(1) { animation-delay: 0.15s; }
.mobile-nav.is-open .mobile-main-menu > li:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav.is-open .mobile-main-menu > li:nth-child(3) { animation-delay: 0.25s; }
.mobile-nav.is-open .mobile-main-menu > li:nth-child(4) { animation-delay: 0.3s; }
.mobile-nav.is-open .mobile-main-menu > li:nth-child(5) { animation-delay: 0.35s; }
.mobile-nav.is-open .mobile-actions {
    animation: fadeInUp 0.5s ease 0.4s both;
}
.mobile-nav.is-open .mobile-nav-footer {
    animation: fadeInUp 0.5s ease 0.5s both;
}

/* ─── ریسپانسیو ──────────────────────────── */
@media (max-width: 1024px) {
    .primary-nav { display: none; }
    .header-actions .btn-cta { display: none; }
    .hamburger { display: flex; }
}
@media (min-width: 992px) {
    .mobile-nav,
    .mobile-nav-overlay,
    .hamburger {
        display: none !important;
    }
}

/* ─── رفع تداخل Admin Bar ─────────────────── */
body.admin-bar .site-header { top: 32px; }
body.admin-bar .mobile-nav-overlay { top: 32px; }
body.admin-bar .mobile-nav { top: 32px; height: calc(100dvh - 32px); }
body.admin-bar .header-spacer { height: 112px; }
@media (max-width: 782px) {
    body.admin-bar .site-header { top: 46px; }
    body.admin-bar .mobile-nav-overlay { top: 46px; }
    body.admin-bar .mobile-nav { top: 46px; height: calc(100dvh - 46px); }
    body.admin-bar .header-spacer { height: 126px; }
}