/* Alap konténer stílusok */
.responsive-menu-container {
    position: relative;
}

/* Desktop menü stílusok */
.desktop-menu {
    display: flex;
    flex-direction: row;
}

.desktop-menu-container {
    display: flex;
    gap: 30px;
    position: relative;
}

.menu-item-wrapper {
    position: relative;
    display: inline-block;
}

.menu-item-wrapper > a {
    letter-spacing: 0.09px;
    text-decoration: none;
    position: relative;
    color: #212121;
    display: flex;
    font-family: "Barlow Condensed", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
}

/* Főmenü elemek aláhúzása */
.menu-item-wrapper > a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #212121;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.menu-item-wrapper > a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Mega menü stílusok */
.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -310px;
    width: 850px;
    background-color: #fff;
    z-index: 1000;
    padding: 45px 20px;
}

.menu-item-wrapper:hover .mega-menu {
    display: flex;
}

/* Mega menü intro rész */
.mega-menu-intro {
    flex: 0 0 25%;
    padding-right: 20px;
}

.mega-menu-intro h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #374041;
    font-family: "Montserrat", Sans-serif;
    font-weight: 500;
}

.mega-menu-intro p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 24px;
    color: #374041;
    font-family: "Montserrat", Sans-serif;
    width: 200px;
}

.mega-menu-all-link {
    display: inline-block;
    color: #A57884;
    text-decoration: none;
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
    font-weight: 600;
}
/* Mega menü oszlopok */
.mega-menu-columns {
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.mega-menu-column {
    flex: 1;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #e0e0e0;
}

.mega-menu-column:last-child {
    border-right: none;
}

.mega-menu-column a {
    text-decoration: none;
    line-height: 28px;
    letter-spacing: 0.05px;
    transition: color 0.3s ease, font-weight 0.3s ease;
    color: #212121;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: "Barlow Condensed", Sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
}

.mega-menu-column a:hover {
    color: #AFD9AD;
}

/* Mobil menü stílusok */
.mobile-menu {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    color: #fff;
    padding: 0px;
    cursor: pointer;
}

svg#fi_9121er524 {
    fill: #000000;
    width: 42px;
    height: auto;
    margin-bottom: -3px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    background: #fff;
    padding: 20px;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 80%;
    max-width: 300px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    transition: transform 0.3s ease;
    transform: translateX(100%);
}

.mobile-menu-overlay.open .mobile-menu-content {
    transform: translateX(0);
}


.mobile-menu-item:last-child {
    border-bottom: none;
}

.mobile-menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    flex-direction: row;
}

nav.mobile-menu-nav {
    margin-top: 31px;
}

.mobile-menu-item {
    padding-top: 12px;
    padding-bottom: 0px;
}

.mobile-menu-item-header a {
    text-decoration: none;
    flex-grow: 1;
    color: #050327;
    font-family: "Barlow Condensed", Sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 8px;
    letter-spacing: 0.7px;
}

.mobile-submenu-toggle {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 0px;
    color: #374041;
}

.mobile-submenu-toggle:hover {
    background: none;
    color: #374041;
}

button.mobile-menu-close {
    background: transparent;
    color: #374041;
    padding: 0px;
    font-size: 22px;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.mobile-submenu {
    max-height: 0;
    padding: 0px;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
}

.mobile-submenu a {
    display: block;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    padding: 0px;
    margin-bottom: 0px;
    font-family: "Barlow Condensed", Sans-serif;
    color: #050327;
}

.mobile-mega-item {
    margin-bottom: 10px;
}

a.mobile-mega-all-linka {
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    font-family: "Barlow Condensed", Sans-serif;
    color: #050327;
    font-weight: 700;
}

a.mobile-mega-button {
        font-size: 14px;
        font-family: "Barlow Condensed", Sans-serif;
    color: #050327;
    font-weight: 700;
}

.mobile-menu-footer {
    margin-top: 25px;
}

.mobilgomb {
    margin-bottom: 25px;
}

.foglalasmobil {
    display: block;
    font-family: "Montserrat", Sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 15px;
    background-color: #A57884;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 20px;
}

.mobiltextinfo {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.custom-fejleclink {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #666;
}

.mobilciminfo {
    font-weight: 600;
    margin-bottom: 5px;
    font-family: "Montserrat", Sans-serif;
    font-size: 15px;
    color: #666;
}

.mobilinfotext {
    font-size: 14px;
    font-family: "Montserrat", Sans-serif;
    color: #666;
}

p.column-title {
    font-family: "Barlow Condensed", Sans-serif;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
    color: #212121;
    margin-bottom: 5px;
}

p.column-description {
    color: #050327;
    font-family: "mundial", Sans-serif;
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 10px;
}

h3.mobile-mega-title {
    color: #050327;
    font-family: "Barlow Condensed", Sans-serif;
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 8px;
}

p.mobile-mega-description {
    color: #050327;
    font-family: "mundial", Sans-serif;
    font-size: 14px;
    font-weight: 200;
    width: 100%;
    margin-bottom: 10px;
    line-height: 20px;
}

.dropdown-arrow {
    margin-left: 1px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-end;
    height: 31px;
}

/* Desktop dropdown menü stílusok */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px 0;
}

.menu-item-wrapper:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 8px 15px;
    color: #212121;
    text-decoration: none;
    font-family: "Barlow Condensed", Sans-serif;
    font-size: 17px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
}

/* Mobil dropdown menü stílusok */
.mobile-dropdown {
    background-color: #f7f7f7;
    padding: 0px 0;
}

.mobile-dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #050327;
    font-family: "Barlow Condensed", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

svg#fi_2722987 {
    height: auto;
    width: 25px;
}

.mobile-dropdown-item:hover {
    color: #AFD9AD;
}

/* Meglévő mobil submenu módosítások */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-menu-item.open .mobile-submenu {
    max-height: 1000px; /* Elég nagy érték, hogy minden tartalom elférjen */
}

.mobile-menu-item.open .mobile-submenu-toggle {
    transform: rotate(45deg);
}

/* Reszponzív beállítások */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu,
    .mobile-menu-toggle {
        display: block;
    }

    img.mobile-logo {
        width: 190px;
    }
}

/* Mega dropdown menü stílusok */
.mega-dropdown {
    min-width: 350px;
    padding: 15px 0;
}

.dropdown-item-with-desc {
    display: block !important;
    padding: 15px 20px !important;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.dropdown-item-with-desc:last-child {
    border-bottom: none;
}

.dropdown-item-with-desc:hover {
    background-color: #f8f8f8 !important;
}

.dropdown-title {
    display: block;
    font-family: "Barlow Condensed", Sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
    color: #212121;
    margin-bottom: 5px;
}

.dropdown-description {
    display: block;
    font-family: "mundial", Sans-serif;
    font-size: 14px;
    font-weight: 200;
    color: #050327;
    line-height: 1.4;
}

.mobile-submenu-always-open {
    padding: 10px 0 0 10px;
    background-color: #fff;
    display: block;
}

.mobile-dropdown-always-open {
    background-color: #f7f7f7;
    padding: 10px 0 10px 20px; /* Behúzás jobbra */
}

.mobile-dropdown-always-open .mobile-dropdown-item {
    padding: 8px 0;
    margin-left: 0;
}

/* Mega menü elemek behúzása */
.mobile-submenu-always-open .mobile-mega-all-products {
    margin-left: 0;
}



/* Mobile menu item header módosítása */
.mobile-menu-item-header {
    display: block; /* Változtatás flex-ről block-ra */
    cursor: default; /* Nem kattintható */
}

/* Eltávolítjuk a toggle gomb stílusokat, mivel már nem használjuk */
.mobile-submenu-toggle {
    display: none;
}