/* Mega Menu Manager Styles */
.menu-item { position: relative; }

.mega-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    min-width: 300px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.menu-item:hover .mega-dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mega-dropdown h3 {
    margin: 0 0 15px 0;
    padding: 15px 20px 0;
    font-size: 16px;
    color: #333;
}

.mega-dropdown a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mega-dropdown a:hover {
    color: #0066cc;
}

@media (max-width: 768px) {
    .mega-dropdown {
        position: fixed;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100vh;
        border-radius: 0;
        overflow-y: auto;
    }
}
