:root {
    --sg-navy: #082b4c;
    --sg-navy-deep: #061f38;
    --sg-green: #11b97e;
    --sg-green-bright: #11cf89;
    --sg-green-soft: #e9faf3;
    --sg-ink: #172638;
    --sg-muted: #718096;
    --sg-line: #e8eef2;
    --sg-surface: #ffffff;
}

.sg-site-header,
.sg-site-header * {
    box-sizing: border-box;
}

.sg-site-header {
    position: relative;
    z-index: 1040;
    width: 100%;
    padding: 0;
    margin: 0;
    direction: rtl;
    font-family: inherit;
}

.sg-header-shell {
    position: relative;
    width: 100%;
    margin: 0;
    border: 0;
    border-bottom: 1px solid rgba(8, 43, 76, .09);
    border-radius: 0;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 14px 40px rgba(6, 31, 56, .10);
}

.sg-header-top {
    min-height: 76px;
    padding: 9px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.sg-brand {
    min-width: 0;
    order: 2;
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    color: var(--sg-navy);
    text-decoration: none !important;
}

.sg-brand-logo {
    width: 150px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.sg-brand-logo img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 54px;
    object-fit: contain;
}

.sg-brand-copy {
    min-width: 0;
    display: none;
    flex-direction: column;
    line-height: 1.35;
}

.sg-brand-copy strong {
    color: var(--sg-navy);
    font-size: 16px;
    font-weight: 800;
}

.sg-brand-copy small {
    margin-top: 3px;
    color: var(--sg-muted);
    font-size: 10.5px;
    white-space: nowrap;
}

.sg-city-switcher {
    position: relative;
    order: 1;
    flex: 1 1 0;
    display: flex;
    justify-content: flex-start;
}

.sg-gallery-menu-slot {
    order: 1;
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.sg-gallery-menu-slot .sg-menu-toggle {
    display: block;
    padding: 10px;
}

.sg-city-trigger {
    min-width: 220px;
    height: 54px;
    padding: 7px 10px 7px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #dcece5;
    border-radius: 16px;
    background: linear-gradient(135deg, #f7fcfa 0%, #eef9f5 100%);
    color: var(--sg-ink);
    cursor: pointer;
    text-align: right;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.sg-city-trigger:hover,
.sg-city-switcher.is-open .sg-city-trigger {
    border-color: rgba(17, 185, 126, .55);
    box-shadow: 0 8px 24px rgba(17, 185, 126, .12);
}

.sg-city-trigger:focus-visible,
.sg-action-button:focus-visible,
.sg-account-button:focus-visible,
.sg-drawer-close:focus-visible,
.sg-submenu-toggle:focus-visible {
    outline: 3px solid rgba(17, 207, 137, .28);
    outline-offset: 2px;
}

.sg-city-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(145deg, var(--sg-green-bright), var(--sg-green));
    box-shadow: 0 7px 16px rgba(17, 185, 126, .22);
}

.sg-city-icon svg {
    width: 21px;
    height: 21px;
    stroke: currentColor;
    stroke-width: 1.8;
}

.sg-city-copy {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.sg-city-copy small {
    color: #789087;
    font-size: 10px;
}

.sg-city-copy strong {
    margin-top: 2px;
    color: var(--sg-navy);
    font-size: 14px;
    font-weight: 800;
}

.sg-chevron {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg) translateY(-2px);
    color: #7a8b95;
    transition: transform .2s ease;
}

.sg-city-switcher.is-open .sg-chevron,
.sg-account-wrap.is-open .sg-chevron {
    transform: rotate(135deg) translate(-1px, -1px);
}

.sg-city-menu {
    position: absolute;
    top: calc(100% + 11px);
    right: 0;
    z-index: 1055;
    width: 330px;
    padding: 12px;
    border: 1px solid var(--sg-line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(6, 31, 56, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.sg-city-switcher.is-open .sg-city-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sg-city-menu-title {
    display: block;
    padding: 4px 7px 10px;
    color: var(--sg-muted);
    font-size: 11px;
    font-weight: 700;
}

.sg-city-option {
    min-height: 62px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid transparent;
    border-radius: 13px;
    color: var(--sg-ink);
    text-decoration: none !important;
    transition: background-color .18s ease, border-color .18s ease;
}

.sg-city-option + .sg-city-option {
    margin-top: 4px;
}

.sg-city-option:hover {
    background: #f6faf8;
    color: var(--sg-navy);
}

.sg-city-option.is-active {
    border-color: #cfeee1;
    background: var(--sg-green-soft);
}

.sg-city-option-mark {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    border: 2px solid #b8c8c0;
    border-radius: 50%;
    box-shadow: inset 0 0 0 3px #ffffff;
}

.sg-city-option.is-active .sg-city-option-mark {
    border-color: var(--sg-green);
    background: var(--sg-green);
}

.sg-city-option > span:last-child {
    display: flex;
    flex-direction: column;
}

.sg-city-option strong {
    color: var(--sg-navy);
    font-size: 13px;
    font-weight: 800;
}

.sg-city-option small {
    margin-top: 4px;
    color: var(--sg-muted);
    font-size: 10px;
}

.sg-header-actions {
    min-width: 0;
    order: 3;
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.sg-action-button,
.sg-account-button {
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.sg-action-button {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--sg-line);
    border-radius: 14px;
    color: var(--sg-navy);
    background: #f7f9fa;
    transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.sg-action-button:hover {
    color: #ffffff;
    border-color: var(--sg-navy);
    background: var(--sg-navy);
    transform: translateY(-1px);
}

.sg-action-button svg {
    width: 21px;
    height: 21px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.sg-menu-toggle {
    display: none;
}

.sg-menu-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 4px;
    background: currentColor;
}

.sg-menu-toggle span + span {
    margin-top: 4px;
}

.sg-menu-toggle span:nth-child(2) {
    width: 14px;
    margin-right: 6px;
}

.sg-account-wrap {
    position: relative;
}

.sg-account-button {
    min-width: 174px;
    height: 48px;
    padding: 6px 8px 6px 13px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(8, 43, 76, .1);
    border-radius: 15px;
    color: var(--sg-navy) !important;
    background: #ffffff;
    text-decoration: none !important;
    text-align: right;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.sg-account-button:hover,
.sg-account-wrap.is-open .sg-account-button {
    border-color: rgba(8, 43, 76, .24);
    box-shadow: 0 8px 22px rgba(6, 31, 56, .08);
}

.sg-account-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 11px;
    color: #ffffff;
    background: var(--sg-navy);
}

.sg-account-icon svg {
    width: 21px;
    height: 21px;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
}

.sg-account-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sg-account-copy {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.sg-account-copy small {
    color: var(--sg-muted);
    font-size: 9.5px;
}

.sg-account-copy strong {
    max-width: 100px;
    margin-top: 3px;
    overflow: hidden;
    color: var(--sg-navy);
    font-size: 11.5px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sg-account-menu {
    position: absolute;
    top: calc(100% + 11px);
    left: 0;
    z-index: 1055;
    width: 270px;
    padding: 9px;
    border: 1px solid var(--sg-line);
    border-radius: 17px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(6, 31, 56, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.sg-account-wrap.is-open .sg-account-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sg-account-menu-head {
    padding: 9px 10px 12px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--sg-line);
}

.sg-account-menu-head strong {
    color: var(--sg-navy);
    font-size: 12px;
}

.sg-account-menu-head small {
    margin-top: 4px;
    color: var(--sg-muted);
    font-size: 9.5px;
}

.sg-account-menu-link {
    min-height: 43px;
    padding: 9px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    color: var(--sg-ink) !important;
    font-size: 11px;
    text-decoration: none !important;
}

.sg-account-menu-link:hover {
    background: #f5f8f7;
}

.sg-account-menu-link.is-danger {
    margin-top: 3px;
    color: #c43b4a !important;
}

.sg-account-menu-dot {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-radius: 3px;
    background: var(--sg-green);
}

.sg-account-menu-link.is-danger .sg-account-menu-dot {
    background: #e36a77;
}

.sg-main-nav {
    min-height: 55px;
    padding: 0 15px;
    display: flex;
    align-items: stretch;
    border-radius: 0;
    background: linear-gradient(100deg, var(--sg-navy-deep), var(--sg-navy));
}

.sg-nav-list,
.sg-submenu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sg-nav-list {
    width: auto;
    flex: 1 1 auto;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.sg-nav-item {
    position: relative;
    display: flex;
    align-items: stretch;
}

.sg-nav-link {
    position: relative;
    min-height: 55px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 0;
    color: rgba(255, 255, 255, .88) !important;
    background: transparent;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none !important;
    cursor: pointer;
    transition: color .18s ease, background-color .18s ease;
}

.sg-nav-link::before {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 0;
    left: 12px;
    height: 3px;
    border-radius: 4px 4px 0 0;
    background: var(--sg-green-bright);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.sg-nav-link:hover,
.sg-nav-link.is-current,
.sg-has-submenu.is-open > .sg-nav-link {
    color: #ffffff !important;
    background: rgba(255, 255, 255, .07);
}

.sg-nav-link:hover::before,
.sg-nav-link.is-current::before,
.sg-has-submenu.is-open > .sg-nav-link::before {
    transform: scaleX(1);
}

.sg-submenu-arrow {
    width: 7px;
    height: 7px;
    margin-right: 2px;
    border-left: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg) translateY(-1px);
    opacity: .7;
}

.sg-submenu {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    z-index: 1050;
    width: 300px;
    max-height: min(460px, calc(100vh - 165px));
    padding: 10px;
    overflow-y: auto;
    border: 1px solid var(--sg-line);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 22px 50px rgba(6, 31, 56, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-7px);
    transition: opacity .17s ease, transform .17s ease, visibility .17s ease;
}

.sg-submenu::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 0;
    left: 0;
    height: 10px;
}

.sg-has-submenu:hover > .sg-submenu,
.sg-has-submenu:focus-within > .sg-submenu,
.sg-has-submenu.is-open > .sg-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sg-submenu-link {
    min-height: 43px;
    padding: 9px 11px;
    display: flex;
    align-items: center;
    gap: 9px;
    border-radius: 10px;
    color: #314355 !important;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none !important;
    transition: color .16s ease, background-color .16s ease, padding-right .16s ease;
}

.sg-submenu-link span {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: #bdcbc4;
    transition: background-color .16s ease, transform .16s ease;
}

.sg-submenu-link:hover {
    padding-right: 15px;
    color: var(--sg-navy) !important;
    background: #f2f8f5;
}

.sg-submenu-link:hover span {
    background: var(--sg-green);
    transform: scale(1.25);
}

.sg-submenu-link.is-featured {
    margin-bottom: 5px;
    color: var(--sg-navy) !important;
    background: var(--sg-green-soft);
    font-weight: 800;
}

.sg-submenu-link.is-featured span {
    background: var(--sg-green);
}

.sg-drawer-head,
.sg-mobile-city-choices,
.sg-mobile-search,
.sg-menu-contact-mobile,
.sg-drawer-footer,
.sg-nav-backdrop {
    display: none;
}

.sg-menu-contact {
    color: #ffffff !important;
    font-family: inherit;
    text-decoration: none !important;
}

.sg-menu-contact-desktop {
    min-width: 275px;
    height: 41px;
    margin: 7px 0 7px 8px;
    padding: 5px 7px 5px 9px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 13px;
    background: rgba(255, 255, 255, .08);
    transition: background-color .18s ease, border-color .18s ease;
}

.sg-menu-contact-desktop:hover {
    border-color: rgba(17, 207, 137, .55);
    background: rgba(255, 255, 255, .13);
}

.sg-menu-contact-copy {
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.sg-menu-contact strong {
    color: var(--sg-green-bright);
    font-size: 10.5px;
    font-weight: 800;
    white-space: nowrap;
}

.sg-menu-contact-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--sg-navy-deep);
    background: var(--sg-green-bright);
    box-shadow: 0 6px 15px rgba(17, 207, 137, .22);
}

.sg-menu-contact-icon svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sg-nav-spacer {
    width: 100%;
    height: 0;
}

body.sg-nav-open {
    overflow: hidden;
}

.sg-header-gallery .sg-menu-contact,
.sg-header-gallery .sg-mobile-city-choices,
.sg-header-gallery .sg-drawer-footer {
    display: none !important;
}

.sg-header-gallery .sg-drawer-brand small {
    display: none;
}

@media (min-width: 1101px) {
    .sg-site-header.is-nav-sticky .sg-main-nav {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1050;
        width: 100%;
        box-shadow: 0 10px 28px rgba(6, 31, 56, .18);
    }

    .sg-site-header.is-nav-sticky .sg-nav-list {
        width: min(1460px, 100%);
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 1101px) {
    .sg-header-gallery .sg-nav-spacer {
        display: none;
    }

    .sg-header-gallery .sg-nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1060;
        width: 100%;
        height: 100%;
        padding: 0;
        display: block;
        border: 0;
        background: rgba(3, 21, 38, .56);
        opacity: 0;
        visibility: hidden;
        backdrop-filter: blur(3px);
        transition: opacity .22s ease, visibility .22s ease;
    }

    .sg-header-gallery.is-nav-open .sg-nav-backdrop {
        opacity: 1;
        visibility: visible;
    }

    .sg-header-gallery .sg-main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1065;
        width: min(88vw, 390px);
        min-height: 100vh;
        padding: 0 13px 15px;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        border-radius: 0;
        background: #ffffff;
        box-shadow: -20px 0 55px rgba(3, 21, 38, .22);
        transform: translateX(105%);
        transition: transform .26s cubic-bezier(.2, .7, .2, 1);
    }

    .sg-header-gallery.is-nav-open .sg-main-nav {
        transform: translateX(0);
    }

    .sg-header-gallery .sg-drawer-head {
        min-height: 75px;
        padding: 10px 2px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid var(--sg-line);
    }

    .sg-header-gallery .sg-drawer-brand {
        display: flex;
        align-items: center;
        gap: 9px;
        color: var(--sg-navy) !important;
        text-decoration: none !important;
    }

    .sg-header-gallery .sg-drawer-brand img {
        width: 86px;
        height: 45px;
        object-fit: contain;
    }

    .sg-header-gallery .sg-drawer-brand span {
        display: flex;
        flex-direction: column;
    }

    .sg-header-gallery .sg-drawer-brand strong {
        color: var(--sg-navy);
        font-size: 13px;
        font-weight: 800;
    }

    .sg-header-gallery .sg-drawer-close {
        width: 40px;
        height: 40px;
        display: grid;
        place-items: center;
        border: 0;
        border-radius: 12px;
        color: var(--sg-navy);
        background: #f2f5f6;
        cursor: pointer;
    }

    .sg-header-gallery .sg-drawer-close svg {
        width: 20px;
        height: 20px;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
    }

    .sg-header-gallery .sg-mobile-search {
        display: none;
    }

    .sg-header-gallery .sg-nav-list {
        width: 100%;
        flex: 0 0 auto;
        display: block;
        margin-top: 9px;
    }

    .sg-header-gallery .sg-nav-item {
        display: block;
        border-bottom: 1px solid #edf1f3;
    }

    .sg-header-gallery .sg-nav-link {
        width: 100%;
        min-height: 51px;
        padding: 10px 12px;
        justify-content: flex-start;
        color: #253a4d !important;
        background: transparent;
        font-size: 12px;
        font-weight: 700;
        text-align: right;
    }

    .sg-header-gallery .sg-nav-link::before {
        position: static;
        width: 8px;
        height: 8px;
        flex: 0 0 8px;
        border-radius: 3px;
        background: #c5d5ce;
        transform: none;
    }

    .sg-header-gallery .sg-nav-link:hover,
    .sg-header-gallery .sg-nav-link.is-current {
        color: var(--sg-navy) !important;
        background: #f5faf8;
    }

    .sg-header-gallery .sg-nav-link.is-current::before {
        background: var(--sg-green);
    }
}

@media (max-width: 1250px) and (min-width: 1101px) {
    .sg-account-button {
        min-width: 48px;
        width: 48px;
        padding: 6px;
    }

    .sg-account-copy,
    .sg-account-button > .sg-chevron {
        display: none;
    }

    .sg-nav-link {
        padding-right: 9px;
        padding-left: 9px;
        font-size: 11px;
    }

    .sg-menu-contact-desktop {
        min-width: 230px;
    }

    .sg-menu-contact-copy {
        font-size: 9px;
    }
}

@media (max-width: 1100px) {
    .sg-site-header {
        position: sticky;
        top: 0;
        padding: 0;
    }

    .sg-header-shell {
        width: 100%;
        border-width: 0 0 1px;
        border-radius: 0;
        box-shadow: 0 7px 24px rgba(6, 31, 56, .09);
    }

    .sg-header-top {
        position: relative;
        min-height: 68px;
        padding: 7px 12px;
        justify-content: space-between;
        gap: 8px;
    }

    .sg-brand {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 1;
        width: 108px;
        flex: 0 0 auto;
        transform: translate(-50%, -50%);
    }

    .sg-brand-logo {
        width: 108px;
        height: 49px;
        justify-content: center;
    }

    .sg-brand-logo img {
        max-height: 47px;
    }

    .sg-brand-copy {
        display: none;
    }

    .sg-city-trigger {
        min-width: 124px;
        height: 46px;
        padding: 5px 7px 5px 9px;
        gap: 7px;
        border-radius: 13px;
    }

    .sg-city-icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
        border-radius: 10px;
    }

    .sg-city-icon svg {
        width: 18px;
        height: 18px;
    }

    .sg-city-copy small {
        display: none;
    }

    .sg-city-copy strong {
        margin: 0;
        font-size: 11px;
    }

    .sg-city-menu {
        position: fixed;
        top: 75px;
        right: 12px;
        left: 12px;
        width: auto;
        transform: translateY(-8px);
    }

    .sg-city-switcher.is-open .sg-city-menu {
        transform: translateY(0);
    }

    .sg-city-switcher {
        z-index: 2;
        flex: 0 0 auto;
    }

    .sg-gallery-menu-slot {
        z-index: 2;
        flex: 0 0 auto;
    }

    .sg-header-actions {
        z-index: 2;
        flex: 0 0 auto;
        gap: 6px;
    }

    .sg-action-button {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 13px;
    }

    .sg-menu-toggle {
        display: block;
        padding: 10px;
    }

    .sg-account-button {
        min-width: 42px;
        width: 42px;
        height: 42px;
        padding: 4px;
        justify-content: center;
        border-radius: 13px;
    }

    .sg-account-icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
        border-radius: 10px;
    }

    .sg-account-copy,
    .sg-account-button > .sg-chevron {
        display: none;
    }

    .sg-account-menu {
        position: fixed;
        top: 75px;
        right: 12px;
        left: 12px;
        width: auto;
    }

    .sg-nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1060;
        width: 100%;
        height: 100%;
        padding: 0;
        border: 0;
        background: rgba(3, 21, 38, .56);
        opacity: 0;
        visibility: hidden;
        backdrop-filter: blur(3px);
        transition: opacity .22s ease, visibility .22s ease;
    }

    .sg-site-header.is-nav-open .sg-nav-backdrop {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .sg-main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1065;
        width: min(88vw, 390px);
        min-height: 100vh;
        min-height: 100dvh;
        padding: 0 13px 15px;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        border-radius: 0;
        background: #ffffff;
        box-shadow: -20px 0 55px rgba(3, 21, 38, .22);
        transform: translateX(105%);
        transition: transform .26s cubic-bezier(.2, .7, .2, 1);
    }

    .sg-site-header.is-nav-open .sg-main-nav {
        transform: translateX(0);
    }

    .sg-drawer-head {
        min-height: 75px;
        padding: 10px 2px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid var(--sg-line);
    }

    .sg-drawer-brand {
        display: flex;
        align-items: center;
        gap: 9px;
        color: var(--sg-navy) !important;
        text-decoration: none !important;
    }

    .sg-drawer-brand img {
        width: 76px;
        height: 45px;
        object-fit: contain;
    }

    .sg-drawer-brand span {
        display: flex;
        flex-direction: column;
    }

    .sg-drawer-brand strong {
        font-size: 13px;
        font-weight: 800;
    }

    .sg-drawer-brand small {
        margin-top: 3px;
        color: var(--sg-muted);
        font-size: 9.5px;
    }

    .sg-drawer-close {
        width: 40px;
        height: 40px;
        display: grid;
        place-items: center;
        border: 0;
        border-radius: 12px;
        color: var(--sg-navy);
        background: #f2f5f6;
        cursor: pointer;
    }

    .sg-drawer-close svg {
        width: 20px;
        height: 20px;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
    }

    .sg-mobile-city-choices {
        margin: 13px 0 8px;
        padding: 4px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px;
        border-radius: 13px;
        background: #eef3f2;
    }

    .sg-mobile-city-choices a {
        min-height: 39px;
        display: grid;
        place-items: center;
        border-radius: 10px;
        color: #66767c !important;
        font-size: 11px;
        font-weight: 700;
        text-decoration: none !important;
    }

    .sg-mobile-city-choices a.is-active {
        color: var(--sg-navy) !important;
        background: #ffffff;
        box-shadow: 0 3px 10px rgba(6, 31, 56, .08);
    }

    .sg-mobile-search {
        width: 100%;
        min-height: 45px;
        margin: 0 0 6px;
        padding: 8px 12px;
        display: flex;
        align-items: center;
        gap: 10px;
        border: 1px solid var(--sg-line);
        border-radius: 12px;
        color: #61717d;
        background: #fafbfb;
        font-family: inherit;
        font-size: 10.5px;
        text-align: right;
        cursor: pointer;
    }

    .sg-mobile-search svg {
        width: 19px;
        height: 19px;
        stroke: var(--sg-green);
        stroke-width: 1.8;
        stroke-linecap: round;
    }

    .sg-nav-list {
        width: 100%;
        flex: 0 0 auto;
        display: block;
    }

    .sg-nav-item {
        display: block;
        border-bottom: 1px solid #edf1f3;
    }

    .sg-nav-link {
        width: 100%;
        min-height: 51px;
        padding: 10px 12px 10px 37px;
        justify-content: flex-start;
        color: #253a4d !important;
        font-size: 12px;
        font-weight: 700;
        text-align: right;
    }

    .sg-nav-link::before {
        position: static;
        width: 8px;
        height: 8px;
        flex: 0 0 8px;
        border-radius: 3px;
        background: #c5d5ce;
        transform: none;
    }

    .sg-nav-link:hover,
    .sg-nav-link.is-current,
    .sg-has-submenu.is-open > .sg-nav-link {
        color: var(--sg-navy) !important;
        background: #f5faf8;
    }

    .sg-nav-link.is-current::before,
    .sg-has-submenu.is-open > .sg-nav-link::before {
        background: var(--sg-green);
    }

    .sg-submenu-arrow {
        position: absolute;
        left: 15px;
        width: 8px;
        height: 8px;
        transform: rotate(-45deg);
        transition: transform .2s ease;
    }

    .sg-has-submenu.is-open .sg-submenu-arrow {
        transform: rotate(135deg);
    }

    .sg-submenu {
        position: static;
        width: auto;
        max-height: 0;
        padding: 0 14px;
        overflow: hidden;
        border: 0;
        border-radius: 0;
        background: #f7faf9;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height .28s ease, padding .28s ease;
    }

    .sg-submenu::before {
        display: none;
    }

    .sg-has-submenu.is-open > .sg-submenu {
        max-height: 520px;
        padding-top: 7px;
        padding-bottom: 9px;
        overflow-y: auto;
    }

    .sg-submenu-link {
        min-height: 42px;
        padding: 8px 9px;
        color: #506270 !important;
        font-size: 10.5px;
    }

    .sg-submenu-link:hover {
        padding-right: 12px;
    }

    .sg-drawer-footer {
        margin-top: auto;
        padding-top: 16px;
        display: block;
    }

    .sg-drawer-order {
        min-height: 64px;
        padding: 10px 12px;
        display: flex;
        align-items: center;
        gap: 11px;
        border-radius: 15px;
        color: #ffffff !important;
        background: linear-gradient(135deg, var(--sg-green-bright), var(--sg-green));
        box-shadow: 0 12px 25px rgba(17, 185, 126, .2);
        text-decoration: none !important;
    }

    .sg-drawer-order svg {
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
        stroke: currentColor;
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .sg-drawer-order span {
        display: flex;
        flex-direction: column;
    }

    .sg-drawer-order strong {
        font-size: 12px;
        font-weight: 800;
    }

    .sg-drawer-order small {
        margin-top: 4px;
        color: rgba(255, 255, 255, .82);
        font-size: 9px;
    }

    .sg-drawer-phone {
        margin-top: 9px;
        padding: 7px 3px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--sg-muted) !important;
        font-size: 9.5px;
        text-decoration: none !important;
    }

    .sg-drawer-phone strong {
        color: var(--sg-navy);
        font-size: 11px;
    }

    .sg-menu-contact-desktop {
        display: none;
    }

    .sg-menu-contact-mobile {
        min-height: 42px;
        padding: 5px 11px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        border-top: 1px solid #d7eee5;
        background: linear-gradient(90deg, #eefaf5, #f7fcfa);
        color: var(--sg-navy) !important;
    }

    .sg-menu-contact-mobile .sg-menu-contact-copy {
        flex: 1;
        color: #36576a;
        font-size: 9.5px;
        white-space: normal;
    }

    .sg-menu-contact-mobile strong {
        color: var(--sg-navy);
        font-size: 10px;
    }

    .sg-menu-contact-mobile .sg-menu-contact-icon {
        width: 29px;
        height: 29px;
        flex-basis: 29px;
        border-radius: 9px;
        color: #ffffff;
        background: var(--sg-green);
        box-shadow: none;
    }

    body.sg-nav-open {
        overflow: hidden;
    }
}

@media (max-width: 520px) {
    .sg-header-top {
        padding-right: 9px;
        padding-left: 9px;
    }

    .sg-brand-logo {
        width: 88px;
    }

    .sg-brand {
        width: 88px;
    }

    .sg-city-trigger {
        min-width: 105px;
    }

    .sg-city-trigger .sg-chevron {
        display: none;
    }

    .sg-search-action {
        display: none;
    }
}

@media (max-width: 370px) {
    .sg-brand-logo {
        width: 76px;
    }

    .sg-brand {
        width: 76px;
    }

    .sg-city-trigger {
        min-width: 96px;
    }

    .sg-city-icon {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sg-site-header *,
    .sg-site-header *::before,
    .sg-site-header *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
