*,
*::before,
*::after {
    box-sizing: border-box;
}
* {
    margin: 0;
}
input,
textarea {
    font-size: 16px;
}
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
body,
ul,
ol {
    padding: 0;
}
ul,
ol {
    list-style: none;
}
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}
input,
button,
textarea,
select {
    font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}
a {
    text-decoration: none;
    color: inherit;
}
#root,
#__next {
    isolation: isolate;
}
@font-face {
    font-family: "Involve";
    src: url(../fonts/Involve-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Involve";
    src: url(../fonts/Involve-SemiBold.ttf) format("truetype");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Involve";
    src: url(../fonts/Involve-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Involve";
    src: url(../fonts/Involve-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
}
.container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}


.hidden {
    display: none !important;
}


.alert-error {
    padding: 15px 20px;
    background-color: #fff0f0;
    border-left: 4px solid #dc3545;
    color: #721c24;
    border-radius: 4px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.alert-error::before {
    content: "⚠";
    margin-right: 12px;
    font-size: 20px;
}


.invalid-feedback {
    width: 100%;
    margin-top: 8px;
    font-size: 12px;
    color: #dc3545;
    line-height: 1.4;
}

.form-error {
    width: 100%;
    margin-top: 8px;
    font-size: 12px;
    color: #dc3545;
    line-height: 1.4;
}

input[name="comp_input_hidden"] {
    display: none;
}

@media screen and (max-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}
@media screen and (max-width: 1280px) {
    .container {
        max-width: 1160px;
    }
}
@media screen and (max-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media screen and (max-width: 768px) {
    .container {
        max-width: 720px;
    }
}
@media screen and (max-width: 576px) {
    .container {
        max-width: 540px;
    }
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 30;
    background-color: #fff;
    border-bottom: 1px solid #020d09;
}
.header__grid {
    display: grid;
    grid-template-columns: 180px 150px minmax(160px, auto) minmax(260px, 2fr) auto;
    grid-template-rows: repeat(2, 1fr);
    row-gap: 22px;
    grid-template-areas: "logo search search contacts order" "logo lights nav nav cart";
    align-items: center;
    column-gap: 24px;
    padding: 12px 0;
}
.header__logo {
    grid-area: logo;
}
.header__search {
    grid-area: search;
}
.header__contacts {
    grid-area: contacts;
    justify-self: center;
}
.header__order {
    grid-area: order;
}
.header__lights {
    grid-area: lights;
}
.header__nav {
    grid-area: nav;
    justify-self: center;
}
.header__cart {
    grid-area: cart;
    justify-self: end;
}
.header__logo img {
    max-height: 70px;
    object-fit: contain;
}
.header .icon {
    display: inline-block;
    vertical-align: middle;
    color: #518048;
}
.header__search {
    position: relative;
}
.header__search input[type="search"] {
    width: 100%;
    padding: 10px 40px 10px 16px;
    border-radius: 6px;
    border: 1px solid #e6ebe5;
    background-color: #fff;
    font-size: 14px;
    color: #0a3426;
    outline: none;
}
.header__search input[type="search"]::placeholder {
    color: #9499a5;
}
.header__search input[type="search"]:focus {
    border-color: #518048;
    box-shadow: 0 0 0 1px rgba(81, 128, 72, 0.2);
}
.header__search .icon-search {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
}
.header__contacts {
    display: flex;
    align-items: center;
    column-gap: 24px;
    white-space: nowrap;
}
.header__contacts-city,
.header__contacts-mail,
.header__contacts-phone {
    display: inline-flex;
    align-items: center;
    column-gap: 6px;
    font-size: 13px;
    color: #0a3426;
    cursor: pointer;
}
.header__contacts-city svg,
.header__contacts-mail svg,
.header__contacts-phone svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}
.header__contacts-phone--flex {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.header__contacts-phone--flex a {
    text-decoration: none;
}
.header__contacts-phone--flex a:first-child {
    font-weight: 500;
    color: #0a3426;
}
.header__contacts-phone--flex a:last-child {
    font-size: 12px;
    color: #9499a5;
}
.header__order {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        transform 0.1s ease;
    background-color: rgba(0, 0, 0, 0);
    border-color: #020d09;
    color: #020d09;
}
.header__order:hover {
    background: #a0c530;
    border-color: rgba(0, 0, 0, 0);
    color: #020d09;
    text-shadow: 0 0 0.8px currentColor;
    box-shadow: 0 1px 8px rgba(12, 6, 5, 0.18);
}
.header__lights {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        transform 0.1s ease;
    background-color: #0a3426;
    border-color: #0a3426;
    max-width: 150px;
    color: #8cea6f;
    gap: 10px;
}
.header__lights .icon-grid {
    width: 20px;
    height: 20px;
    fill: #c9ed5f;
    stroke: none;
}
.header__lights:hover {
    background: #518048;
    border-color: #518048;
    box-shadow: 0 1px 8px rgba(12, 6, 5, 0.3);
    text-shadow: 0 0 0.8px currentColor;
}
.header__nav {
    display: flex;
    align-items: center;
    column-gap: 28px;
    font-size: 14px;
}
.header__nav a {
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #0c0605;
    text-decoration: none;
}
.header__nav a.submenu {
    padding-right: 20px;
    position: relative;
}
.header__nav a.submenu::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #020d09;
    border-left: 2px solid #020d09;
    right: 2px;
    position: absolute;
    bottom: 30%;
    transform: rotate(-45deg);
    transition:
        border-color 0.15s ease,
        transform 0.15s ease,
        bottom 0.15s ease;
}
.header__nav a.submenu:hover::after {
    border-bottom: 2px solid #518048;
    border-left: 2px solid #518048;
    transform: rotate(135deg);
    bottom: 5%;
}
.header__nav a:hover {
    color: #518048;
}
.header__nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.header__nav-item--submenu:hover > .header__nav-submenu,
.header__nav-item--submenu:focus-within > .header__nav-submenu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.header__nav-item--submenu:hover > .submenu,
.header__nav-item--submenu:focus-within > .submenu {
    color: #518048;
}
.header__nav-item--submenu:hover > .submenu::after,
.header__nav-item--submenu:focus-within > .submenu::after {
    border-bottom: 2px solid #518048;
    border-left: 2px solid #518048;
    transform: rotate(135deg);
    bottom: 5%;
}
.header__nav-submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    padding: 10px 16px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e6ebe5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    display: grid;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition:
        opacity 0.15s ease,
        transform 0.15s ease;
    z-index: 40;
}
.header__nav-submenu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
}
.header__nav-submenu a {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #0c0605;
    text-decoration: none;
    color: #0c0605;
    padding: 8px 0;
    white-space: nowrap;
}
.header__nav-submenu a + a {
    border-top: 1px solid #e6ebe5;
}
.header__nav-submenu a:hover {
    color: #518048;
}
.header__cart {
    display: inline-flex;
    align-items: center;
    column-gap: 8px;
    text-decoration: none;
    white-space: nowrap;
}
.header__cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.header__cart svg {
    width: 22px;
    height: 22px;
}
.header__cart p {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}
.header__cart:hover {
    color: #518048;
}
.header__cart:hover svg path {
    stroke: currentColor;
}
.header__cart.full {
    font-weight: 600;
}
.header__cart-count {
    color: #518048;
    font-weight: 500;
}
.header__cart.full .header__cart-icon::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #8cea6f;
    top: -6px;
    right: -6px;
    z-index: 2;
}
.header__cart.full .header__cart-icon::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 4px;
    border-left: 2px solid #0a3426;
    border-bottom: 2px solid #0a3426;
    transform: rotate(-45deg);
    top: -1px;
    right: -1px;
    z-index: 3;
}
.header .mobile__nav,
.header .mobile__location,
.header .recall-btn__mobile {
    display: none;
}
@media (max-width: 1200px) {
    .header__grid {
        grid-template-columns: 100px 130px minmax(130px, auto) minmax(240px, 2fr) auto;
    }
    .header__order {
        padding: 10px 15px;
    }
    .header__nav {
        column-gap: 20px;
    }
}
@media (max-width: 992px) {
    .header__grid {
        grid-template-areas: "location search contacts" "menu logo phone";
        grid-template-columns: 40px 50% auto;
        row-gap: 10px;
    }
    .header__contacts-city {
        display: none;
    }
    .header__order {
        display: none;
    }
    .header__nav {
        display: none;
    }
    .header__lights {
        display: none;
    }
    .header__cart {
        display: none;
    }
    .header .mobile__nav {
        display: flex;
        align-items: center;
        gap: 6px;
        grid-area: menu;
    }
    .header .mobile__nav .icon {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 14px;
        width: 18px;
    }
    .header .mobile__nav .icon span {
        height: 2px;
        width: 100%;
        display: block;
        background-color: #020d09;
        border-radius: 4px;
        flex-shrink: 0;
    }
    .header .mobile__location {
        display: block;
        grid-area: location;
    }
    .header__logo {
        justify-self: end;
    }
    .header .recall-btn__mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 26px;
        border-radius: 999px;
        border: 1px solid rgba(0, 0, 0, 0);
        cursor: pointer;
        white-space: nowrap;
        text-decoration: none;
        transition:
            background-color 0.2s ease,
            color 0.2s ease,
            box-shadow 0.2s ease,
            border-color 0.2s ease,
            transform 0.1s ease;
        width: 44px;
        height: 44px;
        padding: 2px;
        justify-self: end;
        background-color: #fff;
        border: 1px solid #020d09;
    }
    .header .recall-btn__mobile svg {
        flex-shrink: 0;
    }
    .header__contacts-phone--flex a:last-child {
        display: none;
    }
}
@media (max-width: 692px) {
    .header__contacts-mail {
        display: none;
    }
    .header__grid {
        column-gap: 10px;
        grid-template-columns: 20px 50% auto;
    }
}
.tabbar {
    display: none;
}
@media (max-width: 992px) {
    .tabbar {
        display: block;
        position: fixed;
        inset: auto 0 0 0;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 2000;
        background-color: #f5f5f5;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
        border-radius: 8px 8px 0 0;
        isolation: isolate;
    }
    .tabbar__icon {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .tabbar__wrapper {
        display: flex;
        justify-content: space-between;
        gap: 8px;
        align-items: center;
        padding: 12px 8px;
    }
    .tabbar__wrapper a {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        text-align: center;
        min-width: 44px;
        color: #0a3426;
    }
    .tabbar__wrapper a p {
        font-size: 12px;
        line-height: 1;
        color: inherit;
    }
    .tabbar__wrapper a svg {
        color: inherit;
    }
    .tabbar__wrapper a.active {
        color: #518048;
    }
    .tabbar__wrapper a.active svg path {
        fill: #518048;
    }
    .tabbar__wrapper a.active p {
        color: #518048;
    }
    .tabbar__wrapper a.full .tabbar__badge {
        position: absolute;
        top: -6px;
        right: -10px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background-color: #8cea6f;
        color: #0a3426;
        font-size: 10px;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
    }
}
@media (max-width: 692px) {
    .tabbar__wrapper {
        justify-content: space-between;
        position: relative;
        z-index: 99;
        gap: 5px;
    }
}
.aside-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    display: none;
}
.aside-menu.is-open {
    display: block;
}
.aside-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}
.aside-menu__track {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 2vw;
    width: 50%;
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
}
.menu-panel {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
    background-color: #f5f5f5;
    z-index: 99;
    padding: 20px;
}
.menu-panel.is-active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}
.menu-panel__header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
}
.menu-panel__title {
    justify-self: center;
    font-weight: 700;
    font-size: 16px;
}
.menu-panel__title-red {
    color: #518048;
}
.menu-panel__back,
.menu-panel__close {
    padding: 8px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu-panel__back {
    grid-column: 1/2;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    width: 26px;
    height: 26px;
    color: #518048;
    justify-self: start;
}
.menu-panel__close {
    grid-column: 3/4;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    width: 26px;
    height: 26px;
    color: #518048;
}
.menu-panel .menu-list {
    overflow-y: auto;
    margin-top: 20px;
    padding-right: 4px;
    max-height: calc(100dvh - 140px);
}
.menu-panel .menu-list li::before {
    display: none;
}
.menu-panel .menu-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 16px;
    background: none;
    border: 0;
    cursor: pointer;
    color: #0f2440;
    font-weight: 700;
    padding-top: 10px;
    padding-bottom: 10px;
}
.menu-panel .menu-link__arrow {
    opacity: 0.5;
}
.menu-panel__footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.menu-panel__footer a {
    display: flex;
    gap: 16px;
    align-items: center;
}
.menu-panel[is="root"] {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}
.menu-accordion__toggle {
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: 0;
    cursor: pointer;
    text-align: left;
}
.menu-accordion .menu-link__arrow {
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
    opacity: 0.8;
}
.menu-accordion .menu-link__arrow.parent-arrow {
    width: 12px;
    height: 12px;
    border-bottom: 2px solid #518048;
    border-right: 2px solid #518048;
    transform: rotate(45deg);
}
.menu-accordion .menu-link__arrow.child-arrow {
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #020d09;
    border-right: 2px solid #020d09;
    transform: rotate(-45deg);
}
.menu-accordion.is-open .menu-link__arrow.parent-arrow {
    transform: rotate(-135deg);
    opacity: 0.9;
}
.menu-accordion__content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.25s ease;
    margin: 0;
    padding: 0;
}
.menu-accordion__content li .menu-link {
    font-size: 14px;
    font-weight: 400;
}
.menu-accordion.is-open .menu-accordion__content {
    overflow-y: auto;
    max-height: min(56vh, 520px);
    padding-left: 15px;
}
@media screen and (max-width: 692px) {
    .aside-menu__track {
        width: 96%;
    }
}
html {
    font-family:
        "Involve",
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        "Noto Sans",
        sans-serif;
    font-size: 14px;
    color: #0c0605;
}
body {
    position: relative;
}
body.no-scroll {
    overflow: hidden;
}

.layoutWrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.mainContent {
    flex-grow: 1;
}

h1 {
    color: #0c0605;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    text-transform: uppercase;
}
.h1 {
    color: #0c0605;
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
    text-transform: none;
}
.h2 {
    color: #0c0605;
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
    max-width: 690px;
}
.h3 {
    color: #0c0605;
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
}
.section__wrapper {
    display: grid;
    grid-template-columns: 280px auto;
    align-items: flex-start;
    gap: 16px;
}
.green__subtitle {
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #0c0605;
    color: #518048;
    display: flex;
    gap: 8px;
    align-items: center;
}
ul {
    padding-left: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
}
ul li {
    position: relative;
}
ul li::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 40%;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 50%;
    background-color: #518048;
}
.breadcrumps {
    display: flex;
    gap: 15px;
    padding-top: 150px;
    padding-bottom: 40px;
    flex-wrap: wrap;
    padding-left: 0;
}
.breadcrumps li {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    list-style-type: none;
}
.breadcrumps li a {
    color: #9499a5;
}

.breadcrumps li::before {
    display: none;
}
.breadcrumps li::after {
    content: "|";
    position: absolute;
    display: block;
    right: -12px;
    top: 1px;
    font-weight: 900;
    color: #9499a5;
}
.breadcrumps li:last-child::after {
    content: none;
}
.breadcrumps li.active {
    color: #9499a5 !important;
    font-weight: 700;
}
.breadcrumps li.active::after {
    display: none;
}
.slider__caption {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 5px;
}
.slider__controls {
    display: flex;
    gap: 10px;
}
.slider__controls button {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #518048;
    border: none;
    border-radius: 2px;
    cursor: pointer;
}
.slider__controls button:hover {
    opacity: 0.8;
}
.slider__controls button::before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-left: 2px solid #f5f5f5;
    border-bottom: 2px solid #f5f5f5;
    transform: rotate(45deg);
    margin-left: 4px;
}
.slider__controls button.slider__controls-right::before {
    transform: rotate(-135deg);
    margin-left: 0;
    margin-right: 4px;
}
.swiper-pagination-bullet-active {
    background: #518048;
}
.products__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 20px;
    margin-top: 30px;
}
.products__pagination__num {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}
.products__pagination__num:hover {
    opacity: 0.8;
}
.products__pagination__num.current {
    font-weight: bold;
}
.products__pagination .arrow {
    width: 30px;
    height: 30px;
    background-color: #518048;
    border-radius: 2px;
    position: relative;
    display: block;
}
.products__pagination .arrow::before {
    content: "";
    position: absolute;
    right: 8px;
    top: 10px;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #f5f5f5;
    border-right: 2px solid #f5f5f5;
    z-index: 3;
    transform: rotate(-225deg);
}
.products__pagination .arrow.disabled {
    background-color: #9499a5;
}
.products__pagination .arrow:hover {
    cursor: pointer;
}
.products__pagination .arrow.arrow-right::before {
    transform: rotate(-45deg);
    right: 12px;
}
.products__showmore {
    display: flex;
    margin-top: 30px;
    width: 100%;
}
.products__showmore-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        transform 0.1s ease;
    max-width: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #020d09;
}
.products__showmore-btn:hover {
    background: #518048;
    border-color: #518048;
    box-shadow: 0 1px 8px rgba(12, 6, 5, 0.3);
    text-shadow: 0 0 0.8px currentColor;
    color: #f5f5f5;
}
.footer-form {
    margin-top: 100px;
    padding: 60px 0;
    background: #e6ebe5;
}
.footer-form__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 50px;
}
.footer-form__hint {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #9499a5;
}
.footer-form__checks {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}
.footer-form__checks a {
    text-decoration: underline;
    color: #0a3426;
}
.footer-form__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        transform 0.1s ease;
    min-width: 260px;
    height: 46px;
    background-color: #c9ed5f;
    border-color: rgba(0, 0, 0, 0);
    font-weight: bold;
    margin-top: 40px;
}
.footer-form__btn:active {
    transform: translateY(1px);
}
.footer-form__btn:hover {
    background: #518048;
    border-color: #518048;
    box-shadow: 0 1px 8px rgba(12, 6, 5, 0.3);
    text-shadow: 0 0 0.8px currentColor;
    color: #fff;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background-color: rgba(14, 26, 22, 0.32);
    z-index: 50;
}
.overlay.show {
    display: block;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 9999;
    background: #fff;
    border-radius: 10px;
    padding: 36px 40px 32px;
    width: 920px;
    max-width: 96vw;
    max-height: 90vh;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.modal.show {
    display: block;
}
.modal__wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    animation: modalIn 0.18s ease-out;
    gap: 16px;
}


.modal__title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: #0a3426;
}
.modal__subtitle {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: #0c0605;
}
.modal__heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.modal_city {
    overflow-y: auto;
}
.modal__close-city {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    outline: none;
    align-self: flex-end;
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.modal__close-city svg {
    display: block;
}
.city__icon svg {
    display: block;
}
.city__search {
    position: relative;
    margin: 8px 0 24px;
}
.city__search-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #518048;
}
.city__search-icon svg {
    display: block;
    fill: currentColor;
}
.city__input {
    width: 100%;
    height: 46px;
    border: 1px solid #9499a5;
    border-radius: 6px;
    background: #f7f8f7;
    padding: 10px 42px;
    font-size: 14px;
    color: #0a3426;
    outline: none;
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease,
        background-color 0.15s ease;
}
.city__input::placeholder {
    color: #9499a5;
}
.city__input:focus {
    border-color: #518048;
    box-shadow: 0 0 0 1px rgba(81, 128, 72, 0.2);
    background: #fff;
}
.city__clear {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    border: none;
    background: rgba(0, 0, 0, 0);
    padding: 6px;
    cursor: pointer;
    color: #9499a5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.city__clear svg {
    display: block;
    fill: currentColor;
}
.city__popular {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.city__heading {
    font-weight: 700;
    font-size: 16px;
    color: #0c0605;
    margin: 0;
}
.city__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 32px;
}
.city__link {
    font-size: 16px;
    line-height: 1.4;
    color: #0c0605;
    text-decoration: none;
    padding: 2px 0;
}
.city__link:hover {
    color: #518048;
}

.city__list span.active {
    color: #0c2b21;
    font-weight: 700;
    position: relative;
}

.city__no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #8b8b91;
    font-size: 16px;
    background: #fff5f5;
    border: 1px solid #ffd6d6;
    border-radius: 10px;
    margin: 10px 0;
}

.city__no-results strong {
    color: #850003;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.city__no-results p {
    margin: 0;
    line-height: 1.5;
} 

.modal_recall,
.modal_kp,
.modal_add,
.modal_sent,
.modal_filters {
    max-width: 700px;
}
.modal_recall textarea,
.modal_kp textarea,
.modal_add textarea,
.modal_sent textarea,
.modal_filters textarea {
    min-height: 6rem;
    resize: none;
}
.modal_recall .modal_add__heading,
.modal_kp .modal_add__heading,
.modal_add .modal_add__heading,
.modal_sent .modal_add__heading,
.modal_filters .modal_add__heading {
    justify-content: center;
    margin-top: 5%;
}
.modal_recall .modal_add-btns,
.modal_kp .modal_add-btns,
.modal_add .modal_add-btns,
.modal_sent .modal_add-btns,
.modal_filters .modal_add-btns {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 16px;
}
.modal_recall .modal_add-btns--cat,
.modal_recall .modal_add-btns--main,
.modal_kp .modal_add-btns--cat,
.modal_kp .modal_add-btns--main,
.modal_add .modal_add-btns--cat,
.modal_add .modal_add-btns--main,
.modal_sent .modal_add-btns--cat,
.modal_sent .modal_add-btns--main,
.modal_filters .modal_add-btns--cat,
.modal_filters .modal_add-btns--main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        transform 0.1s ease;
}
.modal_recall .modal_add-btns--cat,
.modal_kp .modal_add-btns--cat,
.modal_add .modal_add-btns--cat,
.modal_sent .modal_add-btns--cat,
.modal_filters .modal_add-btns--cat {
    background-color: #c9ed5f;
    color: #020d09;
    font-weight: 700;
}
.modal_recall .modal_add-btns--main,
.modal_kp .modal_add-btns--main,
.modal_add .modal_add-btns--main,
.modal_sent .modal_add-btns--main,
.modal_filters .modal_add-btns--main {
    background-color: #0a3426;
    color: #8cea6f;
    font-weight: 700;
}
.modal_recall__body,
.modal_kp__body,
.modal_add__body,
.modal_sent__body,
.modal_filters__body {
    margin-top: 15px;
}
.modal_recall .modal__close-recall,
.modal_recall .modal__close-kp,
.modal_recall .modal__close-add,
.modal_recall .modal__close-sent,
.modal_recall .modal__close-filters,
.modal_kp .modal__close-recall,
.modal_kp .modal__close-kp,
.modal_kp .modal__close-add,
.modal_kp .modal__close-sent,
.modal_kp .modal__close-filters,
.modal_add .modal__close-recall,
.modal_add .modal__close-kp,
.modal_add .modal__close-add,
.modal_add .modal__close-sent,
.modal_add .modal__close-filters,
.modal_sent .modal__close-recall,
.modal_sent .modal__close-kp,
.modal_sent .modal__close-add,
.modal_sent .modal__close-sent,
.modal_sent .modal__close-filters,
.modal_filters .modal__close-recall,
.modal_filters .modal__close-kp,
.modal_filters .modal__close-add,
.modal_filters .modal__close-sent,
.modal_filters .modal__close-filters {
    position: absolute;
    top: 0;
    right: 0;
    border: 0;
    background: rgba(0, 0, 0, 0);
    padding: 6px;
    cursor: pointer;
}
.modal_recall .modal__close-recall svg,
.modal_recall .modal__close-kp svg,
.modal_recall .modal__close-add svg,
.modal_recall .modal__close-sent svg,
.modal_recall .modal__close-filters svg,
.modal_kp .modal__close-recall svg,
.modal_kp .modal__close-kp svg,
.modal_kp .modal__close-add svg,
.modal_kp .modal__close-sent svg,
.modal_kp .modal__close-filters svg,
.modal_add .modal__close-recall svg,
.modal_add .modal__close-kp svg,
.modal_add .modal__close-add svg,
.modal_add .modal__close-sent svg,
.modal_add .modal__close-filters svg,
.modal_sent .modal__close-recall svg,
.modal_sent .modal__close-kp svg,
.modal_sent .modal__close-add svg,
.modal_sent .modal__close-sent svg,
.modal_sent .modal__close-filters svg,
.modal_filters .modal__close-recall svg,
.modal_filters .modal__close-kp svg,
.modal_filters .modal__close-add svg,
.modal_filters .modal__close-sent svg,
.modal_filters .modal__close-filters svg {
    display: block;
}
.modal_recall .modal__fields,
.modal_kp .modal__fields,
.modal_add .modal__fields,
.modal_sent .modal__fields,
.modal_filters .modal__fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.modal_recall .modal__checks,
.modal_kp .modal__checks,
.modal_add .modal__checks,
.modal_sent .modal__checks,
.modal_filters .modal__checks {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}
.modal_recall .modal__btn,
.modal_kp .modal__btn,
.modal_add .modal__btn,
.modal_sent .modal__btn,
.modal_filters .modal__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        transform 0.1s ease;
    width: 100%;
    height: 46px;
    background-color: #c9ed5f;
    border-color: rgba(0, 0, 0, 0);
    font-size: 16px;
}
.modal_recall .modal__btn:active,
.modal_kp .modal__btn:active,
.modal_add .modal__btn:active,
.modal_sent .modal__btn:active,
.modal_filters .modal__btn:active {
    transform: translateY(1px);
}
.modal_recall .modal__btn:hover,
.modal_kp .modal__btn:hover,
.modal_add .modal__btn:hover,
.modal_sent .modal__btn:hover,
.modal_filters .modal__btn:hover {
    background: #518048;
    border-color: #518048;
    box-shadow: 0 1px 8px rgba(12, 6, 5, 0.3);
    text-shadow: 0 0 0.8px currentColor;
    color: #fff;
}
.modal_sent {
    max-width: 640px;
}
.modal_sent__heading {
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 10%;
}
.modal_sent__text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.modal_sent__media {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e6ebe5;
    flex-shrink: 0;
}
.modal_sent__media video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.modal_sent .modal__title {
    font-size: 20px;
}
.modal_sent .modal__subtitle {
    font-size: 12px;
    margin: 0;
}
.cat_menu {
    position: absolute;
    max-width: 1200px;
    width: auto;
    height: 690px;
    background-color: rgba(0, 0, 0, 0);
    top: 120px;
    left: 12vw;
    display: none;
    padding: 25px 15px 15px 15px;
}
.cat_menu.opened {
    display: block;
}
.cat_menu__container {
    min-width: 744px;
    width: max-content;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 6px 2px rgba(14, 14, 15, 0.25);
    background-color: #fff;
    padding: 40px;
}
.cat_menu__wrapper {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: auto;
}
.cat_menu__caption {
    font-size: 20px;
    color: #020d09;
    font-weight: 900;
}
.cat_menu__tabs {
    display: flex;
    flex-direction: column;
    flex-basis: 280px;
    align-items: center;
    flex-grow: 0;
    flex-shrink: 0;
    border-right: 1px solid #e6ebe5;
    height: 100%;
    overflow-y: auto;
}
.cat_menu__tabs .tablink {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    padding: 15px 15px 15px 0;
    width: 100%;
    transition: all 0.3s ease-in;
}
.cat_menu__tabs .tablink .thumb,
.cat_menu__tabs .tablink svg {
    width: 40px;
    height: 40px;
    flex-grow: 0;
    flex-shrink: 0;
}
.cat_menu__tabs .tablink span {
    font-weight: 16px;
    color: #020d09;
    width: 100%;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cat_menu__tabs .tablink .arrow {
    width: 11px;
    height: 11px;
    border-left: 2px solid #518048;
    border-bottom: 2px solid #518048;
    transform: rotate(225deg);
    margin-left: auto;
    opacity: 0;
    flex-grow: 0;
    flex-shrink: 0;
}
.cat_menu__tabs .tablink:hover svg path,
.cat_menu__tabs .tablink.active svg path {
    stroke: #518048;
}
.cat_menu__tabs .tablink:hover span,
.cat_menu__tabs .tablink.active span {
    color: #518048;
}
.cat_menu__tabs .tablink:hover .arrow,
.cat_menu__tabs .tablink.active .arrow {
    opacity: 1;
}
.cat_menu__content {
    max-width: 78%;
    padding: 0 20px;
    height: 100%;
    overflow: auto;
    flex-shrink: 0;
}
.cat_menu__content .tabcontent {
    max-width: 900px;
    height: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #518048 #e5e5e5;
    display: none;
}
.cat_menu__content .tabcontent::-webkit-scrollbar {
    height: 6px;
    border-radius: 999px;
}
.cat_menu__content .tabcontent::-webkit-scrollbar-track {
    background: #e5e5e5;
    border-radius: 999px;
}
.cat_menu__content .tabcontent::-webkit-scrollbar-thumb {
    background: #518048;
    border-radius: 4px;
    border-radius: 999px;
}
.cat_menu__content .tabcontent.active {
    display: block;
}
.cat_menu__content .tabcontent__caption {
    font-weight: 700;
    font-size: 16px;
}
.cat_menu__content .tabcontent__links {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(16, 1fr);
    grid-auto-columns: auto;
    gap: 10px;
    column-gap: 40px;
    margin-top: 10px;
}
.cat_menu__content .tabcontent__links a {
    display: block;
    width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.footer {
    background: #e6ebe5;
    min-height: 340px;
    padding-bottom: 20px;
}
.footer .section__wrapper {
    align-items: stretch;
}
.footer__left,
.footer__right {
    padding: 30px 20px 20px 30px;
    background-color: #0a3426;
    border-radius: 4px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 70px;
    height: 100%;
}
.footer__copyright {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}
.footer__copyright p {
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: #0c0605;
    text-transform: uppercase;
    color: #e6ebe5;
    line-height: 130%;
}
.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: stretch;
}
.footer__col {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.footer__col-heading {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #0c0605;
    font-weight: 600;
    color: #8cea6f;
    margin-bottom: 20px;
}
.footer__col-heading:hover {
    opacity: 0.7;
}
.footer__col-links {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #0c0605;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #e6ebe5;
    line-height: 130%;
    flex: 1;
}
.footer__col-links a:hover {
    opacity: 0.7;
}
.footer__info {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #0c0605;
    color: #e6ebe5;
}
.footer__info p {
    line-height: 130%;
}
.footer__info a {
    text-decoration: underline;
}
.footer-contacts {
    --contacts-icon: $green_yellow;
}
.footer-contacts__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}
.footer-contacts__item {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
}
.footer-contacts__icon {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--contacts-icon);
}
.footer-contacts__icon svg {
    display: block;
    width: 18px;
    height: 18px;
    color: #8cea6f;
    fill: currentColor;
    stroke: currentColor;
}
.footer-contacts__text {
    display: grid;
    gap: 6px;
}
.footer-contacts__text p {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #0c0605;
    color: #e6ebe5;
    line-height: 130%;
}
.footer-contacts__link {
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #0c0605;
    color: #e6ebe5;
    line-height: 130%;
    text-decoration: none;
}
.footer-contacts__link:hover {
    color: #8cea6f;
}
.field {
    position: relative;
}
.field__input {
    width: 100%;
    height: 60px;
    border: 1px solid #9499a5;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0);
    padding: 20px 10px 0px 10px;
    font-size: 14px;
    color: #020d09;
    outline: none;
}
.field__input::placeholder {
    color: #9499a5;
}
.field__input:focus {
    border-color: #9499a5;
}
.field__label {
    position: absolute;
    left: 12px;
    top: 7px;
    font-size: 12px;
    color: #9499a5;
    pointer-events: none;
    user-select: none;
}
.check {
    position: relative;
}
.check__input {
    position: absolute;
    opacity: 0;
    inset: 0 auto auto 0;
    width: 1px;
    height: 1px;
}
.check__label {
    position: relative;
    display: block;
    padding-left: 26px;
    font-size: 12px;
    line-height: 1.35;
    color: #020d09;
    cursor: pointer;
}
.check__label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 18px;
    height: 18px;
    border: 1px solid #9499a5;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0);
    box-sizing: border-box;
}
.check__label::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    width: 8px;
    height: 5px;
    border-left: 2px solid rgba(0, 0, 0, 0);
    border-bottom: 2px solid rgba(0, 0, 0, 0);
    transform: rotate(-45deg);
    opacity: 0;
}
.check__input:checked + .check__label::before {
    background: #c8ee4b;
    border-color: #c8ee4b;
}
.check__input:checked + .check__label::after {
    border-left-color: #111;
    border-bottom-color: #111;
    opacity: 1;
}
.check__input:focus-visible + .check__label::before {
    outline: 2px solid rgba(0, 0, 0, 0.25);
    outline-offset: 2px;
}
.form__submit:disabled {
    cursor: not-allowed;
    background-color: gray;
    border-color: gray;
    color: #fff;
    box-shadow: none;
    transform: none;
}
.form__submit:disabled:hover,
.form__submit:disabled:focus,
.form__submit:disabled:active {
    background-color: gray;
    border-color: gray;
    color: #fff;
    box-shadow: none;
    transform: none;
}
@keyframes modalIn {
    from {
        transform: translateY(6px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@media screen and (max-width: 992px) {
    h1 {
        font-size: 40px;
    }
    .h2 {
        font-size: 30px;
    }
    .h3 {
        font-size: 26px;
    }
    .form__grid {
        grid-template-columns: 1fr;
    }
    .form__btn {
        width: 100%;
        min-width: 0;
    }
    .breadcrumps {
        padding-top: 165px;
    }
    .modal {
        width: min(760px, 96vw);
        padding: 32px 30px 28px;
    }
    .city__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .section__wrapper {
        display: flex;
        flex-direction: column;
    }
    .footer-form {
        padding: 50px 0;
    }
    .footer {
        padding-bottom: 90px;
    }
    .footer__logo img {
        max-width: 60%;
    }
    .footer .section__wrapper {
        display: flex;
        flex-direction: row;
    }
    .footer__left,
    .footer__right {
        height: auto;
    }
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 768px) {
    h1 {
        font-size: 28px;
    }
    .h2 {
        font-size: 24px;
    }
    .h3 {
        font-size: 20px;
    }
    .modal {
        width: min(600px, 96vw);
        padding: 28px 24px 24px;
    }
    .modal__title {
        font-size: 26px;
    }
    .modal__subtitle {
        font-size: 14px;
    }
    .modal__close-city {
        top: 2px;
        right: 2px;
    }
    .city__list {
        grid-template-columns: 1fr;
    }
    .city__input {
        height: 44px;
    }
    .modal_add .modal_add-btns {
        flex-direction: column;
    }
}
@media screen and (max-width: 692px) {
    .h1 {
        font-size: 24px;
    }
    .footer .section__wrapper {
        flex-direction: column-reverse;
    }
    .footer-form__grid {
        grid-template-columns: 100%;
        grid-template-rows: repeat(3, 1fr);
    }
    .footer__grid {
        grid-template-columns: 100%;
    }
    .breadcrumps {
        padding-top: 170px;
    }
}
@media screen and (max-width: 576px) {
    .modal {
        padding: 22px 18px 18px;
    }
    .modal__heading {
        gap: 10px;
    }
    .city__search {
        margin-bottom: 16px;
    }
    .footer__left,
    .footer__right {
        min-height: auto;
    }
}



.has-tooltip {
    position: relative;
}

.has-tooltip:hover::after {
    content: attr(data-tooltip);
    
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    
    background-color: #333;
    color: #fff; 
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    animation: fadeIn 0.2s forwards;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.has-tooltip:hover::before {
    content: '';
    position: absolute;
    bottom: 90%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    z-index: 100;
    opacity: 0;
    animation: fadeIn 0.2s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; bottom: 110%; }
}



.textpage__title {
    margin-top: 30px
}

.textpage__content {
    padding-bottom: 30px
}

.seotext {
    margin-top: 120px
}

.seotext__hidden-part.hidden {
    display: none
}

.seotext__showmore {
    font-size: 18px;
    font-weight: 400;
    color: #9499a5;
    margin-top: 16px;
    cursor: pointer;
    text-decoration: underline
}

.seotext__content {
    margin-top: 30px
}

.seotext__content h2 {
    font-weight: 700;
    font-size: 36px
}

.seotext__content h3 {
    font-weight: 700;
    font-size: 30px;
    margin-top: 10px
}

.seotext__content h4 {
    font-weight: 700;
    font-size: 20px;
    margin-top: 10px
}

.seotext__content p {
    margin-top: 5px;
    font-size: 18px
}

.seotext__content img {
    border-radius: 4px
}

.text-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.text-table {
    text-align: left;
    margin: 20px 0;
    max-width: 100%
}

.text-table table {
    border-collapse: collapse;
    width: 100%;
    width: max-content;
    min-width: 100%
}

.text-table thead th {
    background-color: #e6ebe5;
    border-right: 1px solid #fff;
    color: #020d09;
    font-size: 20px;
    font-weight: 700
}

.text-table tr {
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5
}

.text-table th {
    border-right: 1px solid #f5f5f5;
    padding: 16px 20px;
    color: #020d09;
    font-size: 18px;
    font-weight: 300
}

.text-table th:last-child {
    border-right: none
}

@media screen and (max-width: 768px) {
    .seotext__content h2 {
        font-size: 24px
    }
    .seotext__content h3 {
        font-size: 20px
    }
    .seotext__content h4 {
        font-size: 16px
    }
    .text-table th {
        padding: 16px;
        font-size: 16px
    }
    .text-table thead th {
        font-weight: 700;
        font-size: 16px;
        line-height: 100%;
        color: #0c0605
    }
}





.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0px;
    width: 670px;
    max-height: 400px;
    overflow-y: auto;
    background: white;
    border: 1px solid #bacade;
    border-top: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #f1f3f6;
    text-decoration: none;
    color: #2c3e50;
    transition: background-color 0.2s ease;
}

.search-result-item:hover {
    background-color: #f8f9fc;
}

.search-result-item__image {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    flex-shrink: 0;
}

.search-result-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.search-result-item__image .placeholder {
    width: 100%;
    height: 100%;
    background: #f1f3f6;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bacade;
}

.search-result-item__info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.search-result-item__info .title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    color: #2c3e50;
}

.search-result-item__info .type {
    font-size: 12px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
}

.search-result-all {
    display: block;
    padding: 15px 20px;
    text-align: center;
    background: #f8f9fc;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-top: 1px solid #e3e8f2;
    transition: background-color 0.2s ease;
}

.search-result-all:hover {
    background: #e8f4fd;
}

.search-results-dropdown::-webkit-scrollbar {
    width: 6px;
}

.search-results-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.search-results-dropdown::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.search-results-dropdown::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-results-dropdown {
    animation: fadeIn 0.3s ease-out;
}

@media (max-width: 1200px) {
    .search-results-dropdown {
        width: 500px;
        left: 0px;
    }
    
    .header__bottom-content .header__actions.search-visible input[type=search] {
        width: 530px;
        left: -500px;
    }
    
    .header__bottom-content .header__actions.search-visible .search-close {
        left: -30px;
    }
}

@media (max-width: 768px) {

    .search-results-dropdown {
        width: calc(100vw - 50px);
        left: 135%;
        transform: translateX(-87%);
        max-width: 384px;
    }
    
    .search-result-item {
        padding: 10px 15px;
    }
    
    .search-result-item__image {
        width: 40px;
        height: 40px;
    }
}
