.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.site-header.is-stuck {
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.15);
    transform: translateY(0);
}

.site-header.is-stuck .site-header-top {
    background: rgba(255, 255, 255, 0.80) !important;
    box-shadow: 0 8px 32px rgba(32, 38, 55, 0.10), 0 1.5px 0 0 rgba(249,115,22,0.06);
    border-bottom: none !important;
    backdrop-filter: blur(14px);
}

.site-header-top {
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    border-bottom: none !important;
    box-shadow: 0 2px 16px rgba(249, 115, 22, 0.03);
}

.site-header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem var(--spacing-unit);
    font-size: 0.875rem;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #f9fafb;
}

.logo {
    height: 50px;
    width: auto;
    margin-right: 0.6rem;
    border-radius: 12px;
    background: #ffffff;
    transition: box-shadow 0.23s cubic-bezier(0.4,0,0.2,1);
    padding-left:25px;
    padding-right:25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
    
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-title {
    font-weight: 700;
    font-size: 1rem;
}

.brand-tagline {
    font-size: 0.75rem;
    color: #9ca3af;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
}


.theme-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-icon svg {
    width: 20px;
    height: 20px;
}

.header-right .btn-sm {
    flex-shrink: 0;
}

/* Ensure Sign In/Sign Up buttons are always visible */
.header-right .btn-primary.btn-sm,
.header-right .btn-secondary.btn-sm {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
}

.hiring-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(75, 85, 99, 0.7);
    color: #e5e7eb;
    font-size: 0.78rem;
}

.hiring-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
}

.cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: #f97316;
    color: #111827;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.35);
}

.cta-pill:hover {
    background: #ea580c;
    color: #111827;
}

.signin-link {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.85rem;
}

.signin-link:hover {
    text-decoration: underline;
}

.admin-link {
    color: #e54d18;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.35rem 0.9rem;
    border-radius: 6px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.3);
    font-weight: 500;
    transition: all 0.2s;
}

.admin-link:hover {
    background: rgba(37, 99, 235, 0.3);
    color: #111827;
}

.customer-link {
    color: #667eea;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.35rem 0.9rem;
    border-radius: 6px;
    background: rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.3);
    font-weight: 500;
    transition: all 0.2s;
}

.customer-link:hover {
    background: rgba(102, 126, 234, 0.25);
    color: #4c63d2;
}

.header-right .btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.header-right .btn-primary.btn-sm {
    background: linear-gradient(120deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.header-right .btn-primary.btn-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
    color: white;
}

.header-right .btn-secondary.btn-sm {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    border: 2px solid #667eea;
}

.header-right .btn-secondary.btn-sm:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.logout-form {
    display: inline-block;
    margin: 0;
}

.logout-btn {
    background: none;
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #fca5a5;
    padding: 0.35rem 0.9rem;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.logout-btn:hover {
    background: rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.5);
    color: #ffffff;
}

.site-nav {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.06);
}

.site-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem var(--spacing-unit);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    z-index: 1001;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.hamburger-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.menu li {
    margin: 0;
}

.menu-search {
    margin-left: auto;
}

.menu .logout-form {
    margin: 0;
}

.menu .logout-btn {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    font: inherit;
    cursor: pointer;
    border-radius: 4px;
    transition: color 0.2s, background-color 0.2s;
}

.menu .logout-btn:hover,
.menu .logout-btn:focus {
    color: var(--primary-color);
    background-color: var(--bg-light);
    outline: none;
}

.menu a {
    color: #4b5563;
    text-decoration: none;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s, background-color 0.2s;
}

.menu a:hover,
.menu a:focus {
    color: #111827;
    background-color: #e5e7eb;
    outline: none;
}

.menu a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
}

.nav-search-form {
    margin-left: auto;
    position: relative;
    flex: 1;
    max-width: 260px;
}

.nav-search-input {
    width: 100%;
    padding: 0.45rem 0.75rem;
    padding-left: 0.75rem;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    font-size: 0.9rem;
    outline: none;
}

@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }
    
    .menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--bg-color);
        flex-direction: column;
        align-items: stretch;
        padding: calc(var(--spacing-unit) * 1.5);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .menu.open {
        transform: translateX(0);
    }
    
    .menu li {
        width: 100%;
    }
    
    .menu a {
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .menu a:last-child {
        border-bottom: none;
    }
}

@media (min-width: 992px) {
    .menu {
        position: static;
        transform: none;
        flex-direction: row;
        box-shadow: none;
        padding: 0;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: fixed;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 1002;
    margin: 0;
}

.mobile-menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    position: relative;
}

.mobile-menu-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background: #0f172a;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

/* Hide hamburger icon when avatar is shown */
.mobile-avatar-toggle .mobile-menu-icon {
    display: none !important;
}

.mobile-avatar-toggle .mobile-avatar-icon {
    display: flex !important;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-toggle:hover {
    background: rgba(15, 23, 42, 0.05);
}

.mobile-menu-toggle:active {
    background: rgba(15, 23, 42, 0.1);
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu-backdrop.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(2px);
}

/* Mobile Dropdown Menu */
.mobile-menu-dropdown {
    display: none;
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
    border-top: 1px solid #e5e7eb;
    z-index: 1001;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.mobile-menu-dropdown[aria-hidden="false"] {
    display: block;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-content {
    padding: 0.5rem 0;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    color: #1e293b;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
    background: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    position: relative;
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #667eea;
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.mobile-menu-link:hover::before,
.mobile-menu-link:focus::before {
    transform: scaleY(1);
}

.mobile-menu-link:last-child {
    border-bottom: none;
}

.mobile-menu-link:hover,
.mobile-menu-link:focus {
    background: #f8fafc;
    color: #667eea;
    outline: none;
}

.mobile-menu-link:active {
    background: #f1f5f9;
}

.mobile-menu-icon-link {
    font-size: 1.25rem;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-menu-logout-form {
    margin: 0;
    padding: 0;
    border: none;
}

.mobile-menu-logout-btn {
    color: #dc2626;
}

.mobile-menu-logout-btn:hover,
.mobile-menu-logout-btn:focus {
    background: #fef2f2;
    color: #dc2626;
}

/* Hide desktop customer links on mobile */
.customer-links-desktop {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Avatar Dropdown Styles */
.avatar-dropdown-container {
    position: relative;
}

.avatar-button {
    background: none;
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.avatar-button:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.5);
    transform: scale(1.05);
}

.avatar-button[aria-expanded="true"] {
    background: rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.6);
}

.avatar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.avatar-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
    min-width: 180px;
    z-index: 1002;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.avatar-dropdown[aria-hidden="false"] {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.avatar-dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #1e293b;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
}

.avatar-dropdown-link:last-child {
    border-bottom: none;
}

.avatar-dropdown-link:hover {
    background: #f8fafc;
    color: #667eea;
}

.avatar-dropdown-icon {
    font-size: 1.125rem;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-dropdown-form {
    margin: 0;
    padding: 0;
    border: none;
}

.avatar-dropdown-logout {
    color: #dc2626;
}

.avatar-dropdown-logout:hover {
    background: #fef2f2;
    color: #dc2626;
}

/* Mobile Avatar Icon */
.mobile-avatar-icon {
    display: none;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #0f172a;
}

/* Hide avatar dropdown on mobile */
@media (max-width: 768px) {
    .avatar-dropdown-container {
        display: none;
    }
}

/* Show avatar dropdown only on desktop */
@media (min-width: 769px) {
    .avatar-dropdown-container {
        display: block;
    }
}

/* Admin Mobile Menu Styles */
.admin-links-desktop {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: fixed;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 1002;
    margin: 0;
}

.admin-mobile-menu-toggle:hover {
    background: rgba(15, 23, 42, 0.05);
}

.admin-mobile-menu-toggle:active {
    background: rgba(15, 23, 42, 0.1);
}

/* Admin Mobile Menu Backdrop */
.admin-mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.admin-mobile-menu-backdrop.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(2px);
}

/* Admin Mobile Dropdown Menu */
.admin-mobile-menu-dropdown {
    display: none;
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
    border-top: 1px solid #e5e7eb;
    z-index: 1001;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.admin-mobile-menu-dropdown[aria-hidden="false"] {
    display: block;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .site-header-top-inner {
        flex-wrap: wrap;
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    .brand {
        display: flex;
        flex-direction: row;
        align-items: center;
        min-width: 0;
        gap: 0.55rem;
        flex: 0 1 auto;
        margin-bottom: 0;
    }
    .logo {
        height: 42px;
        margin-right: 0.5rem;
        flex-shrink: 0;
    }
    .brand-text {
        display: flex;
        flex-direction: column;
        min-width: 0;
        line-height: 1.1;
        gap: 0;
    }
    .brand-title {
        font-weight: 700;
        font-size: 0.98rem;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        max-width: 110px;
    }
    .brand-tagline {
        font-size: 0.68rem;
        color: #9ca3af;
        display: none;
    }
    
    .header-right {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: flex-end;
        flex: 1 1 auto;
        min-width: 0;
        align-items: center;
    }
    
    .hiring-pill {
        display: none;
    }
    
    .cta-pill {
        display: none;
    }
    
    /* Hide desktop customer links on mobile */
    .customer-links-desktop {
        display: none !important;
    }
    
    /* Hide desktop admin links on mobile */
    .admin-links-desktop {
        display: none !important;
    }
    
    /* Show mobile menu button on mobile */
    .mobile-menu-toggle {
        display: flex !important;
        position: fixed !important;
        top: 0.75rem !important;
        right: 0.75rem !important;
        z-index: 1002 !important;
    }
    
    /* Hide hamburger icon, show avatar icon on mobile */
    .mobile-avatar-toggle .mobile-menu-icon {
        display: none !important;
    }
    
    .mobile-avatar-toggle .mobile-avatar-icon {
        display: flex !important;
    }
    
    /* Show admin mobile menu button on mobile */
    .admin-mobile-menu-toggle {
        display: flex !important;
        position: fixed !important;
        top: 0.75rem !important;
        right: 0.75rem !important;
        z-index: 1002 !important;
    }
    
    /* Ensure header has proper spacing for fixed menu button */
    .site-header-top {
        position: relative;
    }
    
    /* Add padding to header-right to prevent overlap with fixed menu button */
    .header-right {
        padding-right: 3rem;
    }
    
    .admin-link,
    .customer-link {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        white-space: nowrap;
        flex: 0 1 auto;
    }
    
    .logout-btn {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        white-space: nowrap;
        flex: 0 1 auto;
    }

    .header-right .btn-sm {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
        white-space: nowrap;
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Hide Sign Up button on mobile */
    .header-right .btn-secondary.btn-sm {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Position Sign In button at top-right corner on mobile */
    .header-right .btn-primary.btn-sm {
        position: fixed !important;
        top: 0.75rem !important;
        right: 0.75rem !important;
        z-index: 1001 !important;
        margin: 0 !important;
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 0.5rem 1rem !important;
        font-size: 0.8125rem !important;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3) !important;
    }
    
    /* Adjust mobile menu dropdown position */
    .mobile-menu-dropdown {
        top: 60px;
    }
    
    /* Adjust admin mobile menu dropdown position */
    .admin-mobile-menu-dropdown {
        top: 60px;
    }
    
    /* Smooth scroll for mobile menu */
    .mobile-menu-dropdown,
    .admin-mobile-menu-dropdown {
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .site-header-top-inner {
        padding: 0.4rem 0.75rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .admin-link,
    .logout-btn {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
        flex: 0 1 auto;
    }
    
    .header-right {
        gap: 0.35rem;
        width: 100%;
        justify-content: space-between;
        padding-right: 3rem;
    }
    
    .header-right > * {
        flex: 0 1 auto;
    }
    
    /* Hide Sign Up button on small mobile */
    .header-right .btn-secondary.btn-sm {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Position Sign In button at top-right corner on small mobile */
    .header-right .btn-primary.btn-sm {
        position: fixed !important;
        top: 0.5rem !important;
        right: 0.5rem !important;
        z-index: 1001 !important;
        margin: 0 !important;
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 0.75rem !important;
        padding: 0.45rem 0.875rem !important;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3) !important;
    }
    
    /* Mobile menu adjustments for very small screens */
    .mobile-menu-toggle,
    .admin-mobile-menu-toggle {
        top: 0.5rem !important;
        right: 0.5rem !important;
        width: 36px !important;
        height: 36px !important;
        padding: 0.4rem;
    }
    
    .mobile-menu-icon {
        width: 20px;
        height: 16px;
    }
    
    .mobile-menu-dropdown,
    .admin-mobile-menu-dropdown {
        top: 58px;
    }
    
    .mobile-menu-link {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    .mobile-menu-icon-link {
        font-size: 1.1rem;
        width: 20px;
    }
}

