/*
Theme Name: Lightning Child
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/

.custom-mega-menu {
    position: relative;
    background-color: #fff;
}

.custom-mega-menu .menu {
    list-style: none;
    padding: 0;
    display: flex;
}

.custom-mega-menu .menu > li {
    position: relative;
    padding: 10px 20px;
}

.custom-mega-menu .mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 600px;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.custom-mega-menu .menu-item-has-children:hover .mega-menu {
    display: flex;
}

.custom-mega-menu .menu-column {
    flex: 1;
    padding: 20px;
    border-right: 1px solid #eee;
}

.custom-mega-menu .menu-column:last-child {
    border-right: none;
}

.custom-mega-menu .menu-column h3 {
    margin: 0 0 10px;
    font-size: 16px;
    color: #333;
}

.custom-mega-menu .menu-column ul {
    list-style: none;
    padding: 0;
}

.custom-mega-menu .menu-column ul li {
    margin: 5px 0;
}

.custom-mega-menu .menu-column ul li a {
    color: #555;
    text-decoration: none;
}

.custom-mega-menu .menu-column ul li a:hover {
    color: #0073aa;
}