/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Desktop Header */
.desktop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.desktop-header .menu-icon img {
    width: 24px;
    cursor: pointer;
}

.desktop-header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.desktop-header .priority-links a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
}

.desktop-header .user-auth {
    display: flex;
    align-items: center;
}

.desktop-header .login-btn {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.desktop-header .user-profile {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.desktop-header .user-profile img {
    width: 24px;
    margin-right: 5px;
}

/* Mobile Header */
.mobile-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-header .logo {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
}

.mobile-bottom-bar button {
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-bottom-bar img {
    width: 24px;
}

/* Mobile Mega Menu */
#mobile-mega-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-color: #f9f9f9;
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
}

.hidden {
    display: none;
}

/* Media Queries */
@media (max-width: 768px) {
    .desktop-header {
        display: none;
    }
    .mobile-header, .mobile-bottom-bar {
        display: flex;
    }
}
