.menuheader {
    width: 100%;
    position: relative;
}

.menuheader__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 10px 30px 10px;
    margin-bottom: 15px;
}

.menuheader__list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 50px;
    padding: 0;
    margin: 0;
    list-style: none;
    overflow-x: auto;
    width: 100%;
    flex: 1;
}

.menuheader__item,
.menuheader__item--has-panel {
    position: static;
}

.menuheader__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
}

.menuheader__sublink {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 5px 0;
    color: inherit;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.menuheader__sublink:hover,
.menuheader__sublink:focus {
    opacity: 0.8;
}

.menuheader__sublink--active {
    border-left: 3px solid #ff6a00;
    padding-left: calc(0.75rem - 3px);
}

.menuheader__sublink--active .menuheader__sublink-name {
    color: #ff6a00;
    font-weight: 700;
}

.menuheader__sublink-icon {
    flex-shrink: 0;
    width: 60px;
    height: 40px;
    object-fit: contain;
}

.menuheader__sublink-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.menuheader__sublink-name {
    display: block;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
    color: inherit;
}

.menuheader__sublink-desc {
    display: block;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.4;
    color: #000;
    margin-top: 0.125rem;
}

.menuheader__link {
    text-transform: uppercase;
}

.menuheader__link:hover,
.menuheader__link:focus {
    color: var(--link-hover-color, #333);
}

/* Desktop hover behavior only */
@media (min-width: 992px) {
    .menuheader__item--has-panel:hover > .menuheader__panel,
    .menuheader__item--has-panel:focus-within > .menuheader__panel,
    .menuheader__panel:hover {
        display: grid;
    }
}

.menuheader__link--active,
.menuheader__link--active:hover,
.menuheader__link--active:focus {
    color: #ff6a00;
    font-weight: 700;
}

.menuheader__item--promo .menuheader__link,
.menuheader__link--promo {
    color: #de2a2a;
    font-weight: 700;
}

.menuheader__item--promo .menuheader__link:hover,
.menuheader__item--promo .menuheader__link:focus,
.menuheader__link--promo:hover,
.menuheader__link--promo:focus {
    color: #ff8300;
}

.menuheader__panel {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% - 5px);
    width: 100%;
    margin: 0;
    padding: 30px;
    padding-top: 1.5rem;
    min-height: 650px;
    list-style: none;
    background-color: #fff;
    box-shadow: 0 18px 32px -18px rgba(0, 0, 0, 0.18);
    z-index: 50;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 3rem;
    pointer-events: auto;
}

.menuheader__panel::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.menuheader__panel-col--links {
    max-height: calc(650px - 1.5rem);
    overflow-y: auto;
    padding-right: 12px;
}

.menuheader__panel-col--links::-webkit-scrollbar {
    width: 8px;
}

.menuheader__panel-col--links::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

.menuheader__panel-col--links::-webkit-scrollbar-thumb {
    background-color: #ff6a00;
    border-radius: 4px;
}

.menuheader__panel-col--links::-webkit-scrollbar-thumb:hover {
    background-color: #ff8300;
}

.menuheader__panel-col {
    min-width: 0;
}

.menuheader__panel-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menuheader__panel-list-item {
    display: block;
}

.menuheader__panel-list-item + .menuheader__panel-list-item {
    margin-top: 0.5rem;
}

.menuheader__products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.menuheader__product {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 600px;
    border-radius: 0;
    overflow: hidden;
}

.menuheader__product::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
    transition: opacity 0.2s ease;
    z-index: 1;
}

.menuheader__product:hover::after,
.menuheader__product:focus-within::after {
    opacity: 0.75;
}

.menuheader__product-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.menuheader__product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menuheader__product-info {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    text-align: center;
    pointer-events: none;
}

.menuheader__product-name {
    display: block;
    font-weight: 700;
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    line-height: 1.1;
    text-transform: uppercase;
    pointer-events: auto;
}

.menuheader__product-name:hover,
.menuheader__product-name:focus {
    color: #fff;
}

.menuheader__product-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    background-color: #ff6a00;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    pointer-events: auto;
}

.menuheader__product-button:hover,
.menuheader__product-button:focus {
    background-color: #ff8300;
    color: #fff;
    transform: translateY(-2px);
}

.menuheader__extras {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
}

.menuheader__extras-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--menuheader-extras-label-color, #111);
    text-decoration: none;
}

.menuheader__extras-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    background-color: #ff6a00;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.menuheader__extras-phone img {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.menuheader__extras-phone:hover,
.menuheader__extras-phone:focus {
    background-color: #ff8300;
    color: #fff;
    transform: translateY(-2px);
}

/* Mobile Close Button */
.menuheader__mobile-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    font-size: 40px;
    line-height: 1;
    color: #333;
    cursor: pointer;
    z-index: 1002;
}

@media (max-width: 991px) {
    /* Hide scrollbars globally on mobile menu */
    body.menuheader-open {
        overflow: hidden;
    }

    body.menuheader-open::-webkit-scrollbar {
        display: none;
    }

    /* Mobile Modal Styles */
    .menuheader__inner {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        transition: left 0.3s ease;
        overflow-x: hidden;
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 80px 20px 40px;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y pinch-zoom;
        overscroll-behavior-x: none;
    }

    .menuheader__inner::-webkit-scrollbar {
        width: 0 !important;
        height: 0 !important;
        display: none !important;
    }

    .menuheader__inner * {
        scrollbar-width: none;
        -ms-overflow-style: none;
        touch-action: pan-y pinch-zoom;
        overscroll-behavior-x: none;
    }

    .menuheader__inner *::-webkit-scrollbar {
        width: 0 !important;
        height: 0 !important;
        display: none !important;
    }

    .menuheader__list,
    .menuheader__panel,
    .menuheader__panel-col {
        overflow-x: hidden !important;
        overscroll-behavior-x: none;
        touch-action: pan-y pinch-zoom;
    }

    .menuheader__inner.is-open {
        left: 0;
    }

    /* Show close button in mobile */
    .menuheader__mobile-close {
        display: block;
    }

    /* Mobile List Styles */
    .menuheader__list {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .menuheader__item {
        position: static;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .menuheader__link {
        padding: 16px 0;
        font-size: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menuheader__item--has-panel .menuheader__link::after {
        content: '›';
        font-size: 24px;
        font-weight: 300;
        transition: transform 0.3s ease;
    }

    /* Mobile Panel Styles */
    .menuheader__panel {
        display: none;
        position: static;
        width: 100%;
        min-height: auto;
        height: auto;
        padding: 0 0 16px 20px;
        box-shadow: none;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .menuheader__panel::before {
        display: none;
    }

    .menuheader__item--has-panel.is-open > .menuheader__panel {
        display: grid;
    }

    .menuheader__item--has-panel.is-open > .menuheader__link::after {
        transform: rotate(90deg);
    }

    .menuheader__panel-col {
        padding: 0;
        min-width: 0;
    }

    .menuheader__panel-col--links {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .menuheader__panel-list {
        padding: 16px 0 0;
    }

    .menuheader__sublink {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding: 12px 0;
    }

    .menuheader__sublink-icon {
        width: 48px;
        height: 32px;
        flex-shrink: 0;
    }

    .menuheader__sublink-content {
        flex: 1;
        min-width: 0;
    }

    .menuheader__products {
        display: none;
    }

    .menuheader__extras {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 2px solid rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        width: 100%;
    }

    .menuheader__extras-label,
    .menuheader__extras-phone {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Overlay */
    body.menuheader-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
}

/* Global scrollbar hide for all mobile devices */
@media (max-width: 991px) {
    * {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    *::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }
}

