/* Pagrindinis horizontalus meniu */
.header-depth1-wrap {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

/* Level 1: pagrindiniai punktai */
.header-depth1-link {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    color: #111;
    text-decoration: none;
    transition: color 0.2s;
    padding: 22px 8px;
}

.header-depth1-link:hover,
.header-depth1-menu.current-menu-item > .header-depth1-link,
.header-depth1-menu.active > .header-depth1-link {
    color: #e60012; 
}
.header-depth1-link:hover{
 text-decoration: underline;
}

/* Level 2: dropdown per visą langą, nedengia meniu */
.header-depth2-wrap {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    z-index: 999;
    padding: 0;
    border-bottom: 1px solid #E9E9E9;
}
#navmenu.elementor-widget{
    position:initial;
}
.header-depth1-menu:hover > .header-depth2-wrap,
.header-depth1-menu.active > .header-depth2-wrap {
    display: block;
    width: 100%;
}

/* Level 2 vidinis turinys - submenu-grid */
.header-depth2-inner,
.header-depth2-inner.submenu-grid {
    display: flex;
    gap: 0;
    background: #fff;
    padding: 0 32px;
    border: none;
    justify-content: flex-start;
    max-width: none;      /* NE max-width: 1200px */
    margin: 0;            /* NE margin: 0 auto */
    box-sizing: border-box;
    min-height: 220px;
}
.header-depth2-menus {
    display: flex;
    gap: 0;
    padding: 16px 0;
    margin: 0;
    list-style: none;
    width: 100%;
    max-width: 1200px; /* Maksimalus plotis */
    box-sizing: border-box;
    margin: 0 auto; /* Centruojame meniu */
    justify-content: center;
}

/* Level 2 punktai */
.header-depth2-menu {
    margin-bottom: 16px;
}

.header-depth2-link {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 17px;
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
}

.header-depth2-link:hover { color: #e60012; }

.header-depth2-link .tcl-icon { margin-left: 10px; }

/* Level 3 dropdown */
.header-depth3-wrap {
    margin-top: 10px;
}

.header-depth3-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header-depth3-menus {
    padding: 0;
    margin: 0 0 0 16px;
    list-style: none;
}

.header-depth3-menu {
    margin-bottom: 12px;
}

.header-depth3-link,
.header-flat-link {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
}

.header-depth3-link:hover,
.header-flat-link:hover {
    color: #e60012;
}

.header-depth3-link .tcl-icon,
.header-flat-link .tcl-icon {
    margin-left: 8px;
    font-size: 14px;
}

/* Paveikslėlių blokas */
.header-feature {
    margin-top: 8px;
    text-align: center;
}

.header-feature .image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    min-height: 80px;
    min-width: 120px;
}
.header-feature img,
.menu-img {
    max-width: 120px;
    max-height: 80px;
    border-radius: 8px;
    object-fit: contain;
}
.header-depth2-title-wrap {
    margin-bottom: 12px;
}
.header-depth2-title-text {
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

/* Atgal mygtukas mobilui ar siauram meniu */
.header-depth-back-wrap {
    display: none;
}

.submenu-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    min-width: 240px;
    padding: 24px 32px;
    border-right: 1px solid #eee;
    background: #fff;
    gap: 8px;
    min-height: 180px;
}
.submenu-card:last-child {
    border-right: none;
}
.submenu-card-image {
    margin-bottom: 14px;
    display: flex;
    justify-content: flex-start;
    min-height: 80px;
}
.submenu-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 7px;
    color: #222;
    text-align: left;
    line-height: 1;
}
.menu-description {
    color: #222;
    font-size: 15px;
    text-align: left;
    line-height: 1.5;
}
.header-depth-1-link:hover{
    text-decoration: underline;
    color: #000;
}