/* 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: 35px;
    position: relative;
}

.mega-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.mega-menu-special-link {
    color: #374041;
    font-family: "Montserrat", Sans-serif;
    font-size: 15px;
    line-height: 28px;
    font-weight: bold;
}

.mega-menu-header h3 {
    margin-bottom: 0px;
}

.mega-menu-special-link:hover {
    text-decoration: underline;
}

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

.menu-item-wrapper > a {
    letter-spacing: 0.09px;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 400;
    font-family: "Montserrat", Sans-serif;
    position: relative;
}

/* Főmenü elemek aláhúzása */
.menu-item-wrapper > a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: #FFFFFF;
    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: 35px 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 15px;
    gap: 11px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #e0e0e0;
}

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

.mega-menu-beauty a {
    display: block;
    text-decoration: none;
    color: #374041;
    font-family: "Montserrat", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.05px;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.mega-menu-beauty a:hover {
    color: #A57884;
    font-weight: 600;
}

.mega-menu-column a {
    display: block;
    text-decoration: none;
    color: #374041;
    font-family: "Montserrat", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.05px;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.mega-menu-column a:hover {
    color: #A57884;
    font-weight: 600;
}

.mega-menu-beauty {
    display: flex
;
    flex-direction: column;
    width: 240px;
}

/* 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: white;
    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 {
    border-bottom: 1px solid #e0e0e0;
}

.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 {
    border-bottom: 1px solid #e0e0e078;
    padding-top: 15px;
    padding-bottom: 15px;
}

.mobile-menu-item-header a {
    text-decoration: none;
    flex-grow: 1;
    color: #374041;
    font-family: "Montserrat", Sans-serif;
    font-size: 15px;
    font-weight: 400;
}

.mobile-submenu-toggle {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 0px;
    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;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
}

.mobile-submenu a {
    display: block;
    padding: 10px 10px;
    font-family: "Montserrat", Sans-serif;
    font-weight: 400;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    border-top: 1px solid #f0f0f0;
}


.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;
}

/* Dropdown menü alapstílusok */
.dropdown-wrapper {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 4px;
    padding: 8px 0;
    margin-top: 5px;
}

/* Megjelenítés hover esetén */
.dropdown-wrapper:hover .dropdown-menu {
    display: block;
}

/* Dropdown menü linkek stílusa */
.dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: #374041;
    text-decoration: none;
    font-size: 15px;
    font-family: "Montserrat", Sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

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

/* Nyíl ikon hozzáadása a dropdown menüpontokhoz */
.has-dropdown > a::after {
    content: '▼';
    display: inline-block;
    margin-left: 5px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover > a::after {
    transform: rotate(180deg);
}

/* Animáció a megjelenéshez */
.dropdown-menu {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.dropdown-wrapper:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}




/* 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: 130px;
    }
}