/* Mobile Menu Overlay - Hidden by default */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    right: 0;
}

/* Close Button inside Mobile Menu */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 10000;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-close svg {
    width: 30px;
    height: 30px;
    color: #000;
}

.mobile-menu-close:hover {
    opacity: 0.7;
}

/* Hide email and instagram icons on mobile, show only search and hamburger */
.header-icons > a[aria-label="Email"],
.header-icons > a[aria-label="Instagram"] {
    display: none;
}

/* Mobile Navigation */
.mobile-nav {
    padding: 80px 30px 30px;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #eee;
}
.mobile-nav-menu li:last-child {
    border-bottom: none;
}
.mobile-nav-menu li a {
    display: block;
    padding: 20px 0;
    color: #000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.mobile-nav-menu li a:hover {
    color: #666;
}

/* Mobile Social Icons */
.mobile-social {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.mobile-social a {
    color: #000;
    transition: opacity 0.3s ease;
}

.mobile-social a:hover {
    opacity: 0.7;
}

.mobile-social svg {
    width: 24px;
    height: 24px;
}

/* Backdrop overlay */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu Button Icons */
.mobile-menu-btn .hamburger-icon,
.mobile-menu-btn .close-icon {
    transition: opacity 0.3s ease;
}

.mobile-menu-btn.active .hamburger-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block !important;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Tablet (768px and up) - Hide mobile menu, show desktop nav */
@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
    
    .mobile-menu-overlay {
        display: none;
    }
    
    .nav-menu {
        display: flex;
    }
    
    /* Show email and instagram on desktop */
    .header-icons > a[aria-label="Email"],
    .header-icons > a[aria-label="Instagram"] {
        display: block;
    }
}
