@media screen and (max-width: 768px) {
    /* Make the mobile menu scrollable and prevent background scroll bleed */
    .mx-header__menu-panel {
        overflow: hidden;
    }
    .mx-header__menu-panel-inner {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding-bottom: 200px; /* extra space to reach last items */
    }

    /* Compact spacing for mobile submenus */
    .mx-header__menu .sub-menu li a {
        padding: 8px 16px !important;
        line-height: 1.2 !important;
    }
    .mx-header__menu .menu-item-has-children > a {
        padding-right: 36px !important; /* room for chevron */
        position: relative;
    }
    /* Use Elementor eicon chevrons injected by JS */
    .mx-header__menu .menu-item-has-children > a .mx-submenu-toggle {
        position: absolute;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        line-height: 1;
        color: currentColor; /* match link color so it stays visible on hover/white bg */
        font-weight: 900; /* ensure solid icon weight when FA is used */
        opacity: 0.9;
        display: inline-block; /* allow transform rotation */
        z-index: 1;
        pointer-events: none; /* allow entire link to be the tap target */
    }
    .mx-header__menu .menu-item-has-children > a .mx-submenu-toggle svg {
        display: block;
    }

    /* Primary state toggle for inline SVG chevron */
    .mx-header__menu .menu-item-has-children > a .mx-submenu-toggle.is-open {
        transform: translateY(-50%) rotate(90deg);
        color: #dfa038 !important; /* brand color for open chevron */
    }

    /* Fallback: if down icon glyph fails to load, rotate the right chevron when open */
    .mx-header__menu .menu-item-has-children.submenu-open > a .mx-submenu-toggle {
        transform: translateY(-50%) rotate(90deg);
        color: #dfa038 !important; /* brand color for open chevron */
    }

    /* Show/hide submenus based on JS-added class */
    .mx-header__menu .menu-item-has-children > .sub-menu {
        display: none;
        margin: 6px 0 0 0;
    }
    .mx-header__menu .menu-item-has-children.submenu-open > .sub-menu {
        display: block;
    }

    /* Ensure submenu items do not overflow horizontally */
    .mx-header__menu .sub-menu {
        overflow-x: hidden;
    }
}
/**
 * MX Transparent Header CSS
 */

/* Custom Gold Diamond List Icons - Centered Above Content */
.gold-diamond-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gold-diamond-list li {
    position: relative;
    padding-top: 40px;
    margin-bottom: 30px;
    text-align: center;
}

.gold-diamond-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    background-color: #876729; /* Gold color */
    border: 2px solid #876729;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.gold-diamond-list li:hover::before {
    background-color: #876729;
    border-color: #876729;
    box-shadow: 0 3px 6px rgba(184, 148, 31, 0.4);
    transition: all 0.3s ease;
}

/* Custom Gold Diamond List Icons - Left Positioned for Centered Text */
.gold-diamond-list-left {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.gold-diamond-list-left li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    min-height: 1.5em;
}

.gold-diamond-list-left li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #876729; /* Gold color */
    border: 2px solid #876729;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
    transform: rotate(45deg);
    margin-right: 15px;
    flex-shrink: 0;
}

.gold-diamond-list-left li:hover::before {
    background-color: #876729;
    border-color: #876729;
    box-shadow: 0 3px 6px rgba(184, 148, 31, 0.4);
    transition: all 0.3s ease;
}

/* Header Base Styles */
.mx-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px; /* Increased height */
    background-color: rgba(0, 0, 0, 0.2); /* Semi-transparent background */
    color: #ffffff;
    z-index: 999;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px); /* Blur effect */
    -webkit-backdrop-filter: blur(8px); /* For Safari */
    font-family: var(--e-global-typography-primary-font-family), sans-serif; /* Inherit Elementor primary font */
}

/* Adjust for WordPress admin bar */
body.admin-bar .mx-header {
    top: 32px; /* Height of WP admin bar */
}

@media screen and (max-width: 782px) {
    body.admin-bar .mx-header {
        top: 46px; /* Mobile admin bar height */
    }
}

.mx-header--scrolled {
    background-color: #ffffff;
    color: #000000;
    height: 90px; /* Slightly taller than original scrolled height */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.mx-header--menu-active {
    background-color: #ffffff;
    color: #000000;
    /* Keep original height - don't shrink */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.mx-header:hover {
    background-color: #ffffff;
    color: #000000;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Ensure menu-active state overrides any hover state */
.mx-header.mx-header--menu-active,
.mx-header.mx-header--menu-active:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Header Content Layout */
.mx-header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 30px;
    max-width: 1920px;
    margin: 0 auto;
}

/* Left and Right Link Containers */
.mx-header__links {
    display: flex;
    align-items: center;
}

.mx-header__links--left {
    justify-content: flex-start;
    flex: 1;
}

.mx-header__links--right {
    justify-content: flex-end;
    flex: 1;
}

/* Logo Styles */
.mx-header__logo {
    position: relative;
    display: block;
    text-align: center;
    padding: 10px 20px;
}

/* Make sure logo switching works correctly for all white header states */
.mx-header--scrolled .mx-header__logo-transparent,
.mx-header:hover .mx-header__logo-transparent,
.mx-header--menu-active .mx-header__logo-transparent {
    opacity: 0 !important;
}

.mx-header--scrolled .mx-header__logo-solid,
.mx-header:hover .mx-header__logo-solid,
.mx-header--menu-active .mx-header__logo-solid {
    opacity: 1 !important;
}

.mx-header__logo img {
    height: auto;
    max-height: 80px;
    width: 200px; /* Increased from 150px to 200px (+50px) */
    object-fit: contain;
    transition: all 0.3s ease;
}

.mx-header__logo-transparent {
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.mx-header__logo-solid {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mx-header--scrolled .mx-header__logo-transparent,
.mx-header:hover .mx-header__logo-transparent {
    opacity: 0;
}

.mx-header--scrolled .mx-header__logo-solid,
.mx-header:hover .mx-header__logo-solid {
    opacity: 1;
}

/* When scrolled, reduce logo size */
.mx-header--scrolled .mx-header__logo img {
    max-height: 60px;
}

/* Hamburger Menu Button */
.mx-header__burger {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
    z-index: 1000; /* Ensure it's above other elements */
}

.burger_span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Middle line is slightly shorter */
.burger_span--middle {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

/* Hamburger icon animation when active */
.mx-header__burger.active .burger_span--top {
    transform: rotate(45deg) translate(7px, 6px);
}

.mx-header__burger.active .burger_span--middle {
    opacity: 0;
}

.mx-header__burger.active .burger_span--bottom {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mx-header--scrolled .burger_span,
.mx-header:hover .burger_span,
.mx-header--menu-active .burger_span {
    background-color: #000000 !important;
}

/* Search Bar Styles */
.mx-header__search-wrapper {
    margin-left: 30px;
}

.search-desktop {
    position: relative;
}

.search-desktop__bar {
    display: flex;
    align-items: center;
    border-bottom: 1px solid currentColor;
    padding: 5px 0;
}

.search-desktop__bar svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.search-desktop__bar input {
    background: transparent;
    border: none;
    outline: none;
    font-size: 14px;
    padding: 5px 0;
    width: 120px;
    color: inherit;
}

/* Ensure search input text is dark when header is white */
.mx-header--scrolled .search-desktop__bar input,
.mx-header:hover .search-desktop__bar input,
.mx-header--menu-active .search-desktop__bar input {
    color: #000000 !important;
}

.search-desktop__bar input::placeholder {
    color: inherit;
    opacity: 0.7;
}

/* Contact Link Styles */
.mx-header__contact-link {
    display: flex;
    align-items: center;
    margin: 0 15px;
    color: inherit;
    text-decoration: none;
}

.icon-phone {
    margin-right: 8px;
}

.icon-phone path {
    fill: currentColor;
}

.contact-link-mobile {
    display: none;
}

.contact-link-expanded {
    display: flex;
}

/* Links */
.mx-header a,
.mx-header button {
    color: inherit;
    text-decoration: none;
}

/* Basic link styles */
.mx-header a {
    color: inherit;
    text-decoration: none;
}

/* Ensure text stays dark on white background */
.mx-header--scrolled a,
.mx-header--scrolled button,
.mx-header:hover a,
.mx-header:hover button,
.mx-header--menu-active a,
.mx-header--menu-active button {
    color: #000000 !important;
}

/* Shop Button */
.mx-header__booking-cta {
    margin-left: 20px; /* Added margin for spacing from Contact link */
}

.mx-header__booking-cta .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #ffffff;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Shop button on white header (scrolled, hover, menu active) */
.mx-header--scrolled .mx-header__booking-cta .button,
.mx-header:hover .mx-header__booking-cta .button,
.mx-header--menu-active .mx-header__booking-cta .button {
    color: #000000 !important;
    border-color: #000000 !important;
}

.mx-header__booking-cta .button:hover {
    background-color: transparent;
    opacity: 0.8;
}

.button--small {
    padding: 8px 16px;
    font-size: 13px;
}

/* Menu Panel */
.mx-header__menu-panel {
    position: fixed;
    top: 120px; /* Same as header height */
    left: 0;
    width: 100%;
    height: calc(100vh - 120px); /* Full height minus header */
    max-width: 400px;
    background-color: #ffffff;
    color: #000000;
    z-index: 998; /* Lower than header */
    display: flex;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), top 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/* Adjust for WordPress admin bar - applied once and not on hover */
body.admin-bar .mx-header__menu-panel {
    top: 152px; /* Fixed value: Header height (120px) + admin bar (32px) */
    height: calc(100vh - 152px); /* Fixed height calculation */
}

@media screen and (max-width: 782px) {
    body.admin-bar .mx-header__menu-panel {
        top: 166px; /* Fixed value: Header height (120px) + mobile admin bar (46px) */
        height: calc(100vh - 166px); /* Fixed height calculation */
    }
}

/* When header is scrolled, adjust panel position */
body:not(.admin-bar) .mx-header--scrolled ~ .mx-header__menu-panel {
    top: 90px; /* Same as scrolled header height */
    height: calc(100vh - 90px); /* Full height minus scrolled header */
}

body.admin-bar .mx-header--scrolled ~ .mx-header__menu-panel {
    top: 122px; /* Fixed value: Scrolled header height (90px) + admin bar (32px) */
    height: calc(100vh - 122px); /* Fixed height calculation */
}

.mx-header__menu-panel.active {
    transform: translateX(0);
}

.mx-header__menu-panel-inner {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 80px 40px 20px;
    position: relative;
    box-sizing: border-box;
}

/* Menu Close Button */
.mx-header__menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
}

.mx-header__menu-close-button {
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    position: relative;
    cursor: pointer;
    outline: none;
}

.close_span {
    position: absolute;
    top: 14px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000000;
}

.close_span:first-child {
    transform: rotate(45deg);
}

.close_span:last-child {
    transform: rotate(-45deg);
}

/* Menu Styles */
.mx-header__menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mx-header__menu > li {
    margin-bottom: 15px;
}

/* Ensure last menu item has extra space for visibility */
.mx-header__menu > li:last-child {
    margin-bottom: 100px;
}

/* Add extra bottom space to the entire menu container */
.mx-header__menu {
    margin: 0;
    padding: 0 0 0 0;
    list-style: none;
}

/* Ensure submenu containers also have bottom space */
.mx-header__menu .sub-menu {
    padding-bottom: 40px;
}

/* Override any header hover effects for menu items */
.mx-header__menu a,
.mx-header:hover .mx-header__menu a,
.mx-header--scrolled .mx-header__menu a {
    color: #000000 !important;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 0;
}

/* Special handling for menu items with submenu toggles */
.mx-header__menu .menu-item-has-children > a span:first-child {
    position: relative;
    display: inline-block;
}

.mx-header__menu .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mx-header__menu .menu-item-has-children > a::after,
.mx-submenu-items .menu-item-has-children > a::after {
    display: none; /* Remove the underline from parent link */
}

.mx-header__menu .menu-item-has-children > a span:first-child::after,
.mx-submenu-items .menu-item-has-children > a span:first-child::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: width 0.3s ease, left 0.3s ease;
}

.mx-header__menu .menu-item-has-children > a:hover span:first-child::after,
.mx-submenu-items .menu-item-has-children > a:hover span:first-child::after {
    width: 100%;
    left: 0;
}

/* Growing underline effect for navigation menu items */
.mx-header__menu a,
.mx-submenu-items a {
    position: relative;
    display: inline-block;
    width: auto;
}

/* New span-based animation system */
.mx-header__menu a .menu-text,
.mx-submenu-items a .menu-text {
    position: relative;
    display: inline-block;
}

.mx-header__menu a .menu-text::after,
.mx-submenu-items a .menu-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    /* Background color will be set by dynamic CSS from admin settings */
    transition: width 0.3s ease;
}

/* Parent and child menu item colors will be set by dynamic CSS from admin settings */

.mx-header__menu a:hover .menu-text::after,
.mx-submenu-items a:hover .menu-text::after {
    width: 100%; /* Full width animation instead of 30% */
}

/* Active menu items should also show underline */
.mx-header__menu .current-menu-item > a .menu-text::after,
.mx-header__menu .current-menu-parent > a .menu-text::after,
.mx-header__menu .current-menu-ancestor > a .menu-text::after,
.mx-header__menu .current_page_item > a .menu-text::after,
.mx-header__menu .current_page_parent > a .menu-text::after,
.mx-header__menu .current_page_ancestor > a .menu-text::after,
.mx-header__menu .sub-menu .current-menu-item > a .menu-text::after,
.mx-header__menu .sub-menu .current-menu-parent > a .menu-text::after,
.mx-header__menu .sub-menu .current-menu-ancestor > a .menu-text::after,
.mx-header__menu .sub-menu .current_page_item > a .menu-text::after,
.mx-header__menu .sub-menu .current_page_parent > a .menu-text::after,
.mx-header__menu .sub-menu .current_page_ancestor > a .menu-text::after {
    width: 100% !important;
    left: 0 !important;
    /* Color will be set by dynamic CSS from admin settings */
}

.mx-header__menu a:hover {
    opacity: 0.7;
}

/* Fallback for menu items without span wrapper (legacy support) */
.mx-header__menu a:not(:has(.menu-text))::after,
.mx-submenu-items a:not(:has(.menu-text))::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #A7925F !important; /* Ensure consistent gold/bronze color */
    transition: width 0.3s ease;
}

.mx-header__menu a:not(:has(.menu-text)):hover::after,
.mx-submenu-items a:not(:has(.menu-text)):hover::after {
    width: 100%;
}

/* Submenu Toggle Icon */
.mx-submenu-toggle {
    display: flex;
    align-items: center;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* Submenu Panel */
.mx-header__submenu-panel {
    position: fixed;
    top: 120px; /* Same as header height */
    left: -400px; /* Start off-screen, the width of the panel */
    width: 400px; /* Fixed width, not 100% */
    height: calc(100vh - 120px); /* Full height minus header */
    background-color: #f5f5f5;
    padding: 30px 40px 120px; /* Increased bottom padding for accessibility */
    transition: left 0.3s ease, opacity 0.2s ease;
    overflow-y: auto;
    z-index: 997; /* Lower than header but higher than menu panel overlay */
    opacity: 0; /* Start transparent */
    visibility: hidden; /* Start hidden */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

/* Adjust for WordPress admin bar */
body.admin-bar .mx-header__submenu-panel {
    top: calc(120px + 32px); /* Header height + admin bar */
    height: calc(100vh - 120px - 32px); /* Full height minus header and admin bar */
}

@media screen and (max-width: 782px) {
    body.admin-bar .mx-header__submenu-panel {
        top: calc(120px + 46px); /* Header height + mobile admin bar */
        height: calc(100vh - 120px - 46px); /* Full height minus header and mobile admin bar */
    }
}

.mx-header--scrolled ~ .mx-header__submenu-panel,
body:not(.admin-bar) .mx-header--scrolled ~ .mx-header__submenu-panel {
    top: 90px; /* Same as scrolled header height */
    height: calc(100vh - 90px); /* Full height minus scrolled header */
}

body.admin-bar .mx-header--scrolled ~ .mx-header__submenu-panel {
    top: calc(90px + 32px); /* Scrolled header height + admin bar */
    height: calc(100vh - 90px - 32px);
}

.mx-header__submenu-panel.active {
    /* Position to the right of parent menu (400px) */
    left: 400px;
    display: block; /* Show when active */
    visibility: visible;
    opacity: 1;
}

/* Submenu title - ensure consistent font size */
.mx-submenu-title,
.mx-header:hover .mx-submenu-title,
.mx-header--scrolled .mx-submenu-title,
.mx-header .mx-submenu-title {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    color: #000000 !important;
}

/* Submenu items styling */
.mx-submenu-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mx-submenu-items li {
    margin-bottom: 6px;
    width: 100%;
}

/* Ensure last submenu item has extra space for visibility */
.mx-submenu-items li:last-child {
    margin-bottom: 40px;
}

/* Override any header hover effects for submenu items as well */
.mx-submenu-items a,
.mx-header:hover .mx-submenu-items a,
.mx-header--scrolled .mx-submenu-items a,
.mx-header__submenu-panel a {
    color: #000000 !important;
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 8px 0;
    transition: all 0.2s ease;
    width: 100%;
}

.mx-submenu-items a:hover {
    opacity: 0.7;
}

/* Submenu overlay */
.mx-header__submenu-overlay {
    z-index: 996; /* Lower than submenu panel but higher than menu overlay */
    pointer-events: none; /* Allow clicks through submenu overlay */
}

/* Add responsive behavior for submenu positioning */
@media screen and (max-width: 900px) {
    .mx-header__submenu-panel.active {
        left: 0; /* On smaller screens, stack menus instead of side-by-side */
    }
}

.mx-header__submenu-back {
    margin-bottom: 20px;
}

.mx-header__submenu-back-button,
.mx-header:hover .mx-header__submenu-back-button,
.mx-header--scrolled .mx-header__submenu-back-button {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: #000000 !important;
    cursor: pointer;
    padding: 0;
    font-size: 16px;
    outline: none;
}

.back-icon {
    margin-right: 8px;
    font-size: 18px;
}

/* Submenu List */
.mx-header__submenu-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mx-header__submenu-content li {
    margin-bottom: 12px;
}

.mx-header__submenu-content a {
    font-size: 16px;
    padding: 6px 0;
}

/* Text Styles */
.text--body-1 {
    font-size: 16px;
    font-weight: 400;
}

/* Overlay for when menu is open */
.mx-header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 997; /* Lower z-index to avoid menu blocking */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none; /* Allow clicks through overlay */
}
.mx-header__overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .mx-header__content {
        padding: 0 15px;
    }
    
    .mx-header__search-wrapper {
        margin-left: 15px;
    }
    
    .mx-header__logo img {
        width: 120px;
    }
    
    .search-desktop__bar input {
        width: 80px;
    }
}

@media screen and (max-width: 768px) {
    .contact-link-expanded {
        display: none;
    }
    
    .contact-link-mobile {
        display: block;
    }
    
    /* Hide desktop phone link on mobile to prevent duplicate icons */
    .mx-header__contact-link.contact-link-desktop {
        display: none !important;
    }
    
    .header-link-container {
        display: none;
    }
    
    .mx-header__search-wrapper {
        display: none;
    }
    
    .mx-header__content {
        padding: 0 10px;
    }
}

@media screen and (max-width: 480px) {
    .mx-header__booking-cta .button {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .mx-header__logo img {
        width: 150px;
    }
    
    .mx-header__menu-panel-inner,
    .mx-header__submenu-panel {
        padding: 70px 25px 125px;
    }

    /* Make the mobile menu scrollable so long menus are accessible */
    .mx-header__menu-panel {
        overflow: hidden;
    }
    .mx-header__menu-panel-inner {
        max-height: calc(100vh + 210px);
        overflow-y: auto;
    }

    /* Compact spacing for mobile submenus */
    .mx-header__menu .sub-menu li a {
        padding: 8px 16px !important;
        line-height: 1.2 !important;
    }
    .mx-header__menu .menu-item-has-children > a {
        padding-right: 36px !important; /* room for chevron */
        position: relative;
    }
    /* Chevron indicator: right-facing by default */
    .mx-header__menu .menu-item-has-children > a::after {
        content: '\203A'; /* › */
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 16px;
        opacity: 0.8;
        transition: transform 0.2s ease, opacity 0.2s ease, content 0.2s ease;
        pointer-events: none;
    }
    /* When submenu is open, show down chevron */
    .mx-header__menu .menu-item-has-children.submenu-open > a::after {
        content: '\25BE'; /* ▾ */
        opacity: 1;
    }

    /* Show/hide submenus based on JS-added class */
    .mx-header__menu .menu-item-has-children .sub-menu {
        display: none;
        margin: 6px 0 0 0;
    }
    .mx-header__menu .menu-item-has-children.submenu-open > .sub-menu {
        display: block;
    }
}

/* Header Links Spacing */
.mx-header__links--right {
    display: flex;
    align-items: center;
    gap: 20px; /* Add space between all right-side items */
}

.header-link-container {
    margin-left: 15px; /* Additional margin for link containers */
}

.header-link-container:first-child {
    margin-left: 0; /* Remove margin from first link */
}

.mx-header__booking-cta {
    margin-left: 15px; /* Add margin to shop button */
}

.mx-header__contact-link.contact-link-desktop {
    margin-right: 15px; /* Add margin to phone link */
}

/* Responsive spacing adjustments */
@media screen and (max-width: 768px) {
    .mx-header__links--right {
        gap: 15px;
    }
    
    .header-link-container {
        margin-left: 10px;
    }
    
    .mx-header__booking-cta {
        margin-left: 10px;
    }
    
    .mx-header__contact-link.contact-link-desktop {
        margin-right: 10px;
    }
}

@media screen and (max-width: 480px) {
    .mx-header__links--right {
        gap: 10px;
    }
    
    .header-link-container {
        margin-left: 8px;
    }
    
    .mx-header__booking-cta {
        margin-left: 8px;
    }
}

/* ===== MOBILE MENU SIMPLE FIX ===== */
@media (max-width: 768px) {
    /* Simply change the menu panel width for mobile slide-in effect */
    .mx-header__menu-panel {
        width: 320px;
        max-width: 85vw;
    }
    
    /* DISABLE overlays ONLY ON MOBILE - preserve desktop overlay functionality */
    body.mx-mobile-menu-active .mx-header__overlay,
    body.mx-mobile-menu-active .mx-header__submenu-overlay {
        display: none !important;
    }
    
    /* Hide desktop submenu panel on mobile */
    .mx-header__submenu-panel {
        display: none;
    }
    
    /* Mobile submenu inline expansion */
    .mx-header__menu .menu-item-has-children > a {
        position: relative;
        padding-right: 50px;
    }
    
    /* Add chevron indicator for expandable items */
    .mx-header__menu .menu-item-has-children > a::after {
        content: '';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #666;
        transition: transform 0.3s ease;
    }
    
    /* Rotate chevron when submenu is open */
    .mx-header__menu .menu-item-has-children.submenu-open > a::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    /* Style the inline submenus */
    .mx-header__menu .sub-menu {
        display: block;
        list-style: none;
        margin: 0;
        padding: 0;
        background: #f8f9fa;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    /* Show submenu when parent is expanded */
    .mx-header__menu .menu-item-has-children.submenu-open .sub-menu {
        max-height: 500px;
    }
    
    /* Style submenu items */
    .mx-header__menu .sub-menu .menu-item {
        border-bottom: 1px solid #e9ecef;
    }
    
    .mx-header__menu .sub-menu .menu-item:last-child {
        border-bottom: none;
    }
    
    .mx-header__menu .sub-menu .menu-item > a {
        display: block;
        padding: 12px 20px 12px 40px;
        color: #666;
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        transition: all 0.2s ease;
    }
    
    .mx-header__menu .sub-menu .menu-item > a:hover {
        background: #e9ecef;
        color: #007cba;
    }
}
