/* Canonical header layout shared by the homepage and all inner pages. */
@font-face {
font-display:swap;
    font-family: "Jost";
    src: url('/wp-content/themes/adventure-tours/assets/home/css/../fonts/Jost-Regular.woff') format("woff");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
font-display:swap;
    font-family: "Jost";
    src: url('/wp-content/themes/adventure-tours/assets/home/css/../fonts/Jost-Medium.woff') format("woff");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
font-display:swap;
    font-family: "Jost";
    src: url('/wp-content/themes/adventure-tours/assets/home/css/../fonts/Jost-SemiBold.woff') format("woff");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

.site-header-shell {
    --sz-header-white: hsl(0, 0%, 100%);
    --sz-header-brown: hsl(22.86, 32.98%, 37.45%);
    --sz-header-orange: hsl(24.36, 87.07%, 54.51%);
    --sz-header-orange-hot: hsl(11.02, 84.48%, 54.51%);
    --sz-header-yellow: hsl(39.55, 95.65%, 54.9%);
    position: relative;
    z-index: 1000;
    height: 190px;
    color: var(--sz-header-white);
    background: var(--sz-header-brown);
    font-family: "Jost", Arial, sans-serif;
}

.hero > .site-header-shell {
    position: absolute;
    z-index: 20;
    inset: 0 0 auto;
    width: 100%;
    background: transparent;
}

.site-header-shell *,
.site-header-shell *::before,
.site-header-shell *::after {
    box-sizing: border-box;
}

.site-header-shell a {
    color: inherit;
    text-decoration: none;
}

/* Do not let the theme's global dashed-link hover leak into the shared header. */
.site-header-shell a:not(.phone),
.site-header-shell a:not(.phone):hover,
.site-header-shell a:not(.phone):focus,
.site-header-shell a:not(.phone):active {
    border-bottom: none;
}

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

/* Desktop: two real rows instead of individually positioned elements. */
.site-header-shell .site-header {
    position: relative;
    z-index: 20;
    inset: auto;
    width: min(1200px, 100%);
    height: 190px;
    margin: 0 auto;
    padding-top: 15px;
    color: var(--sz-header-white);
    font-family: "Jost", Arial, sans-serif;
    transform: none;
}

.site-header-shell .header-primary {
    display: grid;
    grid-template-columns: 89px 8px minmax(0, 780px) minmax(0, 1fr);
    height: 65px;
    align-items: start;
}

.site-header-shell .logo {
    position: static;
    grid-column: 1;
    width: 89px;
    margin: 0;
}

.site-header-shell .logo img,
.site-header-shell .mobile-menu-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.site-header-shell .desktop-nav {
    position: static;
    z-index: 6;
    grid-column: 3;
    width: 100%;
    margin: 20px 0 0;
}

.site-header-shell .desktop-nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header-shell .desktop-nav li {
    position: relative;
    min-width: 0;
    margin: 0;
    padding: 0;
}

.site-header-shell .desktop-nav > ul > li > a {
    position: relative;
    display: block;
    padding: 4px 0 5px;
    color: var(--sz-header-white);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.8px;
    white-space: nowrap;
    text-transform: uppercase;
    text-shadow: 0 2px 6px hsla(0, 0%, 0%, 0.7);
}

.site-header-shell .desktop-nav > ul > li > a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--sz-header-white);
    content: "";
    transition: background-color 0.2s ease;
}

.site-header-shell .desktop-nav > ul > li:hover > a::after,
.site-header-shell .desktop-nav > ul > li:focus-within > a::after {
    background: var(--sz-header-orange);
}

.site-header-shell .submenu {
    position: absolute;
    z-index: 30;
    top: calc(100% + 3px);
    left: 0;
    display: block !important;
    min-width: 220px;
    margin: 0;
    padding: 6px 0 !important;
    visibility: hidden;
    opacity: 0;
    border-radius: 5px;
    background: hsla(23.33, 29.51%, 23.92%, 0.94);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 6px hsla(0, 0%, 0%, 0.3);
    transition: opacity 0.18s ease, visibility 0.18s ease;
}

.site-header-shell .submenu a {
    display: block;
    padding: 10px 16px;
    color: var(--sz-header-white);
    font-size: 14px;
    white-space: nowrap;
    text-transform: uppercase;
    text-shadow: 0 2px 6px hsl(0, 0%, 0%);
}

.site-header-shell .has-submenu:hover > .submenu,
.site-header-shell .has-submenu:focus-within > .submenu {
    visibility: visible;
    opacity: 1;
}

.site-header-shell .header-actions {
    position: static;
    grid-column: 4;
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 7px;
    margin: 3px 0 0;
}

.site-header-shell .social {
    position: static;
    display: grid;
    width: 40px;
    height: 40px;
}

.site-header-shell .site-header .social {
    display: grid;
}

.site-header-shell .social img {
    position: static;
    grid-area: 1 / 1;
    display: block;
    width: 100%;
    height: 100%;
    transition: opacity 0.2s ease;
}

.site-header-shell .social-hover,
.site-header-shell .social:not(.social--max):hover .social-normal {
    opacity: 0;
}

.site-header-shell .social:hover .social-hover {
    opacity: 1;
}

.site-header-shell .social--max i {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: currentColor;
    font-size: 28px;
}

.site-header-shell .callback {
    display: grid;
    width: 170px;
    height: 42px;
    place-items: center;
    margin-left: 2px;
    border-radius: 42px;
    background: var(--sz-header-orange);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}

.site-header-shell .callback:hover {
    color: var(--sz-header-white);
    background: var(--sz-header-orange-hot);
}

.site-header-shell .header-secondary {
    display: flex;
    min-height: 45px;
    align-items: flex-start;
    margin-left: 97px;
}

.site-header-shell .rating {
    position: static;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 14px;
    margin: 0;
    color: var(--sz-header-white);
    white-space: nowrap;
}

.site-header-shell .rating img {
    display: block;
    width: 125px;
    height: auto;
}

.site-header-shell .rating span {
    font-size: 16px;
    line-height: 1.15;
}

.site-header-shell .header-contact {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-left: auto;
}

.site-header-shell .phone {
    position: static;
    display: block;
    width: 160px;
    padding: 0 0 4px;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.8);
    color: var(--sz-header-white);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.site-header-shell .checklist {
    position: static;
    display: grid;
    width: 305px;
    height: 45px;
    place-items: center;
    margin-top: 1px;
    border-radius: 42px;
    color: var(--sz-header-white);
    background: hsl(216, 63.27%, 51.96%);
    font-size: 16px;
    white-space: nowrap;
    opacity: 0.95;
}

.site-header-shell .mobile-menu-button,
.site-header-shell .mobile-menu {
    display: none;
}

.site-header-shell .open-search {
    position: absolute;
    z-index: 20;
    top: 140px;
    right: max(calc((100vw - 1200px) / 2), 24px);
    display: block;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    color: hsla(0, 0%, 100%, 0.75);
    background: transparent;
}

.site-header-shell .open-search svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Sticky desktop header keeps the same two-row structure. */
.site-header-shell .site-header.is-fixed {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 80px;
    margin: 0;
    padding: 4px 30px 0 25px;
    border-top: 0;
    background: var(--sz-header-brown);
    box-shadow: inset 0 1px var(--sz-header-yellow), 0 2px 10px hsla(20, 51.22%, 8.04%, 0.16);
    animation: sz-fixed-header-in 0.3s ease both;
}

.site-header-shell .site-header.is-fixed .header-primary {
    grid-template-columns: 55px 57px minmax(0, 800px) minmax(0, 1fr);
    height: 37px;
}

.site-header-shell .site-header.is-fixed .logo {
    width: 55px;
}

.site-header-shell .site-header.is-fixed .desktop-nav {
    margin-top: 11px;
}

.site-header-shell .site-header.is-fixed .desktop-nav > ul {
    justify-content: flex-start;
    gap: 17px;
}

.site-header-shell .site-header.is-fixed .desktop-nav > ul > li > a {
    padding: 0 0 7px;
    font-size: 16px;
}

.site-header-shell .site-header.is-fixed .submenu {
    min-width: 190px;
}

.site-header-shell .site-header.is-fixed .submenu a {
    padding: 8px 13px;
    font-size: 12px;
}

.site-header-shell .site-header.is-fixed .header-actions {
    gap: 6px;
    margin-top: 0;
}

.site-header-shell .site-header.is-fixed .social {
    width: 30px;
    height: 30px;
}

.site-header-shell .site-header.is-fixed .callback {
    width: 200px;
    height: 35px;
    font-size: 14px;
}

.site-header-shell .site-header.is-fixed .header-secondary {
    min-height: 35px;
    margin-left: 112px;
}

.site-header-shell .site-header.is-fixed .rating {
    align-items: flex-start;
    gap: 20px;
}

.site-header-shell .site-header.is-fixed .rating span {
    width: 400px;
    margin-top: 6px;
    line-height: 1;
}

.site-header-shell .site-header.is-fixed .header-contact {
    gap: 22px;
}

.site-header-shell .site-header.is-fixed .phone {
    width: 148px;
    margin-top: 2px;
}

.site-header-shell .site-header.is-fixed .checklist {
    width: 350px;
    height: 30px;
    margin-top: 4px;
}

@keyframes sz-fixed-header-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

html.menu-open,
html.menu-open body {
    overflow: hidden;
}

@media (min-width: 1200px) and (max-width: 1279px) {
    .site-header-shell .site-header.is-fixed .header-primary {
        grid-template-columns: 55px 57px minmax(0, 730px) minmax(0, 1fr);
    }

    .site-header-shell .site-header.is-fixed .callback {
        width: 170px;
    }

    .site-header-shell .site-header.is-fixed .rating span {
        width: 300px;
    }

    .site-header-shell .site-header.is-fixed .header-contact {
        gap: 20px;
    }

    .site-header-shell .site-header.is-fixed .checklist {
        width: 330px;
    }
}

/* Tablet: grid layers preserve the familiar composition without absolute children. */
@media (max-width: 1199px) {
    .site-header-shell,
    .hero > .site-header-shell {
        height: 128px;
    }

    .site-header-shell .site-header {
        --sz-mobile-action-size: 39px;
        --sz-mobile-action-gap: 8px;
        display: grid;
        grid-template: 1fr / 1fr;
        width: min(960px, 100%);
        height: 128px;
        padding: 0;
    }

    .site-header-shell .header-primary,
    .site-header-shell .header-secondary {
        grid-area: 1 / 1;
        display: grid;
        grid-template: 1fr / 1fr;
        width: 100%;
        height: 100%;
        min-height: 0;
        margin: 0;
    }

    .site-header-shell .header-primary {
        z-index: 2;
        pointer-events: none;
    }

    .site-header-shell .header-secondary {
        z-index: 1;
    }

    .site-header-shell .header-primary .logo,
    .site-header-shell .header-primary .header-actions,
    .site-header-shell .header-primary .mobile-menu-button {
        pointer-events: auto;
    }

    .site-header-shell .logo,
    .site-header-shell .header-actions,
    .site-header-shell .mobile-menu-button,
    .site-header-shell .rating,
    .site-header-shell .header-contact {
        grid-area: 1 / 1;
        align-self: start;
    }

    .site-header-shell .logo {
        justify-self: start;
        width: 74px;
        margin: 21px 0 0 42px;
    }

    .site-header-shell .desktop-nav,
    .site-header-shell .callback,
    .site-header-shell .checklist,
    .site-header-shell .open-search {
        display: none;
    }

    .site-header-shell .header-actions {
        justify-self: end;
        gap: 7px;
        margin: 35px calc(23px + var(--sz-mobile-action-size) + var(--sz-mobile-action-gap)) 0 0;
    }

    .site-header-shell .social {
        width: var(--sz-mobile-action-size);
        height: var(--sz-mobile-action-size);
    }

    .site-header-shell .rating {
        justify-self: start;
        gap: 12px;
        margin: 41px 0 0 132px;
    }

    .site-header-shell .rating img {
        width: 109px;
    }

    .site-header-shell .header-contact {
        display: block;
        justify-self: end;
        margin: 79px 85px 0 0;
    }

    .site-header-shell .phone {
        width: 172px;
    }

    .site-header-shell .mobile-menu-button {
        position: static;
        z-index: 3;
        justify-self: end;
        display: grid;
        width: var(--sz-mobile-action-size);
        height: var(--sz-mobile-action-size);
        place-content: center;
        gap: 4px;
        margin: 35px 23px 0 0;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: hsl(216.23, 55.21%, 37.65%);
        cursor: pointer;
    }

    .site-header-shell .mobile-menu-button span:not(.sr-only) {
        display: block;
        width: 19px;
        height: 2px;
        background: var(--sz-header-white);
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .site-header-shell .mobile-menu-button[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .site-header-shell .mobile-menu-button[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .site-header-shell .mobile-menu-button[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    /* The drawer stays fixed to the viewport; its content follows normal flow. */
    .site-header-shell .mobile-menu,
    .site-header-shell .site-header + .mobile-menu,
    .site-header-shell .site-header.is-fixed + .mobile-menu {
        position: fixed;
        z-index: 30000;
        inset: 0 0 0 auto;
        display: flex;
        width: min(360px, 100%);
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        padding: 45px 24px 31px 27px;
        overflow-x: hidden;
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
        border: 0;
        color: var(--sz-header-white);
        background: var(--sz-header-brown);
        box-shadow: -12px 0 32px hsla(20.87, 48.94%, 9.22%, 0.24);
        transform: translateX(100%);
        transition: opacity 0.24s ease, transform 0.32s ease, visibility 0.32s ease;
    }

    .site-header-shell .mobile-menu.is-open,
    .site-header-shell .site-header.is-fixed + .mobile-menu.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }

    .site-header-shell .mobile-menu-close {
        position: absolute;
        z-index: 2;
        top: 14px;
        right: 15px;
        width: 24px;
        height: 24px;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .site-header-shell .mobile-menu-close::before,
    .site-header-shell .mobile-menu-close::after {
        position: absolute;
        top: 11px;
        left: 0;
        width: 24px;
        height: 2px;
        background: var(--sz-header-white);
        content: "";
    }

    .site-header-shell .mobile-menu-close::before { transform: rotate(45deg); }
    .site-header-shell .mobile-menu-close::after { transform: rotate(-45deg); }

    .site-header-shell .mobile-menu .mobile-menu-logo {
        position: static;
        display: block;
        width: 115px;
        flex: 0 0 auto;
        margin: 0 0 32px;
        padding: 0;
        border: 0;
    }

    .site-header-shell .mobile-menu-list,
    .site-header-shell .mobile-submenu {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .site-header-shell .mobile-menu-list {
        flex: 0 0 auto;
        padding-bottom: 32px;
    }

    .site-header-shell .mobile-menu-item {
        margin: 0;
        padding: 0;
    }

    .site-header-shell .mobile-menu-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 32px;
        min-height: 32px;
        align-items: center;
        column-gap: 12px;
    }

    .site-header-shell .mobile-menu .mobile-menu-item > a,
    .site-header-shell .mobile-menu .mobile-menu-row > a {
        display: inline-block;
        padding: 0;
        border: 0;
        color: var(--sz-header-white);
        font-size: 16px;
        font-weight: 500;
        line-height: 32px;
        text-transform: uppercase;
    }

    .site-header-shell .mobile-submenu-toggle {
        position: relative;
        width: 32px;
        height: 32px;
        justify-self: end;
        margin: 0;
        padding: 0;
        border: 0;
        color: var(--sz-header-white);
        background: transparent;
        cursor: pointer;
    }

    .site-header-shell .mobile-submenu-toggle::before {
        position: absolute;
        top: 9px;
        right: 5px;
        width: 8px;
        height: 8px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        content: "";
        transform: rotate(45deg);
        transition: transform 0.25s ease, top 0.25s ease;
    }

    .site-header-shell .mobile-menu-item.is-expanded > .mobile-menu-row .mobile-submenu-toggle::before {
        top: 13px;
        transform: rotate(225deg);
    }

    .site-header-shell .mobile-submenu {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
    }

    .site-header-shell .mobile-menu-item.is-expanded > .mobile-submenu {
        max-height: 360px;
        padding: 2px 0 8px 13px;
        opacity: 1;
    }

    .site-header-shell .mobile-menu .mobile-submenu a {
        display: block;
        padding: 3px 0;
        border: 0;
        color: hsla(0, 0%, 100%, 0.84);
        font-size: 13px;
        line-height: 1.35;
        text-transform: none;
    }

    .site-header-shell .mobile-menu-socials {
        display: block;
        flex: 0 0 auto;
        margin: auto 0 0;
    }

    .site-header-shell .mobile-menu-socials__title {
        display: block;
        margin-bottom: 12px;
        color: hsla(0, 0%, 100%, 0.72);
        font-size: 12px;
        font-weight: 500;
        line-height: 1.3;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .site-header-shell .mobile-menu .mobile-menu-socials .sz-theme-footer-socials {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin: 0;
    }

    .site-header-shell .mobile-menu .mobile-menu-socials .sz-theme-footer-socials a {
        display: grid;
        width: 40px;
        height: 40px;
        place-items: center;
        padding: 0;
        border: 0;
        border-radius: 50%;
        color: var(--sz-header-white);
        background: hsla(0, 0%, 100%, 0.12);
        text-decoration: none;
        transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .site-header-shell .mobile-menu .mobile-menu-socials .sz-theme-footer-socials a:hover,
    .site-header-shell .mobile-menu .mobile-menu-socials .sz-theme-footer-socials a:focus-visible {
        background: hsla(0, 0%, 100%, 0.22);
        transform: translateY(-1px);
    }

    .site-header-shell .mobile-menu .mobile-menu-socials .sz-theme-footer-socials img,
    .site-header-shell .mobile-menu .mobile-menu-socials .sz-theme-footer-socials i {
        display: block;
        width: 28px;
        height: 28px;
        object-fit: contain;
    }

    .site-header-shell .mobile-menu .mobile-menu-socials .sz-theme-footer-socials i {
        font-size: 24px;
        line-height: 28px;
        text-align: center;
    }

    .site-header-shell .site-header.is-fixed {
        --sz-mobile-action-size: 30px;
        display: grid;
        width: 100%;
        height: 72px;
        padding: 0;
    }

    .site-header-shell .site-header.is-fixed .header-primary,
    .site-header-shell .site-header.is-fixed .header-secondary {
        display: grid;
        grid-template: 1fr / 1fr;
        min-height: 0;
        margin: 0;
    }

    .site-header-shell .site-header.is-fixed .logo {
        width: 43px;
        margin: 5px 0 0 16px;
    }

    .site-header-shell .site-header.is-fixed .header-actions {
        gap: 6px;
        margin: 8px calc(16px + var(--sz-mobile-action-size) + var(--sz-mobile-action-gap)) 0 0;
    }

    .site-header-shell .site-header.is-fixed .social {
        width: var(--sz-mobile-action-size);
        height: var(--sz-mobile-action-size);
    }

    .site-header-shell .site-header.is-fixed .rating {
        gap: 8px;
        margin: 11px 0 0 72px;
    }

    .site-header-shell .site-header.is-fixed .rating img {
        width: 82px;
    }

    .site-header-shell .site-header.is-fixed .rating span {
        width: 310px;
        margin-top: 0;
        font-size: 11px;
        line-height: 1.15;
    }

    .site-header-shell .site-header.is-fixed .header-contact {
        display: block;
        margin: 41px 64px 0 0;
    }

    .site-header-shell .site-header.is-fixed .phone {
        width: 155px;
        margin: 0;
        font-size: 12px;
    }

    .site-header-shell .site-header.is-fixed .mobile-menu-button {
        width: var(--sz-mobile-action-size);
        height: var(--sz-mobile-action-size);
        margin: 8px 16px 0 0;
    }
}

@media (max-width: 959px) {
    .site-header-shell .site-header {
        width: min(640px, 100%);
    }

    .site-header-shell .logo {
        margin: 19px 0 0 10px;
    }

    .site-header-shell .header-actions {
        margin-right: calc(12px + var(--sz-mobile-action-size) + var(--sz-mobile-action-gap));
    }

    .site-header-shell .social--whatsapp {
        display: none;
    }

    .site-header-shell .rating {
        margin: 32px 0 0 94px;
    }

    .site-header-shell .rating img {
        width: 76px;
    }

    .site-header-shell .rating span {
        width: 210px;
        white-space: normal;
    }

    .site-header-shell .header-contact {
        display: none;
    }

    .site-header-shell .mobile-menu-button {
        margin-right: 12px;
    }

    .site-header-shell .site-header.is-fixed {
        height: 68px;
    }

    .site-header-shell .site-header.is-fixed .logo {
        width: 41px;
        margin: 5px 0 0 12px;
    }

    .site-header-shell .site-header.is-fixed .rating {
        margin: 9px 0 0 64px;
    }

    .site-header-shell .site-header.is-fixed .rating img {
        width: 76px;
    }

    .site-header-shell .site-header.is-fixed .rating span {
        width: 170px;
        font-size: 10px;
        white-space: normal;
    }

    .site-header-shell .site-header.is-fixed .header-actions {
        margin: 8px calc(12px + var(--sz-mobile-action-size) + var(--sz-mobile-action-gap)) 0 0;
    }

    .site-header-shell .site-header.is-fixed .header-contact {
        display: none;
    }

    .site-header-shell .site-header.is-fixed .mobile-menu-button {
        margin: 8px 12px 0 0;
    }
}

@media (max-width: 639px) {
    .site-header-shell,
    .hero > .site-header-shell,
    .site-header-shell .site-header {
        width: 100%;
        height: 119px;
    }

    .site-header-shell .site-header {
        --sz-mobile-action-size: 28px;
    }

    .site-header-shell .logo {
        width: 74px;
        margin: 19px 0 0 10px;
    }

    .site-header-shell .header-actions {
        gap: 4px;
        margin: 19px calc(10px + var(--sz-mobile-action-size) + var(--sz-mobile-action-gap)) 0 0;
    }

    .site-header-shell .social {
        width: var(--sz-mobile-action-size);
        height: var(--sz-mobile-action-size);
    }

    .site-header-shell .social--max i {
        font-size: 22px;
    }

    .site-header-shell .social--whatsapp {
        display: grid;
    }

    .site-header-shell .rating {
        display: block;
        margin: 32px 0 0 94px;
    }

    .site-header-shell .rating img {
        width: 76px;
        margin-bottom: 8px;
    }

    .site-header-shell .rating span {
        display: block;
        width: 187px;
        font-size: 14px;
        line-height: 1;
    }

    .site-header-shell .header-contact {
        display: block;
        margin: 76px 7px 0 0;
    }

    .site-header-shell .phone {
        width: 160px;
        font-size: 16px;
        text-align: right;
    }

    .site-header-shell .mobile-menu-button {
        width: var(--sz-mobile-action-size);
        height: var(--sz-mobile-action-size);
        margin: 19px 10px 0 0;
    }

    .site-header-shell .site-header:not(.is-fixed) .mobile-menu-button {
        width: var(--sz-mobile-action-size);
        height: var(--sz-mobile-action-size);
        margin: 19px 10px 0 0;
    }

    .site-header-shell .mobile-menu,
    .site-header-shell .site-header + .mobile-menu,
    .site-header-shell .site-header.is-fixed + .mobile-menu {
        width: 100%;
        box-shadow: none;
    }

    .hero > .site-header-shell .open-search {
        top: 108px;
        right: 10px;
        display: block;
        width: 30px;
        height: 30px;
    }

    .site-header-shell .site-header.is-fixed {
        --sz-mobile-action-size: 28px;
        height: 83px;
    }

    .site-header-shell .site-header.is-fixed .logo {
        width: 55px;
        margin: 8px 0 0 10px;
    }

    .site-header-shell .site-header.is-fixed .rating {
        display: block;
        margin: 16px 0 0 76px;
    }

    .site-header-shell .site-header.is-fixed .rating img {
        width: 76px;
        margin: 0 0 4px;
    }

    .site-header-shell .site-header.is-fixed .rating span {
        display: block;
        width: 90px;
        margin: 0;
        font-size: 9px;
        line-height: 1.15;
    }

    .site-header-shell .site-header.is-fixed .header-actions {
        gap: 4px;
        margin: 11px calc(12px + var(--sz-mobile-action-size) + var(--sz-mobile-action-gap)) 0 0;
    }

    .site-header-shell .site-header.is-fixed .social {
        width: var(--sz-mobile-action-size);
        height: var(--sz-mobile-action-size);
    }

    .site-header-shell .site-header.is-fixed .header-contact {
        display: block;
        margin: 58px 12px 0 0;
    }

    .site-header-shell .site-header.is-fixed .phone {
        width: 142px;
        font-size: 14px;
        text-align: right;
    }

    .site-header-shell .site-header.is-fixed .mobile-menu-button {
        width: var(--sz-mobile-action-size);
        height: var(--sz-mobile-action-size);
        margin: 11px 12px 0 0;
    }
}

@media (max-width: 479px) {
    .site-header-shell .logo {
        width: 55px;
        margin-top: 20px;
    }

    .site-header-shell .rating {
        margin: 34px 0 0 76px;
    }

    .site-header-shell .rating span {
        width: 110px;
        font-size: 8px;
        line-height: 1.2;
    }

    .site-header-shell .header-contact {
        margin: 74px 9px 0 0;
    }

}

@media (max-width: 389px) {
    .site-header-shell .rating {
        margin-top: 30px;
    }

    .site-header-shell .rating span {
        width: 78px;
        line-height: 1.15;
    }

    .site-header-shell .header-contact {
        margin-top: 72px;
    }

    .site-header-shell .phone {
        width: 142px;
        font-size: 14px;
    }

}

@media (max-width: 1199px) and (max-height: 650px) {
    .site-header-shell .mobile-menu,
    .site-header-shell .site-header + .mobile-menu,
    .site-header-shell .site-header.is-fixed + .mobile-menu {
        padding-top: 28px;
        padding-bottom: 20px;
    }

    .site-header-shell .mobile-menu .mobile-menu-logo {
        width: 92px;
        margin-bottom: 4px;
    }

    .site-header-shell .mobile-menu-list {
        padding-bottom: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-header-shell .site-header.is-fixed,
    .site-header-shell .mobile-menu {
        animation: none;
        transition: none;
    }
}
