.fp-header {
    position: relative;
    z-index: 50;
    width: 100%;
    padding-top: 24px;
}

.fp-header__inner {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 30px;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.fp-header__logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
}

.fp-header__logo img {
    display: block;
    width: 126px;
    height: auto;
}

.fp-header__menu {
    display: flex;
    align-items: center;
    gap: 36px;
    flex: 1 1 auto;
    justify-content: center;
}

.fp-header__menu-link {
    font-family: var(--font-montserrat, Montserrat), sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #242529;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
}

.fp-header__menu-link:hover {
    color: #40B93C;
}

.fp-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 0 0 auto;
}

.fp-header__review-btn {
    height: 44px;
    padding: 0 20px;
    border: 1px solid #40B93C;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-montserrat, Montserrat), sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #40B93C;
    text-decoration: none;
    background: transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.fp-header__review-btn:hover {
    background: #40B93C;
    color: #fff;
}

.fp-city-switcher {
    position: relative;
}

.fp-city-switcher__toggle {
    height: 44px;
    padding: 0 16px;
    border: none;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: var(--font-montserrat, Montserrat), sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #40B93C;
}

.fp-city-switcher__icon,
.fp-city-switcher__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #40B93C;
}

.fp-city-switcher__label {
    white-space: nowrap;
}

.fp-city-switcher__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 180px;
    padding: 10px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: none;
    flex-direction: column;
    gap: 6px;
}

.fp-city-switcher.is-open .fp-city-switcher__dropdown {
    display: flex;
}

.fp-city-switcher__item {
    min-height: 40px;
    padding: 0 12px;
    border: none;
    background: transparent;
    border-radius: 12px;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-montserrat, Montserrat), sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #242529;
    transition: background 0.2s ease, color 0.2s ease;
}

.fp-city-switcher__item:hover,
.fp-city-switcher__item.is-active {
    background: #F5F5F5;
    color: #40B93C;
}

.fp-header__order-btn {
    height: 44px;
    padding: 0 24px;
    border: none;
    border-radius: 999px;
    background: #40B93C;
    color: #fff;
    font-family: var(--font-montserrat, Montserrat), sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.fp-header__order-btn:hover {
    background: #308B0B;
}

.fp-header__account {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFD902;
    color: #242529;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex: 0 0 auto;
}

.fp-header__account.is-auth {
    background: #FFD902;
    color: #242529;
}

.fp-header__account-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #F44336;
    color: #fff;
    font-size: 10px;
    line-height: 16px;
    font-weight: 700;
    text-align: center;
}

.fp-header__burger {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.fp-header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 0 auto;
    border-radius: 2px;
    background: #40B93C;
}

.fp-mobile-menu {
    display: none;
}

.fp-header__order-btn--mobile,
.fp-header__account--mobile {
    display: none;
}

@media (max-width: 1200px) {
    .fp-header__menu {
        gap: 24px;
    }

    .fp-header__review-btn {
        display: none;
    }
}

@media (max-width: 1024px) {
    .fp-header__menu,
    .fp-city-switcher,
    .fp-header__order-btn,
    .fp-header__account {
        display: none;
    }

    .fp-header__burger {
        display: inline-flex;
    }

    .fp-mobile-menu {
        display: none;
        margin: 16px 30px 0;
        padding: 24px;
        border-radius: 24px;
        background: #40B93C;
    }

    .fp-mobile-menu.is-open {
        display: block;
    }

    .fp-mobile-menu__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 20px;
    }

    .fp-header__order-btn--mobile,
    .fp-header__account--mobile {
        display: inline-flex;
    }

    .fp-mobile-menu__nav {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .fp-mobile-menu__link {
        color: #fff;
        text-decoration: none;
        font-family: var(--font-montserrat, Montserrat), sans-serif;
        font-size: 18px;
        font-weight: 600;
    }

    .fp-city-switcher--mobile {
        margin-top: 20px;
    }

    .fp-city-switcher--mobile .fp-city-switcher__toggle {
        color: #fff;
    }

    .fp-city-switcher--mobile .fp-city-switcher__icon,
    .fp-city-switcher--mobile .fp-city-switcher__arrow {
        color: #fff;
    }
}

@media (max-width: 767px) {
    .fp-header {
        padding-top: 16px;
    }

    .fp-header__inner {
        padding: 0 20px;
    }

    .fp-header__logo img {
        width: 110px;
    }

    .fp-mobile-menu {
        margin: 12px 20px 0;
        padding: 20px;
    }
body {
    margin: 0;
    padding: 0;
}

.wrapper {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.fp-header-wrap {
    width: 100%;
    margin: 0;
    padding: 0;
}

.fp-header {
    width: 100%;
    margin: 0;
    padding-top: 0;
}

.fp-header__inner {
    max-width: 100%;
    padding: 28px 40px 0;
}

.main {
    padding: 0;
}

.main-banner-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.mt-64 {
    margin-top: 0 !important;
}
