/* Mobile Menu Styles */
.mobile-header {
    display: none;
    background-color: var(--primary-red);
    padding: 15px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: 70px;
}

@media (max-width: 767px) {
    .mobile-header {
        display: block;
        margin-top: 40px;
    }
}

.mobile-header.no-announcement {
    margin-top: 0;
}

.mobile-header .logo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.mobile-header .logo-image {
    max-width: 150px;
}

.mobile-header .header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}
@media (max-width: 320px) {
    .mobile-header .header-icons {
        gap: 5px;
    }
}
.mobile-header .header-icons img {
    width: 30px;
    height: 30px;
}

.mobile-menu-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
}

.hamburger-icon {
    width: 30px;
    height: 24px;
    position: relative;
    display: inline-block;
    margin-top: 3px;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
    top: 0px;
}

.hamburger-icon span:nth-child(2) {
    top: 10px;
}

.hamburger-icon span:nth-child(3) {
    top: 20px;
}

.hamburger-icon.active span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
}

.hamburger-icon.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-icon.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: -110%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-red);
    z-index: 1000;
    transition: top 0.3s ease;
    padding: 0px 20px 20px 20px;
    overflow-y: auto;
    height: 100vh;
}

.mobile-menu.active {
    top: 140px;
    height: auto;
    bottom: 0px;
    padding-bottom: 80px;
}

.mobile-menu.active.no-announcement {
    top: 100px;
}

.mobile-menu .menu-icon {
    margin-right: 12px;
    vertical-align: middle;
}

.mobile-menu .nav-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin: 0 -20px;
}

.mobile-menu .nav-link span {
    line-height: 1.2;
    vertical-align: middle;
}

.mobile-menu .nav-link-top-icon {
    align-items: flex-start;
}

.mobile-menu .nav-link-top-icon span {
    line-height: 1.4;
}