/* HEADER CHILD THEME */
.site-header {
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 999;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    flex-wrap: wrap;
}

/* LOGO */
.site-logo img {
    max-height: 70px;
    display: block;
    margin: 0 auto;
}

/* MENÚS */
.main-nav-left .menu,
.main-nav-right .menu {
    display: flex;
    gap: 20px;
}
.main-nav-left .menu li a,
.main-nav-right .menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}
.main-nav-left .menu li a:hover,
.main-nav-right .menu li a:hover {
    color: #4caf50;
}

/* MOBILE */
.menu-toggle {
    display: none;
    background: none;
    border: none;
}
.hamburger {
    width: 25px;
    height: 3px;
    background-color: #333;
    position: relative;
}
.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #333;
    left: 0;
}
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

@media (max-width: 768px) {
    .main-nav-left .menu,
    .main-nav-right .menu {
        display: none;
        flex-direction: column;
        gap: 10px;
        background: #fff;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 20px;
    }
    .menu-toggle {
        display: block;
    }
}