/* Header alignment/contact/mega overlay patch. Loaded by header-new.js. */

/* Top row: logo, catalog, search, contact block, callback button. */
.zt-header .zt-header__top-inner {
    grid-template-columns: 274px 262px minmax(360px, 1fr) 310px 180px;
}

.zt-header .zt-contact {
    display: grid;
    gap: 10px;
    min-width: 0;
    align-content: center;
}

.zt-header .zt-contact__item {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-width: 0;
    color: var(--zt-header-text);
    text-decoration: none;
}

.zt-header .zt-contact__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border: 1px solid #e4e7eb;
    border-radius: 50%;
    color: #2c333b;
    background: #fff;
    transition: color .18s ease, border-color .18s ease, background-color .18s ease;
}

.zt-header .zt-contact__icon {
    display: block;
    width: 20px;
    height: 20px;
}

.zt-header .zt-contact__text {
    min-width: 0;
    overflow: hidden;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zt-header .zt-contact__item--mail .zt-contact__text {
    font-size: 15px;
    font-weight: 600;
    color: #59606a;
}

.zt-header .zt-contact__item:hover .zt-contact__icon-wrap,
.zt-header .zt-contact__item:focus-visible .zt-contact__icon-wrap {
    border-color: var(--zt-header-accent);
    color: #151515;
    background: var(--zt-header-accent-soft);
}

.zt-header .zt-contact__item:hover .zt-contact__text {
    color: var(--zt-header-accent);
}

/* Second row: navigation is grouped and aligned to the right. */
.zt-header .zt-nav__inner {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    min-height: 76px;
}

.zt-header .zt-nav__list {
    display: flex;
    width: auto;
    min-width: 0;
    min-height: 76px;
    margin: 0 0 0 auto;
    align-items: stretch;
    justify-content: flex-end;
}

.zt-header .zt-nav__item {
    flex: 0 0 auto;
}

.zt-header .zt-nav__link,
.zt-header .zt-nav__trigger {
    width: auto;
    min-width: 0;
    gap: 12px;
    padding-right: 22px;
    padding-left: 22px;
}

.zt-header .zt-nav__item--parts::after {
    right: 20px;
    left: 20px;
}

.zt-header .zt-header-cart {
    flex: 0 0 auto;
    margin-left: 12px;
}

/* The page remains visible, but loses focus while the mega menu is open. */
.zt-page-overlay {
    position: fixed;
    z-index: 990;
    inset: 0;
    background: rgba(14, 20, 29, .38);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
    pointer-events: none;
}

.zt-page-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.zt-mega-open {
    overflow-x: hidden;
}

.zt-header .zt-mega {
    z-index: 1010;
}

@media (max-width: 1780px) {
    .zt-header .zt-header__top-inner {
        grid-template-columns: 235px 230px minmax(300px, 1fr) 280px 166px;
    }

    .zt-header .zt-contact__text {
        font-size: 16px;
    }

    .zt-header .zt-contact__item--mail .zt-contact__text {
        font-size: 14px;
    }

    .zt-header .zt-nav__link,
    .zt-header .zt-nav__trigger {
        padding-right: 17px;
        padding-left: 17px;
    }
}

@media (max-width: 1480px) {
    .zt-header .zt-header__top-inner {
        grid-template-columns: 210px 210px minmax(250px, 1fr) 250px 148px;
    }

    .zt-header .zt-contact {
        gap: 7px;
    }

    .zt-header .zt-contact__item {
        grid-template-columns: 31px minmax(0, 1fr);
        gap: 9px;
    }

    .zt-header .zt-contact__icon-wrap {
        width: 31px;
        height: 31px;
        flex-basis: 31px;
    }

    .zt-header .zt-contact__icon {
        width: 17px;
        height: 17px;
    }

    .zt-header .zt-contact__text {
        font-size: 14px;
    }

    .zt-header .zt-contact__item--mail .zt-contact__text {
        font-size: 13px;
    }

    .zt-header .zt-nav__inner,
    .zt-header .zt-nav__list {
        min-height: 68px;
    }

    .zt-header .zt-nav__link,
    .zt-header .zt-nav__trigger {
        gap: 8px;
        padding-right: 13px;
        padding-left: 13px;
    }
}

@media (max-width: 1220px) {
    .zt-header .zt-header__top-inner {
        grid-template-columns: 190px 190px minmax(240px, 1fr) 230px;
    }

    .zt-header .zt-nav__link,
    .zt-header .zt-nav__trigger {
        gap: 7px;
        padding-right: 10px;
        padding-left: 10px;
        font-size: 14px;
    }

    .zt-header .zt-nav__icon {
        width: 23px;
        height: 23px;
    }

    .zt-header .zt-header-cart {
        margin-left: 5px;
    }
}

@media (max-width: 1080px) {
    .zt-header .zt-contact {
        display: none !important;
    }

    .zt-page-overlay {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .zt-page-overlay {
        transition: none;
    }
}

/* v3: equal contact typography, plain icons, navigation on the opposite edge. */
.zt-header .zt-contact__item {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 10px;
}

.zt-header .zt-contact__icon-wrap {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #2c333b;
}

.zt-header .zt-contact__icon {
    width: 21px;
    height: 21px;
}

.zt-header .zt-contact__text,
.zt-header .zt-contact__item--mail .zt-contact__text {
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--zt-header-text);
}

.zt-header .zt-contact__item:hover .zt-contact__icon-wrap,
.zt-header .zt-contact__item:focus-visible .zt-contact__icon-wrap {
    border-color: transparent;
    background: transparent;
    color: var(--zt-header-accent);
}

/* Menu begins at the left edge of the common shell; cart stays on the right. */
.zt-header .zt-nav__inner {
    justify-content: flex-start;
}

.zt-header .zt-nav__list {
    margin: 0 auto 0 0;
    justify-content: flex-start;
}

@media (max-width: 1780px) {
    .zt-header .zt-contact__text,
    .zt-header .zt-contact__item--mail .zt-contact__text {
        font-size: 15px;
        font-weight: 700;
    }
}

@media (max-width: 1480px) {
    .zt-header .zt-contact__item {
        grid-template-columns: 24px minmax(0, 1fr);
        gap: 8px;
    }

    .zt-header .zt-contact__icon-wrap {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .zt-header .zt-contact__icon {
        width: 18px;
        height: 18px;
    }

    .zt-header .zt-contact__text,
    .zt-header .zt-contact__item--mail .zt-contact__text {
        font-size: 14px;
        font-weight: 700;
    }
}


/* v4: exact left alignment with the logo and animated navigation icons. */
.zt-header .zt-nav__item:first-child .zt-nav__link {
    padding-left: 0;
}

.zt-header .zt-nav__icon {
    transform-origin: 50% 50%;
    will-change: transform;
    transition: color .18s ease, transform .18s ease, filter .18s ease;
}

.zt-header .zt-nav__item:hover .zt-nav__icon,
.zt-header .zt-nav__item:focus-within .zt-nav__icon {
    color: var(--zt-header-accent);
    filter: drop-shadow(0 4px 7px rgba(var(--zt-header-accent-rgb), .24));
}

/* Home: soft hop. */
.zt-header .zt-nav__item:nth-child(1):hover .zt-nav__icon,
.zt-header .zt-nav__item:nth-child(1):focus-within .zt-nav__icon {
    animation: zt-nav-home-hop .52s cubic-bezier(.22,.9,.3,1);
}

/* Spare parts: gear rotation. */
.zt-header .zt-nav__item:nth-child(2):hover .zt-nav__icon,
.zt-header .zt-nav__item:nth-child(2):focus-within .zt-nav__icon {
    animation: zt-nav-gear-spin .62s cubic-bezier(.2,.8,.25,1);
}

/* Service: a short wrench swing. */
.zt-header .zt-nav__item:nth-child(3):hover .zt-nav__icon,
.zt-header .zt-nav__item:nth-child(3):focus-within .zt-nav__icon {
    animation: zt-nav-wrench-swing .58s ease-in-out;
}

/* Delivery: small forward drive. */
.zt-header .zt-nav__item:nth-child(4):hover .zt-nav__icon,
.zt-header .zt-nav__item:nth-child(4):focus-within .zt-nav__icon {
    animation: zt-nav-truck-drive .62s cubic-bezier(.2,.8,.25,1);
}

/* Company: restrained vertical pulse. */
.zt-header .zt-nav__item:nth-child(5):hover .zt-nav__icon,
.zt-header .zt-nav__item:nth-child(5):focus-within .zt-nav__icon {
    animation: zt-nav-building-pulse .56s ease-in-out;
}

/* Contacts: envelope pop. */
.zt-header .zt-nav__item:nth-child(6):hover .zt-nav__icon,
.zt-header .zt-nav__item:nth-child(6):focus-within .zt-nav__icon {
    animation: zt-nav-mail-pop .54s cubic-bezier(.22,.9,.3,1);
}

@keyframes zt-nav-home-hop {
    0%, 100% { transform: translateY(0) scale(1); }
    42% { transform: translateY(-5px) scale(1.08); }
    70% { transform: translateY(1px) scale(.98); }
}

@keyframes zt-nav-gear-spin {
    0% { transform: rotate(0deg) scale(1); }
    65% { transform: rotate(210deg) scale(1.08); }
    100% { transform: rotate(180deg) scale(1); }
}

@keyframes zt-nav-wrench-swing {
    0%, 100% { transform: rotate(0deg) translateY(0); }
    30% { transform: rotate(-14deg) translateY(-2px); }
    62% { transform: rotate(11deg) translateY(-3px); }
}

@keyframes zt-nav-truck-drive {
    0%, 100% { transform: translateX(0) translateY(0); }
    28% { transform: translateX(-3px) translateY(-1px); }
    68% { transform: translateX(6px) translateY(-1px); }
}

@keyframes zt-nav-building-pulse {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.09); }
}

@keyframes zt-nav-mail-pop {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    38% { transform: translateY(-4px) rotate(-5deg) scale(1.08); }
    70% { transform: translateY(0) rotate(4deg) scale(1.02); }
}

@media (prefers-reduced-motion: reduce) {
    .zt-header .zt-nav__item:hover .zt-nav__icon,
    .zt-header .zt-nav__item:focus-within .zt-nav__icon {
        animation: none !important;
        transform: translateY(-2px);
    }
}

/* v5: premium button typography and animated navigation labels. */
.zt-header .zt-catalog-button,
.zt-header .zt-callback-button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    font-family: "PT Sans Caption", "Montserrat", "Arial", sans-serif;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .025em;
    text-rendering: geometricPrecision;
}

.zt-header .zt-catalog-button {
    font-size: 17px;
}

.zt-header .zt-callback-button {
    font-size: 15px;
    letter-spacing: .035em;
}

/* Soft light pass on the two main header buttons. */
.zt-header .zt-catalog-button::before,
.zt-header .zt-callback-button::before {
    position: absolute;
    z-index: -1;
    top: -35%;
    bottom: -35%;
    left: -45%;
    width: 34%;
    content: "";
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent);
    transform: skewX(-18deg) translateX(0);
    transition: opacity .2s ease;
    pointer-events: none;
}

.zt-header .zt-catalog-button:hover::before,
.zt-header .zt-catalog-button:focus-visible::before,
.zt-header .zt-callback-button:hover::before,
.zt-header .zt-callback-button:focus-visible::before {
    opacity: 1;
    animation: zt-header-button-shine .72s ease-out;
}

/* Navigation label animation: lift, highlight and a short underline sweep. */
.zt-header .zt-nav__link > span,
.zt-header .zt-nav__trigger > span {
    position: relative;
    display: inline-block;
    transform: translateZ(0);
    transform-origin: 50% 100%;
    transition:
        color .2s ease,
        transform .24s cubic-bezier(.2,.8,.25,1),
        text-shadow .24s ease;
    will-change: transform;
}

.zt-header .zt-nav__link > span::after,
.zt-header .zt-nav__trigger > span::after {
    position: absolute;
    right: 50%;
    bottom: -8px;
    left: 50%;
    height: 2px;
    border-radius: 999px;
    content: "";
    opacity: 0;
    background: linear-gradient(90deg, var(--zt-header-accent) 0%, var(--zt-header-accent) 52%, var(--zt-header-accent) 100%);
    box-shadow: 0 4px 10px rgba(var(--zt-header-accent-rgb),.28);
    transition:
        right .28s cubic-bezier(.2,.8,.25,1),
        left .28s cubic-bezier(.2,.8,.25,1),
        opacity .18s ease;
    pointer-events: none;
}

.zt-header .zt-nav__item:hover .zt-nav__link > span,
.zt-header .zt-nav__item:hover .zt-nav__trigger > span,
.zt-header .zt-nav__item:focus-within .zt-nav__link > span,
.zt-header .zt-nav__item:focus-within .zt-nav__trigger > span,
.zt-header .zt-nav__trigger[aria-expanded="true"] > span {
    color: #17191d;
    text-shadow: 0 5px 14px rgba(var(--zt-header-accent-rgb),.17);
    animation: zt-nav-label-rise .46s cubic-bezier(.2,.8,.25,1);
}

.zt-header .zt-nav__item:hover .zt-nav__link > span::after,
.zt-header .zt-nav__item:hover .zt-nav__trigger > span::after,
.zt-header .zt-nav__item:focus-within .zt-nav__link > span::after,
.zt-header .zt-nav__item:focus-within .zt-nav__trigger > span::after,
.zt-header .zt-nav__trigger[aria-expanded="true"] > span::after {
    right: 0;
    left: 0;
    opacity: 1;
}

/* Slight stagger makes icon and label feel like one coordinated motion. */
.zt-header .zt-nav__item:hover .zt-nav__icon,
.zt-header .zt-nav__item:focus-within .zt-nav__icon {
    animation-delay: .025s;
}

@keyframes zt-header-button-shine {
    0% { transform: skewX(-18deg) translateX(0); }
    100% { transform: skewX(-18deg) translateX(520%); }
}

@keyframes zt-nav-label-rise {
    0% { transform: translateY(0) scale(1); }
    42% { transform: translateY(-3px) scale(1.025); }
    72% { transform: translateY(1px) scale(.995); }
    100% { transform: translateY(0) scale(1); }
}

@media (max-width: 1480px) {
    .zt-header .zt-catalog-button {
        font-size: 15px;
    }

    .zt-header .zt-callback-button {
        font-size: 13px;
    }

    .zt-header .zt-nav__link > span::after,
    .zt-header .zt-nav__trigger > span::after {
        bottom: -6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .zt-header .zt-catalog-button::before,
    .zt-header .zt-callback-button::before,
    .zt-header .zt-nav__link > span,
    .zt-header .zt-nav__trigger > span {
        animation: none !important;
        transition: none !important;
    }

    .zt-header .zt-nav__item:hover .zt-nav__link > span,
    .zt-header .zt-nav__item:hover .zt-nav__trigger > span,
    .zt-header .zt-nav__item:focus-within .zt-nav__link > span,
    .zt-header .zt-nav__item:focus-within .zt-nav__trigger > span {
        transform: none;
    }
}


/* v6: separate dropdowns for spare parts, service and special offers. */
.zt-header .zt-nav__list {
    gap: 0;
}

.zt-header .zt-nav__item--mega::after {
    position: absolute;
    right: 16px;
    bottom: -1px;
    left: 16px;
    height: 2px;
    border-radius: 2px 2px 0 0;
    content: "";
    opacity: 0;
    background: var(--zt-header-accent);
    transform: scaleX(.35);
    transition: opacity .18s ease, transform .22s ease;
}

.zt-header .zt-nav__item--parts::after {
    opacity: 0;
    transform: scaleX(.35);
}

.zt-header .zt-nav__item--mega:hover::after,
.zt-header .zt-nav__item--mega:focus-within::after,
.zt-header .zt-nav__item--mega.is-mega-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.zt-header .zt-nav__item--mega.is-mega-active .zt-nav__icon {
    color: var(--zt-header-accent);
}

/* Keep the two-column parts menu balanced and use a compact two-zone layout for the other menus. */
@media (min-width: 1081px) {
    .zt-header .zt-mega--parts .zt-mega__body {
        display: grid !important;
        grid-template-columns: minmax(260px, 1fr) minmax(280px, 1fr) minmax(360px, .95fr) !important;
        gap: 48px !important;
    }

    .zt-header .zt-mega--parts .zt-mega__column:nth-child(1) {
        grid-column: 1 !important;
    }

    .zt-header .zt-mega--parts .zt-mega__column:nth-child(2) {
        grid-column: 2 !important;
    }

    .zt-header .zt-mega--parts .zt-mega__benefits {
        grid-column: 3 !important;
    }

    .zt-header .zt-mega--service .zt-mega__body,
    .zt-header .zt-mega--offers .zt-mega__body {
        display: grid !important;
        grid-template-columns: minmax(380px, .82fr) minmax(560px, 1.18fr) !important;
        gap: 56px !important;
    }

    .zt-header .zt-mega--service .zt-mega__column,
    .zt-header .zt-mega--offers .zt-mega__column {
        grid-column: 1 !important;
    }

    .zt-header .zt-mega--service .zt-mega__benefits,
    .zt-header .zt-mega--offers .zt-mega__benefits {
        grid-column: 2 !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
        align-items: start;
    }

    .zt-header .zt-mega--service .zt-benefit,
    .zt-header .zt-mega--offers .zt-benefit {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 14px;
    }
}

/* New fifth navigation item: tag motion; following item indexes move by one. */
.zt-header .zt-nav__item:nth-child(5):hover .zt-nav__icon,
.zt-header .zt-nav__item:nth-child(5):focus-within .zt-nav__icon {
    animation: zt-nav-tag-swing .58s cubic-bezier(.2,.8,.25,1);
}

.zt-header .zt-nav__item:nth-child(6):hover .zt-nav__icon,
.zt-header .zt-nav__item:nth-child(6):focus-within .zt-nav__icon {
    animation: zt-nav-building-pulse .56s ease-in-out;
}

.zt-header .zt-nav__item:nth-child(7):hover .zt-nav__icon,
.zt-header .zt-nav__item:nth-child(7):focus-within .zt-nav__icon {
    animation: zt-nav-mail-pop .54s cubic-bezier(.22,.9,.3,1);
}

@keyframes zt-nav-tag-swing {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    34% { transform: translateY(-3px) rotate(-9deg) scale(1.07); }
    68% { transform: translateY(-1px) rotate(6deg) scale(1.03); }
}

@media (max-width: 1480px) and (min-width: 1081px) {
    .zt-header .zt-nav__link,
    .zt-header .zt-nav__trigger {
        padding-right: 9px;
        padding-left: 9px;
        font-size: 14px;
    }

    .zt-header .zt-nav__item--offers .zt-nav__trigger {
        gap: 7px;
    }

    .zt-header .zt-mega--parts .zt-mega__body {
        grid-template-columns: minmax(220px, 1fr) minmax(230px, 1fr) minmax(300px, .95fr) !important;
        gap: 28px !important;
    }

    .zt-header .zt-mega--service .zt-mega__body,
    .zt-header .zt-mega--offers .zt-mega__body {
        grid-template-columns: minmax(320px, .9fr) minmax(460px, 1.1fr) !important;
        gap: 30px !important;
    }
}

@media (max-width: 1220px) and (min-width: 1081px) {
    .zt-header .zt-mega--parts .zt-mega__body {
        grid-template-columns: repeat(2, minmax(220px, 1fr)) !important;
    }

    .zt-header .zt-mega--service .zt-mega__body,
    .zt-header .zt-mega--offers .zt-mega__body {
        grid-template-columns: minmax(0, 1fr) !important;
    }
}

/* v7: unified dropdown benefit layout and quieter header interactions. */

/* Service and offer dropdowns use the same right-hand, vertically stacked
   benefits column as the spare-parts dropdown. */
@media (min-width: 1081px) {
    .zt-header .zt-mega--service .zt-mega__body,
    .zt-header .zt-mega--offers .zt-mega__body {
        display: grid !important;
        grid-template-columns: minmax(260px, 1fr) minmax(280px, 1fr) minmax(360px, .95fr) !important;
        gap: 48px !important;
    }

    .zt-header .zt-mega--service .zt-mega__column,
    .zt-header .zt-mega--offers .zt-mega__column {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    .zt-header .zt-mega--service .zt-mega__benefits,
    .zt-header .zt-mega--offers .zt-mega__benefits {
        display: grid !important;
        grid-column: 3 !important;
        grid-row: 1 !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 32px !important;
        align-content: start !important;
        padding-left: 44px !important;
        border-left: 1px solid #dfe2e6 !important;
    }

    .zt-header .zt-mega--service .zt-benefit,
    .zt-header .zt-mega--offers .zt-benefit {
        grid-template-columns: 62px minmax(0, 1fr) !important;
        gap: 20px !important;
        align-items: center !important;
    }
}

@media (max-width: 1480px) and (min-width: 1081px) {
    .zt-header .zt-mega--service .zt-mega__body,
    .zt-header .zt-mega--offers .zt-mega__body {
        grid-template-columns: minmax(220px, 1fr) minmax(230px, 1fr) minmax(300px, .95fr) !important;
        gap: 28px !important;
    }

    .zt-header .zt-mega--service .zt-mega__benefits,
    .zt-header .zt-mega--offers .zt-mega__benefits {
        gap: 24px !important;
        padding-left: 30px !important;
    }

    .zt-header .zt-mega--service .zt-benefit,
    .zt-header .zt-mega--offers .zt-benefit {
        grid-template-columns: 52px minmax(0, 1fr) !important;
        gap: 14px !important;
    }
}

@media (max-width: 1220px) and (min-width: 1081px) {
    .zt-header .zt-mega--service .zt-mega__body,
    .zt-header .zt-mega--offers .zt-mega__body {
        grid-template-columns: minmax(260px, 1fr) minmax(320px, 1fr) !important;
    }

    .zt-header .zt-mega--service .zt-mega__benefits,
    .zt-header .zt-mega--offers .zt-mega__benefits {
        grid-column: 2 !important;
    }
}

/* Remove the bottom bridge/stripe under navigation items that open a dropdown. */
.zt-header .zt-nav__item--mega::after,
.zt-header .zt-nav__item--mega:hover::after,
.zt-header .zt-nav__item--mega:focus-within::after,
.zt-header .zt-nav__item--mega.is-mega-active::after {
    display: none !important;
    content: none !important;
}

/* Remove the moving light sweep from both primary header buttons. */
.zt-header .zt-catalog-button::before,
.zt-header .zt-callback-button::before {
    display: none !important;
    content: none !important;
    animation: none !important;
}

/* Catalog button: strong white label. */
.zt-header .zt-catalog-button,
.zt-header .zt-catalog-button:hover,
.zt-header .zt-catalog-button:focus-visible {
    color: #fff !important;
    font-weight: 700 !important;
}

.zt-header .zt-catalog-button svg {
    color: currentColor !important;
}

/* Order button: no shimmer; on hover it becomes a solid accent button
   with a white label. */
.zt-header .zt-callback-button {
    transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease !important;
}

.zt-header .zt-callback-button:hover,
.zt-header .zt-callback-button:focus-visible {
    color: #fff !important;
    border-color: var(--zt-header-accent) !important;
    background: var(--zt-header-accent) !important;
}

/* Phone and email use exactly the same accent as menu underlines on hover. */
.zt-header .zt-contact__item:hover,
.zt-header .zt-contact__item:focus-visible,
.zt-header .zt-contact__item:hover .zt-contact__text,
.zt-header .zt-contact__item:focus-visible .zt-contact__text,
.zt-header .zt-contact__item:hover .zt-contact__icon-wrap,
.zt-header .zt-contact__item:focus-visible .zt-contact__icon-wrap,
.zt-header .zt-contact__item:hover .zt-contact__icon,
.zt-header .zt-contact__item:focus-visible .zt-contact__icon {
    color: var(--zt-header-accent) !important;
}

/* v8: responsive, touch-friendly header for desktop, tablet and mobile. */
:root {
    --zt-admin-offset: 0px;
}

.zt-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Neutralize the legacy scroll script that used to hide and reposition the header. */
.zt-header#top-header {
    position: sticky !important;
    top: var(--zt-admin-offset) !important;
    display: block !important;
    padding-top: 0 !important;
    opacity: 1 !important;
}

#top-header-empty {
    display: none !important;
    height: 0 !important;
}

/* The new drawer owns mobile navigation. */
.zt-mobile-drawer.mobile-menu-wrapper {
    position: fixed !important;
    z-index: 2500 !important;
    inset: 0 !important;
    left: -100vw;
    display: block !important;
    width: 100% !important;
    height: 100dvh !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: transparent !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, visibility .22s ease;
    pointer-events: none;
}

.zt-mobile-drawer.mobile-menu-wrapper.is-open,
.zt-mobile-drawer.mobile-menu-wrapper[style*="left: 0"] {
    left: 0 !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.zt-mobile-drawer__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(15, 20, 28, .48);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity .22s ease;
}

.zt-mobile-drawer.is-open .zt-mobile-drawer__backdrop,
.zt-mobile-drawer[style*="left: 0"] .zt-mobile-drawer__backdrop {
    opacity: 1;
}

.zt-mobile-drawer__panel {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    width: min(460px, 92vw);
    max-width: 100%;
    flex-direction: column;
    color: #17191d;
    background: #fff;
    box-shadow: 20px 0 55px rgba(15, 23, 42, .22);
    transform: translateX(-102%);
    transition: transform .28s cubic-bezier(.2,.8,.25,1);
}

.zt-mobile-drawer.is-open .zt-mobile-drawer__panel,
.zt-mobile-drawer[style*="left: 0"] .zt-mobile-drawer__panel {
    transform: translateX(0);
}

.zt-mobile-drawer__head {
    display: flex;
    min-height: 76px;
    padding: calc(14px + env(safe-area-inset-top)) 18px 14px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eceff2;
}

.zt-mobile-drawer__logo {
    display: block;
    width: min(218px, 66vw);
}

.zt-mobile-drawer__logo img {
    display: block;
    width: 100%;
    height: auto;
}

.zt-mobile-drawer__close {
    position: relative;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    padding: 0;
    border: 1px solid #e3e6ea;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}

.zt-mobile-drawer__close::before,
.zt-mobile-drawer__close::after {
    position: absolute;
    top: 21px;
    left: 12px;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: #22272e;
    content: "";
}

.zt-mobile-drawer__close::before { transform: rotate(45deg); }
.zt-mobile-drawer__close::after { transform: rotate(-45deg); }

.zt-mobile-drawer__scroll {
    min-height: 0;
    flex: 1 1 auto;
    padding: 18px 18px calc(24px + env(safe-area-inset-bottom));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.zt-mobile-search {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    min-height: 54px;
    padding: 5px 5px 5px 15px;
    border: 1px solid #dfe3e8;
    border-radius: 12px;
    background: #fff;
}

.zt-mobile-search > svg {
    width: 22px;
    height: 22px;
    color: #656c76;
}

.zt-mobile-search input {
    width: 100%;
    min-width: 0;
    height: 42px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 16px;
}

.zt-mobile-search button {
    min-height: 42px;
    padding: 0 16px;
    border: 0;
    border-radius: 9px;
    color: #fff;
    background: var(--zt-header-accent);
    font-weight: 800;
    cursor: pointer;
}

.zt-mobile-nav {
    display: grid;
    gap: 6px;
    margin-top: 18px;
}

.zt-mobile-nav__link,
.zt-mobile-nav__toggle {
    display: grid;
    width: 100%;
    min-height: 54px;
    grid-template-columns: 28px minmax(0, 1fr) 20px;
    gap: 13px;
    align-items: center;
    padding: 0 12px;
    border: 0;
    border-radius: 11px;
    color: #21252b;
    background: transparent;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    cursor: pointer;
}

.zt-mobile-nav__link {
    grid-template-columns: 28px minmax(0, 1fr);
}

.zt-mobile-nav__link:hover,
.zt-mobile-nav__link:focus-visible,
.zt-mobile-nav__toggle:hover,
.zt-mobile-nav__toggle:focus-visible,
.zt-mobile-nav__toggle[aria-expanded="true"] {
    color: #17191d;
    background: rgba(var(--zt-header-accent-rgb), .10);
}

.zt-mobile-nav__link > svg,
.zt-mobile-nav__toggle > svg:first-child {
    width: 25px;
    height: 25px;
    color: #3f464f;
}

.zt-mobile-nav__toggle[aria-expanded="true"] > svg:first-child {
    color: var(--zt-header-accent);
}

.zt-mobile-nav__chevron {
    width: 18px !important;
    height: 18px !important;
    transition: transform .2s ease;
}

.zt-mobile-nav__toggle[aria-expanded="true"] .zt-mobile-nav__chevron {
    transform: rotate(180deg);
}

.zt-mobile-nav__panel {
    display: grid;
    gap: 2px;
    margin: 4px 0 8px 41px;
    padding: 8px 0 8px 14px;
    border-left: 2px solid var(--zt-header-accent);
}

.zt-mobile-nav__panel[hidden] {
    display: none !important;
}

.zt-mobile-nav__panel a {
    display: flex;
    min-height: 43px;
    padding: 9px 12px;
    align-items: center;
    border-radius: 8px;
    color: #555c66;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
}

.zt-mobile-nav__panel a:hover,
.zt-mobile-nav__panel a:focus-visible {
    color: #17191d;
    background: #f5f6f8;
}

.zt-mobile-nav__caption {
    margin: 10px 12px 4px;
    color: var(--zt-header-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.zt-mobile-nav__all {
    color: var(--zt-header-accent) !important;
    font-weight: 700 !important;
}

.zt-mobile-contacts {
    display: grid;
    gap: 8px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #eceff2;
}

.zt-mobile-contacts a {
    display: grid;
    min-height: 48px;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    color: #20242a;
    font-size: 16px;
    font-weight: 750;
}

.zt-mobile-contacts svg {
    width: 23px;
    height: 23px;
    color: var(--zt-header-accent);
}

.zt-mobile-actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.zt-mobile-actions__catalog,
.zt-mobile-actions__order {
    display: flex;
    min-height: 52px;
    padding: 0 18px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-family: "PT Sans Caption", "Montserrat", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
}

.zt-mobile-actions__catalog {
    border: 1px solid var(--zt-header-accent);
    color: #fff !important;
    background: var(--zt-header-accent);
}

.zt-mobile-actions__order {
    border: 1px solid var(--zt-header-accent);
    color: var(--zt-header-accent);
    background: #fff;
}

body.zt-mobile-menu-open {
    overflow: hidden !important;
    touch-action: none;
}

/* Compact header mode is intentionally used for tablets and narrower laptops:
   it avoids cramped seven-item navigation and keeps touch targets large. */
@media (max-width: 1399px) {
    .zt-header .zt-shell {
        padding-right: 20px;
        padding-left: 20px;
    }

    .zt-header .zt-header__top-inner {
        display: grid;
        grid-template-columns: 48px minmax(170px, 220px) minmax(170px, 210px) minmax(260px, 1fr);
        gap: 16px;
        min-height: 84px;
        padding-right: 72px;
    }

    .zt-header .zt-mobile-trigger {
        display: flex !important;
        align-items: center;
    }

    .zt-header .zt-header__logo {
        max-width: 210px;
    }

    .zt-header .zt-catalog-button {
        min-height: 54px;
        padding: 0 16px;
        gap: 10px;
        font-size: 14px;
    }

    .zt-header .zt-catalog-button svg {
        width: 23px;
        height: 23px;
    }

    .zt-header .zt-search input {
        height: 54px;
        padding-left: 58px;
        font-size: 15px;
    }

    .zt-header .zt-search__icon {
        left: 19px;
        width: 23px;
        height: 23px;
    }

    .zt-header .zt-contact,
    .zt-header .zt-phone,
    .zt-header .zt-callback-button,
    .zt-header .zt-mega,
    .zt-header .zt-nav__list {
        display: none !important;
    }

    .zt-header .zt-nav {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        left: 0 !important;
        height: 84px;
        border: 0 !important;
        background: transparent !important;
        pointer-events: none;
    }

    .zt-header .zt-nav__inner {
        position: relative;
        display: block;
        min-height: 84px;
        padding: 0 20px;
    }

    .zt-header .zt-nav > .zt-shell > .zt-header-cart {
        position: absolute;
        top: 16px;
        right: 20px;
        display: flex !important;
        width: 52px;
        min-width: 52px;
        height: 52px;
        min-height: 52px;
        margin: 0;
        pointer-events: auto;
    }

    .zt-header .zt-header-cart .cart-area,
    .zt-header .zt-header-cart .cart-button,
    .zt-header .zt-header-cart > a {
        width: 52px;
        height: 52px;
    }

    .zt-page-overlay {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    .zt-header .zt-header__top-inner {
        grid-template-columns: 48px minmax(165px, 210px) minmax(240px, 1fr);
    }

    .zt-header .zt-catalog-button {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .zt-header .zt-shell {
        padding-right: 14px;
        padding-left: 14px;
    }

    .zt-header .zt-header__top-inner {
        grid-template-columns: 46px minmax(0, 1fr);
        grid-template-rows: 52px 48px;
        gap: 8px 12px;
        min-height: 124px;
        padding: 10px 64px 10px 14px;
    }

    .zt-header .zt-mobile-trigger {
        grid-column: 1;
        grid-row: 1;
    }

    .zt-header .zt-header__logo {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
        width: min(205px, 72vw);
        max-width: 205px;
    }

    .zt-header .zt-search {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .zt-header .zt-search input {
        height: 48px;
        padding-right: 14px;
        padding-left: 50px;
        font-size: 14px;
    }

    .zt-header .zt-search__icon {
        left: 16px;
        width: 21px;
        height: 21px;
    }

    .zt-header .zt-nav {
        height: 62px;
    }

    .zt-header .zt-nav__inner {
        min-height: 62px;
        padding: 0 14px;
    }

    .zt-header .zt-nav > .zt-shell > .zt-header-cart {
        top: 10px;
        right: 14px;
        width: 46px;
        min-width: 46px;
        height: 46px;
        min-height: 46px;
    }

    .zt-header .zt-header-cart .cart-area,
    .zt-header .zt-header-cart .cart-button,
    .zt-header .zt-header-cart > a {
        width: 46px;
        height: 46px;
    }

    .zt-header .zt-header-cart img,
    .zt-header .zt-header-cart svg {
        width: 28px !important;
        height: 28px !important;
    }

    .zt-header .zt-header-cart .items-count,
    .zt-header .zt-header-cart .basket-count {
        min-width: 22px !important;
        height: 22px !important;
        font-size: 11px !important;
    }

    .zt-mobile-menu-button {
        width: 44px;
        height: 44px;
        border-radius: 11px;
    }
}

@media (max-width: 479px) {
    .zt-header .zt-header__top-inner {
        min-height: 118px;
        padding-right: 58px;
    }

    .zt-header .zt-header__logo {
        width: min(180px, 66vw);
        max-width: 180px;
    }

    .zt-mobile-drawer__panel {
        width: 100%;
    }

    .zt-mobile-drawer__head {
        min-height: 68px;
        padding-right: 14px;
        padding-left: 14px;
    }

    .zt-mobile-drawer__scroll {
        padding-right: 14px;
        padding-left: 14px;
    }

    .zt-mobile-search {
        grid-template-columns: 22px minmax(0, 1fr);
        padding-right: 12px;
    }

    .zt-mobile-search button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .zt-mobile-nav__link,
    .zt-mobile-nav__toggle {
        padding-right: 8px;
        padding-left: 8px;
        font-size: 15px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .zt-header .zt-header__top-inner {
        grid-template-columns: 205px 200px minmax(270px, 1fr) 235px 150px;
        gap: 15px;
    }

    .zt-header .zt-nav__link,
    .zt-header .zt-nav__trigger {
        gap: 7px;
        padding-right: 8px;
        padding-left: 8px;
        font-size: 13px;
    }

    .zt-header .zt-nav__icon {
        width: 22px;
        height: 22px;
    }

    .zt-header .zt-nav__chevron {
        width: 13px;
        height: 13px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .zt-header .zt-nav__link,
    .zt-header .zt-nav__trigger,
    .zt-mobile-nav__link,
    .zt-mobile-nav__toggle,
    .zt-mobile-actions__catalog,
    .zt-mobile-actions__order {
        min-height: 48px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .zt-mobile-drawer.mobile-menu-wrapper,
    .zt-mobile-drawer__panel,
    .zt-mobile-drawer__backdrop,
    .zt-mobile-nav__chevron {
        transition: none !important;
    }
}

/* =========================================================
   v9: fixed header, full-width mobile search, MAX button
   ========================================================= */

:root {
    --zt-header-fixed-height: 0px;
}

/* The header must remain in one stable position. Older global scripts may
   assign inline top/transform values, therefore the critical properties use
   !important here. */
html .zt-header#top-header {
    position: fixed !important;
    z-index: 1200 !important;
    top: var(--zt-admin-offset, 0px) !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
}

.zt-header-spacer {
    display: block;
    width: 100%;
    height: var(--zt-header-fixed-height, 0px);
    pointer-events: none;
}

/* Desktop row receives a separate square MAX action. */
@media (min-width: 1600px) {
    .zt-header .zt-header__top-inner {
        grid-template-columns: 274px 250px minmax(320px, 1fr) 300px 70px 180px !important;
        gap: 24px !important;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .zt-header .zt-header__top-inner {
        grid-template-columns: 205px 190px minmax(240px, 1fr) 220px 54px 145px !important;
        gap: 12px !important;
    }
}

.zt-header .zt-max-button {
    position: relative;
    display: inline-flex;
    width: 70px;
    min-width: 70px;
    height: 70px;
    min-height: 70px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--zt-header-accent);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.zt-header .zt-max-button__icon {
    display: block;
    width: 32px;
    height: 32px;
    background-image: url('/assets/images/Max_logo_black.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform .18s ease;
}

.zt-header .zt-max-button:hover,
.zt-header .zt-max-button:focus-visible {
    border-color: var(--zt-header-accent);
    background: var(--zt-header-accent);
    transform: translateY(-1px);
}

.zt-header .zt-max-button:hover .zt-max-button__icon,
.zt-header .zt-max-button:focus-visible .zt-max-button__icon {
    transform: scale(1.08);
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .zt-header .zt-max-button {
        width: 54px;
        min-width: 54px;
        height: 54px;
        min-height: 54px;
    }

    .zt-header .zt-max-button__icon {
        width: 27px;
        height: 27px;
    }
}

/* Both primary buttons use one typography system. */
.zt-header .zt-catalog-button,
.zt-header .zt-callback-button,
.zt-mobile-actions__catalog,
.zt-mobile-actions__order {
    font-family: "PT Sans Caption", "Montserrat", Arial, sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: .01em !important;
}

/* There is intentionally no search field inside the opened drawer. */
.zt-mobile-drawer .zt-mobile-search {
    display: none !important;
}

/* MAX action in the drawer is square and sits to the left of the order button. */
.zt-mobile-actions {
    grid-template-columns: 52px minmax(0, 1fr);
}

.zt-mobile-actions__catalog {
    grid-column: 1 / -1;
}

.zt-mobile-actions__max {
    display: flex;
    width: 52px;
    min-width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--zt-header-accent);
    border-radius: 10px;
    background: #fff;
}

.zt-mobile-actions__max span {
    display: block;
    width: 27px;
    height: 27px;
    background-image: url('/assets/images/Max_logo_black.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* On phones, the visible search occupies the entire viewport width between
   the standard 14px page gutters. The cart only reserves space in row one. */
@media (max-width: 767px) {
    .zt-header .zt-header__top-inner {
        min-height: 124px !important;
        padding: 10px 14px !important;
        overflow: visible !important;
    }

    .zt-header .zt-header__logo {
        width: min(205px, calc(100vw - 138px)) !important;
        max-width: min(205px, calc(100vw - 138px)) !important;
    }

    .zt-header .zt-search {
        grid-column: 1 / -1 !important;
        grid-row: 2 !important;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
    }

    .zt-header .zt-search input {
        width: 100% !important;
    }
}

@media (max-width: 479px) {
    .zt-header .zt-header__top-inner {
        min-height: 118px !important;
        padding-right: 14px !important;
        padding-left: 14px !important;
    }

    .zt-header .zt-header__logo {
        width: min(180px, calc(100vw - 132px)) !important;
        max-width: min(180px, calc(100vw - 132px)) !important;
    }
}

@media (max-width: 1399px) {
    .zt-header .zt-max-button {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .zt-header .zt-max-button,
    .zt-header .zt-max-button__icon {
        transition: none !important;
    }
}

/* =========================================================
   v10: immovable header, centered mobile logo, yellow MAX,
   staged typing placeholder
   ========================================================= */

/* Hard lock against the legacy scroll animation from style.js. */
html body .zt-header#top-header {
    position: fixed !important;
    top: var(--zt-admin-offset, 0px) !important;
    right: 0 !important;
    bottom: auto !important;
    left: 0 !important;
    display: block !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    transform: translate3d(0, 0, 0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    will-change: auto !important;
    animation: none !important;
    transition: none !important;
}

/* MAX logo uses the brand yellow instead of the source SVG's black fill. */
.zt-header .zt-max-button__icon,
.zt-mobile-actions__max span {
    background-image: none !important;
    background-color: var(--zt-header-accent) !important;
    -webkit-mask-image: url('/assets/images/Max_logo_black.svg');
    mask-image: url('/assets/images/Max_logo_black.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.zt-header .zt-max-button:hover .zt-max-button__icon,
.zt-header .zt-max-button:focus-visible .zt-max-button__icon,
.zt-mobile-actions__max:hover span,
.zt-mobile-actions__max:focus-visible span {
    background-color: #fff !important;
}

.zt-mobile-actions__max:hover,
.zt-mobile-actions__max:focus-visible {
    background: var(--zt-header-accent) !important;
}

@media (max-width: 767px) {
    .zt-header .zt-header__top-inner {
        position: relative !important;
        grid-template-columns: 46px minmax(0, 1fr) !important;
        grid-template-rows: 52px 48px !important;
    }

    /* Absolute centering makes the logo independent of the menu and cart widths. */
    .zt-header .zt-header__logo {
        position: absolute !important;
        top: 10px !important;
        left: 50% !important;
        z-index: 3;
        width: min(205px, calc(100% - 136px)) !important;
        max-width: min(205px, calc(100% - 136px)) !important;
        transform: translateX(-50%) !important;
    }

    .zt-header .zt-search {
        grid-column: 1 / -1 !important;
        grid-row: 2 !important;
        width: 100% !important;
    }
}

@media (max-width: 479px) {
    .zt-header .zt-header__logo {
        width: min(180px, calc(100% - 128px)) !important;
        max-width: min(180px, calc(100% - 128px)) !important;
    }
}

/* =========================================================
   v11: exact mobile centering, uppercase CTA labels,
   one audited yellow token for every header module
   ========================================================= */

:root {
    --zt-header-accent: #FFB800;
    --zt-header-accent-rgb: 255, 184, 0;
    --zt-header-accent-soft: rgba(var(--zt-header-accent-rgb), .08);
}

/* Both CTA labels remain uppercase even if their text is later edited in PHP. */
.zt-header .zt-catalog-button,
.zt-header .zt-callback-button,
.zt-mobile-actions__catalog,
.zt-mobile-actions__order {
    text-transform: uppercase !important;
}

/* All solid yellow UI accents use the same brand token. */
.zt-header .zt-catalog-button,
.zt-header .zt-catalog-button:hover,
.zt-header .zt-catalog-button:focus-visible,
.zt-header .zt-catalog-button[aria-expanded="true"] {
    border-color: var(--zt-header-accent) !important;
    background: var(--zt-header-accent) !important;
}

.zt-header .zt-callback-button,
.zt-header .zt-max-button,
.zt-mobile-actions__order,
.zt-mobile-actions__max {
    border-color: var(--zt-header-accent) !important;
}

.zt-header .zt-callback-button,
.zt-mobile-actions__order,
.zt-header .zt-phone__number:hover,
.zt-header .zt-phone__number:focus-visible,
.zt-header .zt-contact__item:hover,
.zt-header .zt-contact__item:focus-visible,
.zt-header .zt-contact__item:hover .zt-contact__text,
.zt-header .zt-contact__item:focus-visible .zt-contact__text,
.zt-header .zt-nav__item:hover .zt-nav__icon,
.zt-header .zt-nav__item:focus-within .zt-nav__icon,
.zt-header .zt-nav__item--mega.is-mega-active .zt-nav__icon,
.zt-header .zt-mega__links a:hover,
.zt-header .zt-mega__links a:focus-visible,
.zt-header .zt-mega__all,
.zt-header .zt-benefit__icon,
.zt-mobile-nav__toggle[aria-expanded="true"] > svg:first-child,
.zt-mobile-nav__caption,
.zt-mobile-nav__all,
.zt-mobile-contacts svg {
    color: var(--zt-header-accent) !important;
}

.zt-header .zt-nav__link > span::after,
.zt-header .zt-nav__trigger > span::after,
.zt-mobile-nav__panel {
    border-color: var(--zt-header-accent) !important;
}

.zt-header .zt-nav__link > span::after,
.zt-header .zt-nav__trigger > span::after {
    background: var(--zt-header-accent) !important;
}

.zt-header .zt-benefit__icon {
    border-color: rgba(var(--zt-header-accent-rgb), .38) !important;
}

.zt-mobile-nav__link:hover,
.zt-mobile-nav__link:focus-visible,
.zt-mobile-nav__toggle:hover,
.zt-mobile-nav__toggle:focus-visible,
.zt-mobile-nav__toggle[aria-expanded="true"] {
    background: rgba(var(--zt-header-accent-rgb), .10) !important;
}

.zt-header .zt-max-button__icon,
.zt-mobile-actions__max span {
    background-color: var(--zt-header-accent) !important;
}

.zt-header .zt-max-button:hover,
.zt-header .zt-max-button:focus-visible,
.zt-mobile-actions__max:hover,
.zt-mobile-actions__max:focus-visible,
.zt-header .zt-callback-button:hover,
.zt-header .zt-callback-button:focus-visible,
.zt-mobile-actions__order:hover,
.zt-mobile-actions__order:focus-visible {
    border-color: var(--zt-header-accent) !important;
    background: var(--zt-header-accent) !important;
    color: #fff !important;
}

/* Three equal logical columns reserve identical space for menu and cart.
   The logo therefore sits on the physical viewport center on every portrait
   mobile width, without absolute positioning or width-dependent offsets. */
@media (max-width: 767px) {
    .zt-header .zt-header__top-inner {
        position: relative !important;
        display: grid !important;
        grid-template-columns: 52px minmax(0, 1fr) 52px !important;
        grid-template-rows: 52px 48px !important;
        column-gap: 8px !important;
        row-gap: 8px !important;
        min-height: 124px !important;
        padding: 10px 14px !important;
    }

    .zt-header .zt-mobile-trigger {
        grid-column: 1 !important;
        grid-row: 1 !important;
        align-self: center !important;
        justify-self: start !important;
    }

    .zt-header .zt-header__logo {
        position: static !important;
        inset: auto !important;
        grid-column: 2 !important;
        grid-row: 1 !important;
        align-self: center !important;
        justify-self: center !important;
        width: min(205px, 100%) !important;
        max-width: 205px !important;
        margin: 0 auto !important;
        transform: none !important;
    }

    .zt-header .zt-header__logo img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
    }

    .zt-header .zt-search {
        grid-column: 1 / -1 !important;
        grid-row: 2 !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
    }

    .zt-header .zt-nav > .zt-shell > .zt-header-cart {
        top: 13px !important;
        right: 14px !important;
    }
}

@media (max-width: 479px) {
    .zt-header .zt-header__logo {
        width: min(180px, 100%) !important;
        max-width: 180px !important;
    }
}


/* =========================================================
   v12: load and enforce the real PT Sans Caption bold face
   ========================================================= */
.zt-header .zt-catalog-button,
.zt-header .zt-callback-button,
.zt-mobile-actions__catalog,
.zt-mobile-actions__order {
    font-family: "PT Sans Caption", Arial, sans-serif !important;
    font-weight: 700 !important;
    font-style: normal !important;
    font-synthesis: none;
}

/* =========================================================
   v13: reliable PT Sans Caption loading without Google Fonts.
   The site already uses jsDelivr, so the button font is loaded
   from Fontsource through the same CDN and applied to the label.
   ========================================================= */
@font-face {
    font-family: "Zipteh PT Sans Caption";
    font-style: normal;
    font-display: swap;
    font-weight: 700;
    src: url("https://cdn.jsdelivr.net/fontsource/fonts/pt-sans-caption@latest/cyrillic-700-normal.woff2") format("woff2");
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: "Zipteh PT Sans Caption";
    font-style: normal;
    font-display: swap;
    font-weight: 700;
    src: url("https://cdn.jsdelivr.net/fontsource/fonts/pt-sans-caption@latest/latin-700-normal.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.zt-header .zt-catalog-button,
.zt-header .zt-catalog-button > span,
.zt-header .zt-callback-button,
.zt-mobile-actions__catalog,
.zt-mobile-actions__catalog > span,
.zt-mobile-actions__order {
    font-family: "Zipteh PT Sans Caption", "PT Sans Caption", Arial, sans-serif !important;
    font-weight: 700 !important;
    font-style: normal !important;
    font-synthesis: none !important;
}

/* Prevent global template rules from overriding the catalog label. */
.zt-header a.zt-catalog-button > span,
.zt-header button.zt-callback-button,
.zt-mobile-actions a.zt-mobile-actions__catalog,
.zt-mobile-actions button.zt-mobile-actions__order {
    font-family: "Zipteh PT Sans Caption", "PT Sans Caption", Arial, sans-serif !important;
    font-weight: 700 !important;
}

/* =========================================================
   V15: catalog button keeps the corporate yellow background.
   Only label and icon change from black to white on interaction.
   ========================================================= */
.zt-header {
    --zt-header-accent: #FFB800;
    --zt-header-accent-rgb: 255, 184, 0;
}

/* Basket quantity badge uses exactly the same yellow as header actions. */
.zt-header .zt-header-cart .items-count,
.zt-header .zt-header-cart .basket-count,
.zt-header .zt-header-cart .cart-count,
.zt-header .zt-header-cart .basket-items-count,
.zt-header .zt-header-cart [class*="items-count"],
.zt-header .zt-header-cart [class*="basket-count"] {
    border-color: #fff !important;
    background: var(--zt-header-accent) !important;
    background-image: none !important;
    box-shadow: none !important;
}

/* Desktop catalog button: yellow in every state. */
.zt-header a.zt-catalog-button,
.zt-header a.zt-catalog-button:link,
.zt-header a.zt-catalog-button:visited,
.zt-header a.zt-catalog-button:hover,
.zt-header a.zt-catalog-button:focus-visible,
.zt-header a.zt-catalog-button:active {
    border-color: var(--zt-header-accent) !important;
    background: var(--zt-header-accent) !important;
    background-image: none !important;
}

/* Default text and icon are black. */
.zt-header a.zt-catalog-button,
.zt-header a.zt-catalog-button:link,
.zt-header a.zt-catalog-button:visited,
.zt-header a.zt-catalog-button > span,
.zt-header a.zt-catalog-button .zt-catalog-button__icon {
    color: #111 !important;
}

.zt-header a.zt-catalog-button .zt-catalog-button__icon {
    width: 28px;
    height: 28px;
    overflow: visible;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2;
    stroke-linecap: round;
}

.zt-header a.zt-catalog-button .zt-catalog-button__icon path:first-child {
    stroke-width: 2;
}

.zt-header a.zt-catalog-button .zt-catalog-button__icon path:last-child {
    stroke-width: 3;
}

/* Hover/focus changes only label and icon to white. */
.zt-header a.zt-catalog-button:hover,
.zt-header a.zt-catalog-button:focus-visible,
.zt-header a.zt-catalog-button:active,
.zt-header a.zt-catalog-button:hover > span,
.zt-header a.zt-catalog-button:focus-visible > span,
.zt-header a.zt-catalog-button:active > span,
.zt-header a.zt-catalog-button:hover .zt-catalog-button__icon,
.zt-header a.zt-catalog-button:focus-visible .zt-catalog-button__icon,
.zt-header a.zt-catalog-button:active .zt-catalog-button__icon {
    color: #fff !important;
}

/* Mobile catalog action follows the same yellow/black -> yellow/white logic. */
.zt-mobile-actions a.zt-mobile-actions__catalog,
.zt-mobile-actions a.zt-mobile-actions__catalog:link,
.zt-mobile-actions a.zt-mobile-actions__catalog:visited,
.zt-mobile-actions a.zt-mobile-actions__catalog:hover,
.zt-mobile-actions a.zt-mobile-actions__catalog:focus-visible,
.zt-mobile-actions a.zt-mobile-actions__catalog:active {
    border-color: var(--zt-header-accent) !important;
    background: var(--zt-header-accent) !important;
    background-image: none !important;
}

.zt-mobile-actions a.zt-mobile-actions__catalog,
.zt-mobile-actions a.zt-mobile-actions__catalog:link,
.zt-mobile-actions a.zt-mobile-actions__catalog:visited {
    color: #111 !important;
}

.zt-mobile-actions a.zt-mobile-actions__catalog:hover,
.zt-mobile-actions a.zt-mobile-actions__catalog:focus-visible,
.zt-mobile-actions a.zt-mobile-actions__catalog:active {
    color: #fff !important;
}

/* =========================================================
   V16: force the inline catalog SVG paths to follow hover color.
   Some global template rules set stroke directly on SVG paths,
   so changing only the parent SVG color was not enough.
   ========================================================= */
.zt-header a.zt-catalog-button .zt-catalog-button__icon,
.zt-header a.zt-catalog-button .zt-catalog-button__icon path {
    fill: none !important;
    stroke: #111 !important;
    transition: stroke 180ms ease, color 180ms ease !important;
}

.zt-header a.zt-catalog-button:hover .zt-catalog-button__icon,
.zt-header a.zt-catalog-button:focus-visible .zt-catalog-button__icon,
.zt-header a.zt-catalog-button:active .zt-catalog-button__icon,
.zt-header a.zt-catalog-button:hover .zt-catalog-button__icon path,
.zt-header a.zt-catalog-button:focus-visible .zt-catalog-button__icon path,
.zt-header a.zt-catalog-button:active .zt-catalog-button__icon path {
    color: #fff !important;
    stroke: #fff !important;
}

/* =========================================================
   V17: synchronize catalog/contact default color with the
   exact text color used by the main navigation.
   ========================================================= */
.zt-header {
    --zt-header-menu-color: var(--zt-header-text, #111318);
}

/* Catalog button keeps its yellow background, while the label and
   inline icon use exactly the same default color as navigation items. */
.zt-header a.zt-catalog-button,
.zt-header a.zt-catalog-button:link,
.zt-header a.zt-catalog-button:visited,
.zt-header a.zt-catalog-button > span,
.zt-header a.zt-catalog-button .zt-catalog-button__icon {
    color: var(--zt-header-menu-color) !important;
}

.zt-header a.zt-catalog-button .zt-catalog-button__icon,
.zt-header a.zt-catalog-button .zt-catalog-button__icon path {
    stroke: var(--zt-header-menu-color) !important;
}

/* Hover/focus behaviour from v16 remains unchanged: text and icon turn white. */
.zt-header a.zt-catalog-button:hover,
.zt-header a.zt-catalog-button:focus-visible,
.zt-header a.zt-catalog-button:active,
.zt-header a.zt-catalog-button:hover > span,
.zt-header a.zt-catalog-button:focus-visible > span,
.zt-header a.zt-catalog-button:active > span,
.zt-header a.zt-catalog-button:hover .zt-catalog-button__icon,
.zt-header a.zt-catalog-button:focus-visible .zt-catalog-button__icon,
.zt-header a.zt-catalog-button:active .zt-catalog-button__icon,
.zt-header a.zt-catalog-button:hover .zt-catalog-button__icon path,
.zt-header a.zt-catalog-button:focus-visible .zt-catalog-button__icon path,
.zt-header a.zt-catalog-button:active .zt-catalog-button__icon path {
    color: #fff !important;
    stroke: #fff !important;
}

/* Telephone and e-mail now use the same default color as main menu items. */
.zt-header .zt-contact__item,
.zt-header .zt-contact__text,
.zt-header .zt-contact__item--mail .zt-contact__text,
.zt-header .zt-contact__icon-wrap,
.zt-header .zt-contact__icon,
.zt-header .zt-phone,
.zt-header .zt-phone__number,
.zt-header .zt-phone__email {
    color: var(--zt-header-menu-color) !important;
}

/* Make inline contact SVG geometry follow the shared menu color as well. */
.zt-header .zt-contact__icon *,
.zt-header .zt-contact__icon-wrap svg *,
.zt-header .zt-phone svg * {
    stroke: currentColor !important;
}

/* Preserve the established yellow contact hover state. */
.zt-header .zt-contact__item:hover,
.zt-header .zt-contact__item:focus-visible,
.zt-header .zt-contact__item:hover .zt-contact__text,
.zt-header .zt-contact__item:focus-visible .zt-contact__text,
.zt-header .zt-contact__item:hover .zt-contact__icon-wrap,
.zt-header .zt-contact__item:focus-visible .zt-contact__icon-wrap,
.zt-header .zt-contact__item:hover .zt-contact__icon,
.zt-header .zt-contact__item:focus-visible .zt-contact__icon,
.zt-header .zt-phone__number:hover,
.zt-header .zt-phone__number:focus-visible,
.zt-header .zt-phone__email:hover,
.zt-header .zt-phone__email:focus-visible {
    color: var(--zt-header-accent) !important;
}

/* =========================================================
   V18: exact shared text color and immediate icon response.
   The menu, catalog label, phone and e-mail now use one
   explicit charcoal token instead of relying on inherited
   values from older template styles.
   ========================================================= */
.zt-header {
    --zt-header-menu-color: #2c333b;
}

/* Use exactly the same normal text color everywhere requested. */
.zt-header .zt-nav__link,
.zt-header .zt-nav__trigger,
.zt-header .zt-nav__link > span,
.zt-header .zt-nav__trigger > span,
.zt-header a.zt-catalog-button,
.zt-header a.zt-catalog-button:link,
.zt-header a.zt-catalog-button:visited,
.zt-header a.zt-catalog-button > span,
.zt-header .zt-contact__item,
.zt-header .zt-contact__item:link,
.zt-header .zt-contact__item:visited,
.zt-header .zt-contact__text,
.zt-header .zt-contact__item--phone .zt-contact__text,
.zt-header .zt-contact__item--mail .zt-contact__text {
    color: var(--zt-header-menu-color) !important;
}

/* Catalog icon uses the same charcoal in the default state. */
.zt-header a.zt-catalog-button .zt-catalog-button__icon,
.zt-header a.zt-catalog-button .zt-catalog-button__icon path {
    color: var(--zt-header-menu-color) !important;
    stroke: var(--zt-header-menu-color) !important;
    transition: none !important;
    animation-delay: 0s !important;
}

/* Catalog hover is immediate: both label and icon switch together. */
.zt-header a.zt-catalog-button:hover,
.zt-header a.zt-catalog-button:focus-visible,
.zt-header a.zt-catalog-button:active,
.zt-header a.zt-catalog-button:hover > span,
.zt-header a.zt-catalog-button:focus-visible > span,
.zt-header a.zt-catalog-button:active > span {
    color: #fff !important;
    transition: none !important;
}

.zt-header a.zt-catalog-button:hover .zt-catalog-button__icon,
.zt-header a.zt-catalog-button:focus-visible .zt-catalog-button__icon,
.zt-header a.zt-catalog-button:active .zt-catalog-button__icon,
.zt-header a.zt-catalog-button:hover .zt-catalog-button__icon path,
.zt-header a.zt-catalog-button:focus-visible .zt-catalog-button__icon path,
.zt-header a.zt-catalog-button:active .zt-catalog-button__icon path {
    color: #fff !important;
    stroke: #fff !important;
    transition: none !important;
}

/* Contact icons inherit the same normal color as the menu labels. */
.zt-header .zt-contact__icon-wrap,
.zt-header .zt-contact__icon,
.zt-header .zt-contact__icon use {
    color: var(--zt-header-menu-color) !important;
    fill: currentColor !important;
    stroke: currentColor !important;
    transition: color .14s ease, fill .14s ease, stroke .14s ease !important;
}

/* Hovering either contact changes its text and icon together. */
.zt-header .zt-contact__item:hover,
.zt-header .zt-contact__item:focus-visible,
.zt-header .zt-contact__item:hover .zt-contact__text,
.zt-header .zt-contact__item:focus-visible .zt-contact__text,
.zt-header .zt-contact__item:hover .zt-contact__icon-wrap,
.zt-header .zt-contact__item:focus-visible .zt-contact__icon-wrap,
.zt-header .zt-contact__item:hover .zt-contact__icon,
.zt-header .zt-contact__item:focus-visible .zt-contact__icon,
.zt-header .zt-contact__item:hover .zt-contact__icon use,
.zt-header .zt-contact__item:focus-visible .zt-contact__icon use {
    color: var(--zt-header-accent) !important;
    fill: currentColor !important;
    stroke: currentColor !important;
}

/* v19: exact catalog/contact hover colors. Keep this block last. */
:root {
    --zt-header-menu-color: #2c333b;
}

/* Catalog button stays yellow. Default label and icon are white. */
.zt-header a.zt-catalog-button,
.zt-header a.zt-catalog-button:link,
.zt-header a.zt-catalog-button:visited {
    background: var(--zt-header-accent, #FFB800) !important;
    background-image: none !important;
    border-color: var(--zt-header-accent, #FFB800) !important;
    color: #fff !important;
}

.zt-header a.zt-catalog-button > span {
    color: #fff !important;
    transition: color .12s ease !important;
}

.zt-header a.zt-catalog-button .zt-catalog-button__icon,
.zt-header a.zt-catalog-button .zt-catalog-button__icon path {
    color: #fff !important;
    fill: none !important;
    stroke: #fff !important;
    transition: color .12s ease, stroke .12s ease !important;
    transition-delay: 0s !important;
}

/* On hover only label and icon become charcoal; yellow background is unchanged. */
.zt-header a.zt-catalog-button:hover,
.zt-header a.zt-catalog-button:focus-visible,
.zt-header a.zt-catalog-button:active {
    background: var(--zt-header-accent, #FFB800) !important;
    background-image: none !important;
    border-color: var(--zt-header-accent, #FFB800) !important;
    color: var(--zt-header-menu-color) !important;
}

.zt-header a.zt-catalog-button:hover > span,
.zt-header a.zt-catalog-button:focus-visible > span,
.zt-header a.zt-catalog-button:active > span {
    color: var(--zt-header-menu-color) !important;
}

.zt-header a.zt-catalog-button:hover .zt-catalog-button__icon,
.zt-header a.zt-catalog-button:focus-visible .zt-catalog-button__icon,
.zt-header a.zt-catalog-button:active .zt-catalog-button__icon,
.zt-header a.zt-catalog-button:hover .zt-catalog-button__icon path,
.zt-header a.zt-catalog-button:focus-visible .zt-catalog-button__icon path,
.zt-header a.zt-catalog-button:active .zt-catalog-button__icon path {
    color: var(--zt-header-menu-color) !important;
    stroke: var(--zt-header-menu-color) !important;
    transition-delay: 0s !important;
}

/* Inline contact icons: deterministic fill/stroke, independent of SVG <use>. */
.zt-header .zt-contact__icon-wrap,
.zt-header .zt-contact__icon {
    color: var(--zt-header-menu-color) !important;
    transition: color .12s ease !important;
    transition-delay: 0s !important;
}

.zt-header .zt-contact__icon--phone path {
    fill: currentColor !important;
    stroke: none !important;
    transition: fill .12s ease !important;
    transition-delay: 0s !important;
}

.zt-header .zt-contact__icon--mail rect,
.zt-header .zt-contact__icon--mail path {
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.8 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    transition: stroke .12s ease !important;
    transition-delay: 0s !important;
}

/* Hover/focus changes both contact text and the real SVG geometry to yellow. */
.zt-header a.zt-contact__item:hover,
.zt-header a.zt-contact__item:focus-visible,
.zt-header a.zt-contact__item:hover .zt-contact__text,
.zt-header a.zt-contact__item:focus-visible .zt-contact__text,
.zt-header a.zt-contact__item:hover .zt-contact__icon-wrap,
.zt-header a.zt-contact__item:focus-visible .zt-contact__icon-wrap,
.zt-header a.zt-contact__item:hover .zt-contact__icon,
.zt-header a.zt-contact__item:focus-visible .zt-contact__icon {
    color: var(--zt-header-accent, #FFB800) !important;
}

.zt-header a.zt-contact__item:hover .zt-contact__icon--phone path,
.zt-header a.zt-contact__item:focus-visible .zt-contact__icon--phone path {
    fill: var(--zt-header-accent, #FFB800) !important;
}

.zt-header a.zt-contact__item:hover .zt-contact__icon--mail rect,
.zt-header a.zt-contact__item:hover .zt-contact__icon--mail path,
.zt-header a.zt-contact__item:focus-visible .zt-contact__icon--mail rect,
.zt-header a.zt-contact__item:focus-visible .zt-contact__icon--mail path {
    stroke: var(--zt-header-accent, #FFB800) !important;
}

/* ======================================================================
   v20: fixed white catalog label/icon + subtle hover motion.
   Background colors are intentionally not animated or changed on hover.
   Keep this block last so it overrides all earlier catalog hover rules.
   ====================================================================== */

/* Desktop catalog: white text and icon in every state. */
.zt-header a.zt-catalog-button,
.zt-header a.zt-catalog-button:link,
.zt-header a.zt-catalog-button:visited,
.zt-header a.zt-catalog-button:hover,
.zt-header a.zt-catalog-button:focus-visible,
.zt-header a.zt-catalog-button:active {
    background-color: var(--zt-header-accent, #FFB800) !important;
    background-image: none !important;
    border-color: var(--zt-header-accent, #FFB800) !important;
    color: #fff !important;
    transform: translate3d(0, 0, 0);
    transition: transform .18s cubic-bezier(.2,.75,.25,1),
                box-shadow .18s ease !important;
    will-change: transform;
}

.zt-header a.zt-catalog-button > span,
.zt-header a.zt-catalog-button:hover > span,
.zt-header a.zt-catalog-button:focus-visible > span,
.zt-header a.zt-catalog-button:active > span {
    display: inline-block;
    color: #fff !important;
    transform: translate3d(0, 0, 0);
    letter-spacing: .01em;
    transition: transform .18s cubic-bezier(.2,.75,.25,1),
                letter-spacing .18s ease !important;
}

.zt-header a.zt-catalog-button .zt-catalog-button__icon,
.zt-header a.zt-catalog-button .zt-catalog-button__icon path,
.zt-header a.zt-catalog-button:hover .zt-catalog-button__icon,
.zt-header a.zt-catalog-button:focus-visible .zt-catalog-button__icon,
.zt-header a.zt-catalog-button:active .zt-catalog-button__icon,
.zt-header a.zt-catalog-button:hover .zt-catalog-button__icon path,
.zt-header a.zt-catalog-button:focus-visible .zt-catalog-button__icon path,
.zt-header a.zt-catalog-button:active .zt-catalog-button__icon path {
    color: #fff !important;
    stroke: #fff !important;
    fill: none !important;
    transition: transform .2s cubic-bezier(.2,.75,.25,1) !important;
    transition-delay: 0s !important;
    transform-origin: 50% 50%;
}

.zt-header a.zt-catalog-button:hover,
.zt-header a.zt-catalog-button:focus-visible {
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 9px 18px rgba(17, 19, 24, .16) !important;
}

.zt-header a.zt-catalog-button:hover > span,
.zt-header a.zt-catalog-button:focus-visible > span {
    transform: translate3d(0, -1px, 0);
    letter-spacing: .025em;
}

.zt-header a.zt-catalog-button:hover .zt-catalog-button__icon,
.zt-header a.zt-catalog-button:focus-visible .zt-catalog-button__icon {
    transform: translate3d(0, -1px, 0) rotate(-4deg) scale(1.04);
}

.zt-header a.zt-catalog-button:active {
    transform: translate3d(0, 0, 0);
    box-shadow: 0 4px 10px rgba(17, 19, 24, .12) !important;
}

/* The neighbouring MAX and order controls get the same restrained lift.
   Their background colors remain exactly as defined by the existing theme. */
.zt-header .zt-max-button,
.zt-header .zt-callback-button,
.zt-mobile-actions__max,
.zt-mobile-actions__order,
.zt-mobile-actions__catalog {
    transform: translate3d(0, 0, 0);
    transition: transform .18s cubic-bezier(.2,.75,.25,1),
                box-shadow .18s ease,
                letter-spacing .18s ease !important;
    will-change: transform;
}

.zt-header .zt-max-button:hover,
.zt-header .zt-max-button:focus-visible,
.zt-header .zt-callback-button:hover,
.zt-header .zt-callback-button:focus-visible,
.zt-mobile-actions__max:hover,
.zt-mobile-actions__max:focus-visible,
.zt-mobile-actions__order:hover,
.zt-mobile-actions__order:focus-visible,
.zt-mobile-actions__catalog:hover,
.zt-mobile-actions__catalog:focus-visible {
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 9px 18px rgba(17, 19, 24, .14) !important;
}

.zt-header .zt-callback-button:hover,
.zt-header .zt-callback-button:focus-visible,
.zt-mobile-actions__order:hover,
.zt-mobile-actions__order:focus-visible,
.zt-mobile-actions__catalog:hover,
.zt-mobile-actions__catalog:focus-visible {
    letter-spacing: .025em;
}

.zt-header .zt-max-button:hover .zt-max-button__icon,
.zt-header .zt-max-button:focus-visible .zt-max-button__icon,
.zt-mobile-actions__max:hover span,
.zt-mobile-actions__max:focus-visible span {
    transform: translate3d(0, -1px, 0) scale(1.04);
}

/* Mobile catalog keeps white lettering before, during and after hover. */
.zt-mobile-actions a.zt-mobile-actions__catalog,
.zt-mobile-actions a.zt-mobile-actions__catalog:link,
.zt-mobile-actions a.zt-mobile-actions__catalog:visited,
.zt-mobile-actions a.zt-mobile-actions__catalog:hover,
.zt-mobile-actions a.zt-mobile-actions__catalog:focus-visible,
.zt-mobile-actions a.zt-mobile-actions__catalog:active {
    color: #fff !important;
    background-color: var(--zt-header-accent, #FFB800) !important;
    background-image: none !important;
    border-color: var(--zt-header-accent, #FFB800) !important;
}

@media (prefers-reduced-motion: reduce) {
    .zt-header a.zt-catalog-button,
    .zt-header a.zt-catalog-button > span,
    .zt-header a.zt-catalog-button .zt-catalog-button__icon,
    .zt-header .zt-max-button,
    .zt-header .zt-callback-button,
    .zt-mobile-actions__max,
    .zt-mobile-actions__order,
    .zt-mobile-actions__catalog {
        transition: none !important;
        transform: none !important;
    }
}

/* ======================================================================
   v21: catalog button uses the same whole-control hover lift as MAX/order.
   Text is static. The catalog glyph switches to the existing menu gear.
   Background and all foreground elements remain white/yellow as before.
   ====================================================================== */

.zt-header a.zt-catalog-button,
.zt-header a.zt-catalog-button:link,
.zt-header a.zt-catalog-button:visited,
.zt-header a.zt-catalog-button:hover,
.zt-header a.zt-catalog-button:focus-visible,
.zt-header a.zt-catalog-button:active {
    background-color: var(--zt-header-accent, #FFB800) !important;
    background-image: none !important;
    border-color: var(--zt-header-accent, #FFB800) !important;
    color: #fff !important;
    transition: transform .18s cubic-bezier(.2,.75,.25,1),
                box-shadow .18s ease !important;
}

/* Disable the old shine layer completely. */
.zt-header a.zt-catalog-button::before {
    display: none !important;
    content: none !important;
    animation: none !important;
}

/* The label no longer moves or changes tracking. */
.zt-header a.zt-catalog-button > .zt-catalog-button__label,
.zt-header a.zt-catalog-button:hover > .zt-catalog-button__label,
.zt-header a.zt-catalog-button:focus-visible > .zt-catalog-button__label,
.zt-header a.zt-catalog-button:active > .zt-catalog-button__label {
    display: inline-block;
    color: #fff !important;
    transform: none !important;
    letter-spacing: .01em !important;
    transition: none !important;
    animation: none !important;
}

/* Fixed-size icon stage prevents any layout shift while swapping glyphs. */
.zt-header a.zt-catalog-button .zt-catalog-button__icons {
    position: relative;
    display: inline-flex;
    width: 24px;
    min-width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    transform: none !important;
    transition: none !important;
}

.zt-header a.zt-catalog-button .zt-catalog-button__icon {
    position: absolute;
    inset: 0;
    display: block;
    width: 24px;
    height: 24px;
    color: #fff !important;
    stroke: #fff !important;
    fill: none !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    pointer-events: none;
}

.zt-header a.zt-catalog-button .zt-catalog-button__icon path,
.zt-header a.zt-catalog-button .zt-catalog-button__icon circle,
.zt-header a.zt-catalog-button .zt-catalog-button__icon use {
    color: #fff !important;
    stroke: #fff !important;
    fill: none !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

.zt-header a.zt-catalog-button .zt-catalog-button__icon--catalog {
    opacity: 1;
    visibility: visible;
}

.zt-header a.zt-catalog-button .zt-catalog-button__icon--gear {
    opacity: 0;
    visibility: hidden;
}

.zt-header a.zt-catalog-button:hover .zt-catalog-button__icon--catalog,
.zt-header a.zt-catalog-button:focus-visible .zt-catalog-button__icon--catalog {
    opacity: 0;
    visibility: hidden;
}

.zt-header a.zt-catalog-button:hover .zt-catalog-button__icon--gear,
.zt-header a.zt-catalog-button:focus-visible .zt-catalog-button__icon--gear {
    opacity: 1;
    visibility: visible;
}

/* Same restrained lift used by the neighbouring controls. */
.zt-header a.zt-catalog-button:hover,
.zt-header a.zt-catalog-button:focus-visible {
    transform: translate3d(0, -2px, 0) !important;
    box-shadow: 0 9px 18px rgba(17, 19, 24, .14) !important;
}

.zt-header a.zt-catalog-button:active {
    transform: translate3d(0, 0, 0) !important;
    box-shadow: 0 4px 10px rgba(17, 19, 24, .12) !important;
}

@media (prefers-reduced-motion: reduce) {
    .zt-header a.zt-catalog-button {
        transition: none !important;
        transform: none !important;
    }
}


/* ======================================================================
   v22: larger catalog/gear glyphs, white spinning gear, and a separate
   "Узлы и агрегаты" mega-menu. Semantic menu classes keep animations
   correct even when the navigation order changes.
   ====================================================================== */

/* Larger icon stage for both catalog glyphs. */
.zt-header a.zt-catalog-button .zt-catalog-button__icons {
    width: 31px !important;
    min-width: 31px !important;
    height: 31px !important;
    flex-basis: 31px !important;
}

.zt-header a.zt-catalog-button .zt-catalog-button__icon {
    width: 31px !important;
    height: 31px !important;
    color: #fff !important;
    stroke: #fff !important;
    fill: none !important;
    transform-origin: 50% 50% !important;
}

.zt-header a.zt-catalog-button .zt-catalog-button__icon--gear,
.zt-header a.zt-catalog-button .zt-catalog-button__icon--gear use,
.zt-header a.zt-catalog-button .zt-catalog-button__icon--gear path,
.zt-header a.zt-catalog-button:hover .zt-catalog-button__icon--gear,
.zt-header a.zt-catalog-button:hover .zt-catalog-button__icon--gear use,
.zt-header a.zt-catalog-button:focus-visible .zt-catalog-button__icon--gear,
.zt-header a.zt-catalog-button:focus-visible .zt-catalog-button__icon--gear use {
    color: #fff !important;
    stroke: #fff !important;
    fill: none !important;
    filter: none !important;
}

/* The replacement gear rotates once while the whole button keeps its lift. */
.zt-header a.zt-catalog-button:hover .zt-catalog-button__icon--gear,
.zt-header a.zt-catalog-button:focus-visible .zt-catalog-button__icon--gear {
    opacity: 1 !important;
    visibility: visible !important;
    animation: zt-catalog-gear-spin .68s cubic-bezier(.2,.75,.25,1) both !important;
}

@keyframes zt-catalog-gear-spin {
    0%   { transform: rotate(0deg) scale(.92); }
    55%  { transform: rotate(230deg) scale(1.08); }
    100% { transform: rotate(360deg) scale(1); }
}

/* One content column plus the same benefits module for the split menus. */
@media (min-width: 1081px) {
    .zt-header .zt-mega--parts .zt-mega__body,
    .zt-header .zt-mega--units .zt-mega__body {
        justify-content: space-between !important;
    }

    .zt-header .zt-mega--parts .zt-mega__column,
    .zt-header .zt-mega--units .zt-mega__column {
        max-width: 720px !important;
        flex: 1 1 720px !important;
    }

    .zt-header .zt-mega--parts .zt-mega__benefits,
    .zt-header .zt-mega--units .zt-mega__benefits {
        min-width: 360px !important;
        flex: 0 1 520px !important;
    }
}

/* Stable, class-based icon animations after adding the new menu item. */
.zt-header .zt-nav__item--home:hover .zt-nav__icon,
.zt-header .zt-nav__item--home:focus-within .zt-nav__icon {
    animation: zt-nav-home-hop .52s cubic-bezier(.22,.9,.3,1) !important;
}

.zt-header .zt-nav__item--parts:hover .zt-nav__icon,
.zt-header .zt-nav__item--parts:focus-within .zt-nav__icon {
    animation: zt-nav-gear-spin .62s cubic-bezier(.2,.8,.25,1) !important;
}

.zt-header .zt-nav__item--units:hover .zt-nav__icon,
.zt-header .zt-nav__item--units:focus-within .zt-nav__icon {
    animation: zt-nav-units-tilt .58s cubic-bezier(.2,.8,.25,1) !important;
}

.zt-header .zt-nav__item--service:hover .zt-nav__icon,
.zt-header .zt-nav__item--service:focus-within .zt-nav__icon {
    animation: zt-nav-wrench-swing .58s ease-in-out !important;
}

.zt-header .zt-nav__item--offers:hover .zt-nav__icon,
.zt-header .zt-nav__item--offers:focus-within .zt-nav__icon {
    animation: zt-nav-tag-swing .58s cubic-bezier(.2,.8,.25,1) !important;
}

.zt-header .zt-nav__item--delivery:hover .zt-nav__icon,
.zt-header .zt-nav__item--delivery:focus-within .zt-nav__icon {
    animation: zt-nav-truck-drive .62s cubic-bezier(.2,.8,.25,1) !important;
}

.zt-header .zt-nav__item--company:hover .zt-nav__icon,
.zt-header .zt-nav__item--company:focus-within .zt-nav__icon {
    animation: zt-nav-building-pulse .56s ease-in-out !important;
}

.zt-header .zt-nav__item--contacts:hover .zt-nav__icon,
.zt-header .zt-nav__item--contacts:focus-within .zt-nav__icon {
    animation: zt-nav-mail-pop .54s cubic-bezier(.22,.9,.3,1) !important;
}

@keyframes zt-nav-units-tilt {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    38% { transform: translateY(-4px) rotate(-8deg) scale(1.07); }
    72% { transform: translateY(-1px) rotate(5deg) scale(1.03); }
}

/* The extra desktop item still fits cleanly before the mobile breakpoint. */
@media (min-width: 1081px) and (max-width: 1600px) {
    .zt-header .zt-nav__link,
    .zt-header .zt-nav__trigger {
        gap: 7px !important;
        padding-right: 10px !important;
        padding-left: 10px !important;
        font-size: 13.5px !important;
    }

    .zt-header .zt-nav__icon {
        width: 22px !important;
        height: 22px !important;
    }

    .zt-header .zt-nav__chevron {
        width: 12px !important;
        height: 12px !important;
    }
}

@media (max-width: 480px) {
    .zt-header a.zt-catalog-button .zt-catalog-button__icons,
    .zt-header a.zt-catalog-button .zt-catalog-button__icon {
        width: 28px !important;
        min-width: 28px !important;
        height: 28px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .zt-header a.zt-catalog-button:hover .zt-catalog-button__icon--gear,
    .zt-header a.zt-catalog-button:focus-visible .zt-catalog-button__icon--gear,
    .zt-header .zt-nav__item--units:hover .zt-nav__icon,
    .zt-header .zt-nav__item--units:focus-within .zt-nav__icon {
        animation: none !important;
    }
}


/* ======================================================================
   v23: deterministic white gear and reliable rotation on catalog hover.
   The gear is fully inline (no <use> shadow tree), remains mounted at all
   times, and rotates through transform transition instead of keyframes.
   ====================================================================== */

/* Keep both glyphs mounted so the transform transition always starts. */
.zt-header a.zt-catalog-button .zt-catalog-button__icon--catalog,
.zt-header a.zt-catalog-button .zt-catalog-button__icon--gear {
    display: block !important;
    visibility: visible !important;
    transform-origin: 50% 50% !important;
    backface-visibility: hidden;
    will-change: transform, opacity;
}

/* Initial state: catalog icon visible, gear transparent behind it. */
.zt-header a.zt-catalog-button .zt-catalog-button__icon--catalog {
    opacity: 1 !important;
    transform: rotate(0deg) scale(1) !important;
    transition: opacity .08s linear !important;
}

.zt-header a.zt-catalog-button .zt-catalog-button__icon--gear {
    opacity: 0 !important;
    color: #fff !important;
    stroke: #fff !important;
    fill: none !important;
    filter: none !important;
    transform: rotate(0deg) scale(.96) !important;
    transition: opacity .06s linear,
                transform 1.35s cubic-bezier(.2,.72,.24,1) !important;
    animation: none !important;
}

/* Hard override for every actual gear primitive. */
.zt-header a.zt-catalog-button .zt-catalog-button__icon--gear circle,
.zt-header a.zt-catalog-button .zt-catalog-button__icon--gear path {
    color: #fff !important;
    stroke: #fff !important;
    fill: none !important;
    opacity: 1 !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
}

/* Hover/focus: swap glyphs and make one clean clockwise turn. */
.zt-header a.zt-catalog-button:hover .zt-catalog-button__icon--catalog,
.zt-header a.zt-catalog-button:focus-visible .zt-catalog-button__icon--catalog {
    opacity: 0 !important;
}

.zt-header a.zt-catalog-button:hover .zt-catalog-button__icon--gear,
.zt-header a.zt-catalog-button:focus-visible .zt-catalog-button__icon--gear {
    opacity: 1 !important;
    color: #fff !important;
    stroke: #fff !important;
    transform: rotate(360deg) scale(1) !important;
    animation: none !important;
}

/* Reassert white after all theme/svg rules. */
.zt-header a.zt-catalog-button:hover .zt-catalog-button__icon--gear circle,
.zt-header a.zt-catalog-button:hover .zt-catalog-button__icon--gear path,
.zt-header a.zt-catalog-button:focus-visible .zt-catalog-button__icon--gear circle,
.zt-header a.zt-catalog-button:focus-visible .zt-catalog-button__icon--gear path {
    stroke: #fff !important;
    fill: none !important;
}


/* ======================================================================
   v24: slower catalog gear rotation.
   ====================================================================== */
.zt-header a.zt-catalog-button .zt-catalog-button__icon--gear {
    transition: opacity .06s linear,
                transform 1.35s cubic-bezier(.2,.72,.24,1) !important;
}
