/*
 Theme Name: LuxeBloem
 Theme URI: http://luxebloem.nl
 Author: Devotr
 Author URI: http://luxebloem.nl
 Description: Custom WooCommerce theme for LuxeBloem
 Version: 1.0
 License: GNU General Public License v2 or later
 License URI: https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: luxebloem
*/


/* Hamburger Icon */
.mobile-menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
}

.mobile-menu-icon span {
    display: block;
    height: 3px;
    background-color: #333;
}

/* Mobile Menu Styles */
.main-menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .mobile-menu-icon {
        display: flex;
    }

    .main-menu {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .main-menu.active {
        display: flex;
    }

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

    .menu-items li {
        padding: 15px 20px;
        border-bottom: 1px solid #ddd;
    }

    .menu-items li a {
        color: #333;
        text-decoration: none;
        display: block;
    }

    .menu-items li a:hover {
        background-color: #f7f7f7;
    }
}