@-o-viewport {
    user-zoom: fixed
}

@viewport {
    user-zoom: fixed
}

* {
    backface-visibility: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: "Raleway", sans-serif;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none
}

body,
html {
    position: relative;
}

body {
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    color: #29574B;
    font: 14px "Raleway", sans-serif;
    line-height: 1.4;
    font-weight: normal;
    background: #FDF4E5;
}


input:-webkit-autofill,
input:-webkit-autofill:active,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
    -webkit-transition: background-color 5000000s ease-in-out 0s !important;
    transition: background-color 5000000s ease-in-out 0s !important
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    display: none
}

input[type=number] {
    -moz-appearance: textfield
}

:focus-visible {
    outline: 0
}

.container,
.breadcrumps {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto
}

main {
    margin-top: 186px;
    display: flex;
    flex-direction: column;
    flex: 1 0 auto
}

section {
    position: relative;
    padding: 20px 0;
    z-index: 0;
}

a {
    color: #29574B;
    text-decoration: none
}

img {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none
}

button,
input {
    background-color: unset;
    border: 0
}

button {
    cursor: pointer
}

textarea {
    resize: none
}

.flex-col {
    flex-direction: column;
    align-items: center;
    height: 100%
}

.flex-col,
.flex-row,
.flex-wrap {
    display: flex
}

.flex-wrap {
    flex-wrap: wrap
}

.h1,
h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.h2,
h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.h3,
h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.h4,
h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
}

.h5,
h5 {
    font-size: 18px;
    font-weight: 600;
}

.h6,
h6 {
    font-size: 16px;
    font-weight: 600;
}


.items {
    width: calc(100% + 20px);
    margin: 0 -10px -20px;
    justify-content: center;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6 {
    padding: 0 10px 20px;
    position: relative
}

.col-1 > *,
.col-2 > *,
.col-3 > *,
.col-4 > *,
.col-5 > *,
.col-6 > * {
    width: 100%;
    height: 100%
}

.col-1 {
    width: 100%
}

.col-2 {
    width: 50%
}

.col-3 {
    width: 33.3%
}

.col-4 {
    width: 25%
}

.col-5 {
    width: 20%
}

.col-6 {
    width: 16.6%
}

/* Default */
.btn,
input[type=submit] {
    text-align: center;
    font-variant-numeric: lining-nums proportional-nums;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all .4s ease;
    border-radius: 6px;
    background: #427B08;
    padding: 10px 20px;
}

.btn.outline {
    color: #29574B;
    border: 1px solid rgba(41, 87, 75, 0.25);
    background: #fff;
}

.btn:hover,
input[type=submit]:hover,
p:has(input[type=submit]:hover) .btn {
    background: #8EB06B;
    transition: all .4s ease;
}

.link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #427B08;
    font-weight: 500;
}

.link::after {
    content: '';
    background: url(../img/arrow-down.svg) center center / 100% 100% no-repeat;
    width: 10px;
    height: 6px;
    display: inline-block;
    transform: rotate(-90deg);
}

.form {
    width: calc(100% + 20px);
    margin: 0 -10px -20px;
}

.form p {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 0;
    padding: 0 10px 20px;
}

.form span,
.form input,
.form textarea,
.form label {
    width: 100%;
}

.form label {
    display: inline-block;
    color: #7E7E7E;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 8px;
    font-size: 14px;
}

.form input:not([type="submit"]),
.form textarea {
    color: #29574B;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 17px 20px;
    line-height: 140%;
    font-style: normal;
    font-weight: 500;
    margin-bottom: auto;
    border-radius: 8px;
    border: 1px solid #DFE6E4;
    background: #FFF;
    transition: all .4s ease;
}

.form input:not([type="submit"]):focus,
.form textarea:focus {
    border: 1px solid #B3CA9C;
}

.form input:not([type="submit"])::-moz-placeholder, .form textarea::-moz-placeholder {
    opacity: 1;
    color: #A9BCB7;
}

.form input:not([type="submit"])::placeholder,
.form textarea::placeholder {
    opacity: 1;
    color: #A9BCB7;
}

.form textarea {
    height: 80px;
}

.form input[type="submit"] {
    cursor: pointer;
    position: absolute;
    opacity: 0;
    inset: 0;
    width: 100%;
    height: 100%;
}

.form .btn {
    width: 100%;
    padding: 18px;
}

.form .checkbox span {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.form .checkbox span input {
    padding: 0;
    border-radius: 4px;
}

.form .checkbox::before {
    content: unset;
}

.form .checkbox span a {
    margin-left: auto;
    z-index: 999;
    color: #427B08;
    transition: all .4s ease;
}

.form .checkbox span a:hover {
    color: #29574B;
    transition: all .4s ease;
}

.wpcf7-not-valid-tip {
    display: inline-block;
    font-size: 14px;
    color: #DB222A;
    font-family: "Raleway", sans-serif;
    margin-top: 5px;
}

.wpcf7-form-control-wrap > *:nth-child(n+3) {
    display: none !important;
}

.social {
    gap: 28px;
    align-items: center;
    justify-content: center;
}

.social a img {
    width: 50px;
    height: 50px;
}

.social a {
    transition: all .4s ease;
}

.social a:hover {
    transform: scale(1.1);
    transition: all .4s ease;
}

.swiper-btns {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.swiper-btn {
    background: #FFF;
    max-width: 30px;
    min-width: 30px;
    width: 100%;
    height: 30px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .4s ease;
    opacity: 1;
}

.swiper-btn::before {
    content: '';
    width: 5px;
    height: 10px;
    background: url(../img/swiper-arrow.svg) center center / 5px 10px no-repeat;
    display: inline-block;
    transition: all .4s ease;
}

.swiper-button-lock,
.swiper-button-disabled {
    opacity: 0.5;
    display: flex;
}

.swiper-btn:hover {
    background: #427B08;
    transition: all .4s ease;
}

.swiper-btn:hover::before {
    filter: brightness(0) invert(1);
    transition: all .4s ease;
}

.swiper-prev {
    transform: rotate(180deg);
}

.jq-rating-label,
.jq-stars {
    display: inline-block
}

.jq-rating-label {
    font-size: 22px;
    position: relative;
    vertical-align: top;
    font-family: helvetica, arial, verdana
}

.jq-star {
    width: 100px;
    height: 100px;
    display: inline-block;
    cursor: pointer
}

.jq-star-svg {
    padding-left: 3px;
    width: 100%;
    height: 100%
}

.jq-star-svg path {
    stroke-linejoin: round
}

.jq-shadow {
    filter: drop-shadow(-2px -2px 2px #888)
}

/* Nav */
header {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    padding: 10px 0;
    background: #FDF4E5;
}

header.fixed .nav {
    transform: translate(0, -110px);
    height: 56px;
}

header::before,
.nav__list:has(.nav__katalog.active)::before,
.section__katalog::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: #232323;
    opacity: 0;
    visibility: hidden;
}

.nav:has(.nav__katalog.active) > *:not(.nav__list),
.nav:has(.nav__search input:focus) > *:not(.nav__list) {
    opacity: 0.1;
    transition: none !important;
}

.nav__list:has(.nav__katalog.active)::before {
    position: absolute;
    opacity: 0.75;
    visibility: visible;
}

.menu-active header.fixed::before {
    z-index: 10;
}

.menu-active header .nav {
    z-index: -1 !important;
}

.section__katalog::before {
    z-index: 10;
}

header:has(.nav__katalog.active)::before {
    opacity: 0.75;
    visibility: visible;
}

.nav {
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    transition: all .4s ease;
}

.logo {
    width: 376px;
    height: 100px;
}

.logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.nav {
    align-items: center;
    justify-content: space-around;
    position: relative;
}

.nav__contact {
    width: 340px;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.nav__contact a {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all .4s ease;
}


.nav__contact a:first-child {
    width: 100%;
    color: #427B08;
    font-size: 16px;
    line-height: 130%;
}

.nav__contact a:hover {
    color: #DF3A3A;
    transition: all .4s ease;
}

.nav__contact a:first-child img {
    transition: all .2s ease .1s;
}

.nav__contact a:first-child:hover img {
    transition: all .2s ease .1s;
    filter: brightness(0) saturate(100%) invert(26%) sepia(45%) saturate(1833%) hue-rotate(328deg) brightness(126%) contrast(102%);
}

.lang {
    position: absolute;
    top: -10px;
    right: 0;
    border-radius: 0 0 6px 6px;
    background: #FFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 10px 10px 0;
    overflow: hidden;
    transition: all .4s ease;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
}

.lang:hover {
    padding: 10px;
    transition: all .4s ease;
}

.lang a:nth-child(2) {
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: all .4s ease .1s;
}

.lang:hover a:nth-child(2) {
    opacity: 1;
    visibility: visible;
    height: auto;
    transition: all .4s ease;
}

.lang a,
.lang img {
    width: 20px;
    height: 14px;
}

.nav__list {
    width: 100%;
    border-radius: 8px;
    background: #fff;
    margin-top: 10px;
    position: relative;
    z-index: 102;
}

.nav__list .btn {
    padding: 18px 30px;
    gap: 12px;
    font-weight: 600;
    margin-right: auto;
    z-index: 2;
}

.nav__list:has(.nav__katalog.active) .btn {
    border-radius: 8px 8px 0 0;
}

.nav__katalog {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border-radius: 0 0 8px 8px;
    background: #FFF;
    padding: 15px;
    opacity: 0;
    z-index: 2;
    visibility: hidden;
    transition: all .4s ease;
}

.nav__katalog.active {
    opacity: 1;
    visibility: visible;
    transition: all .4s ease;
}

.nav__katalog a {
    width: 33.3%;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #29574B;
    font-size: 16px;
    font-weight: 600;
    line-height: 130%;
}

.nav__katalog a p {
    transition: all .4s ease;
}

.nav__katalog a:hover p {
    color: #427B08;
    transition: all .4s ease;
}

.nav__katalog a img {
    max-width: 70px;
    min-width: 70px;
    width: 100%;
    height: 70px;
    -o-object-fit: contain;
       object-fit: contain;
}

header:has(input:focus) .nav__list .btn {
    border-radius: 8px 0 0 8px;
    transition: all .4s ease;
}

.nav__list ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-right: 30px;
    position: relative;
}

.nav__list ul li {
    display: inline-flex;
    align-items: center;
}

.nav__list ul ul {
    position: absolute;
    top: 100%;
    left: -15px;
    padding: 5px 15px 15px 15px;
    border-radius: 0 0 8px 8px;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    width: 178px;
    font-weight: 600;
    line-height: 130%;
    color: #29574B;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}

.nav__menu .nav__list ul ul {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
    display: none;
    padding: 0;
    background: transparent;
    border-radius: 0;
    margin: 0;
}

.nav__menu .nav__list li {
    width: 100%;
}

.nav__list .active1 ul {
    opacity: 1;
    visibility: visible;
    transition: all .4s ease;
}

.nav__menu .nav__list .active1 ul {
    display: flex;
}

.nav__list ul ul a {
    color: #29574B;
}

.nav__list ul:nth-child(6) {
    margin-right: 0;
}

.nav__list ul a,
.nav__list ul span {
    gap: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    line-height: 130%;
    transition: all .4s ease;
}

.nav__list ul:nth-child(4) li:first-child a {
    color: #DF3A3A !important;
}

.nav__list ul span {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    cursor: pointer;
}

.nav__list ul a:hover,
.nav__list ul span:hover,
.nav__list ul .active1 span,
.blog__aside ul a:hover,
.blog__list a:hover,
.blog__aside a.active,
.blog__list a.active,
.nav__list ul:nth-child(4) li:first-child a:hover {
    color: #427B08 !important;
    transition: all .4s ease;
}

.nav__list ul span::after {
    content: '';
    width: 10px;
    height: 6px;
    transition: all .4s ease;
    display: inline-block;
    background: url(../img/arrow-down.svg) center center / 100% 100% no-repeat;
}

.nav__list ul span:hover::after,
.nav__list ul *:hover img,
.blog__aside ul a:hover img,
.blog__list a:hover img,
.blog__aside a.active img,
.blog__list a.active img {
    transition: all .4s ease;
    filter: brightness(0) saturate(100%) invert(36%) sepia(26%) saturate(2115%) hue-rotate(52deg) brightness(100%) contrast(94%);
}

.nav__list ul img,
.blog__aside ul a img,
.blog__list a img {
    transition: all .4s ease;
}

.nav__search {
    border-left: 1px solid #FDF4E5;
    width: 164px;
    padding: 12px 18px;
    display: inline-flex;
    height: 56px;
    align-items: center;
    position: relative;
    gap: 15px;
    margin-left: auto;
    background: #fff;
}

header .close {
    position: fixed;
    top: 20px;
    cursor: pointer;
    left: 390px;
    width: 20px;
    height: 20px;
    opacity: 0;
    visibility: hidden;
    z-index: 999999999;
    transition: all .4s ease;
}

.menu-active .close {
    opacity: 1;
    visibility: visible;
    transition: all .4s ease;
}

.nav__error .nav__list {
    background: transparent;
    justify-content: center;
    display: flex;
    position: relative;
    align-items: center;
}

.nav__error .nav__search {
    width: 772px !important;
    border-radius: 8px;
    border: 1.5px solid var(--Line, #DFE6E4);
    background: #FFF;
    margin: 0;
    flex-direction: row-reverse;
}

.nav__error .nav__search button path {
    stroke: #427B08;
    transition: all .4s ease;
}

.nav__error .nav__search button:hover path {
    stroke: #29574B;
    transition: all .4s ease;
}

.nav__search button {
    width: 18px;
    height: 18px;
}

.nav__search input {
    color: #29574B;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    background: transparent;
    border: none;
    width: 100%;
}

header:has(.nav__list input:focus)::before,
.menu-active header::before {
    opacity: .75;
    visibility: visible;
}

.menu-active header .nav .nav__list {
    z-index: 0;
}

.nav__search:has(input:focus) {
    position: absolute;
    right: 114px;
    border: none;
    left: 198px;
    width: calc(100% - 312px);
}

.nav__menu .nav__search:has(input:focus) {
    position: relative;
    right: 0;
    left: 0;
    width: calc(100% - 40px);
}

.nav__error .nav__search:has(input:focus) {
    width: 772px !important;
    right: auto !important;
    left: 50% !important;
    top: 0;
    transform: translate(-50%, 0);
    border-radius: 8px 8px 0 0;
}

.nav__search input::-moz-placeholder {
    color: #A9BCB7;
}

.nav__search input::placeholder {
    color: #A9BCB7;
}

.nav__items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border-radius: 0 0 8px 8px;
    background: #FFF;
    padding: 0 20px;
    opacity: 0;
    visibility: hidden;
}

header:has(.nav__list input:focus) .nav__search .nav__items {
    opacity: 1;
    visibility: visible;
}

.nav__item {
    width: 100%;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #DFE6E4;
}

.nav__item-content {
    width: calc(100% - 104px);
}

.nav__item:last-child {
    border: none;
}

.nav__item > img {
    width: 84px;
    height: 84px;
    -o-object-fit: contain;
       object-fit: contain;
}

.nav__item p {
    font-size: 12px;
    font-weight: 500;
    color: #A9BCB7;
    line-height: 130%;
    margin-right: 20px;
}

.nav__item-content > span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #54796F;
    font-size: 12px;
    font-weight: 500;
    line-height: 130%;
    margin-right: 8px;
}

.nav__item .h5 {
    width: 99%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 7px 0 10px;
    transition: all .4s ease;
}

.nav__item:hover .h5 {
    color: #427B08;
    transition: all .4s ease;
}

.nav__item .price bdi {
    color: #427B08;
    font-size: 18px;
    font-weight: 700;
    line-height: 130%;
}

.nav__btn {
    padding: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #FDF4E5;
    background: #fff;
    transition: all .4s ease;
}

.nav__btn:hover {
    background: #FEFCF7;
    transition: all .4s ease;
}

.nav__btn:nth-last-child(3) {
    display: none;
}

.burger {
    width: 54px;
    height: 52px;
    padding: 20px;
    position: relative;
    cursor: pointer;
    z-index: 102;
    display: none;
    margin-right: auto;
}

.burger::after,
.burger::before,
.burger span {
    content: '';
    position: absolute;
    width: 14px;
    height: 2px;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: #fff;
    transition: all .4s ease;
}

.burger::before {
    top: 20px;
}

.burger::after {
    bottom: 20px;
}

.burger span {
    top: 50%;
    transform: translate(-50%, -50%)
}

.menu-active .burger::after,
.menu-active .burger::before,
.menu-active .burger span {
    transition: all .4s ease;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
}

.menu-active .burger::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-active .burger::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-active .burger span {
    transform: translate(-50%, -50%) scaleX(0);
}

.bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #FFF;
    display: none;
    z-index: 1;
}

.bottom a {
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    color: #7E7E7E;
    font-size: 12px;
    font-weight: 600;
    line-height: 140%;
    width: 25%;
    border-right: 1px solid #FDF4E5;
}

.bottom a:last-child {
    border: none;
}

.bottom a img {
    width: 20px;
    height: 20px;
}

.fixed__cart {
    position: fixed;
    top: 50%;
    right: 25px;
    z-index: 99;
    height: -moz-fit-content;
    height: fit-content;
    transition: all .4s ease;
}

body:has(header.fixed) .fixed__cart {
    top: calc(50% - 47px);
    transition: all .4s ease;
}

.fixed__cart span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    width: 85px;
    height: 85px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 1.5px solid rgba(41, 87, 75, 0.15);
    margin-bottom: 8px;
    transition: all .4s ease;
}

.fixed__cart:hover span {
    transform: scale(1.1);
    transition: all .4s ease;
}

.fixed__cart b {
    color: #427B08;
    font-weight: 600 !important;
}

.fixed__cart p {
    color: rgba(41, 87, 75, 0.50);
    font-weight: 500;
    line-height: 140%;
}

.fixed__cart div {
    border-radius: 8px;
    border: 1.5px solid var(--Minimum-Green, #D8DCB9);
    background: var(--White, #FFF);
    padding: 4px;
    text-align: center;
    width: 85px;
}

.fixed__cart img {
    margin-left: 7px;
}

.menu-active {
    overflow: hidden !important;
}

.nav__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 370px;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 15px 15px 0;
    background: #FDF4E5;
    display: grid;
    grid-template-rows: auto auto auto auto auto auto 1fr;
    transform: translate(-100%, 0);
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}

.nav__menu .nav__katalog {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: #FDF4E5 !important;
    display: none;
}

.nav__menu .nav__katalog.active {
    display: block;
}

.closeKatalog {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    margin-top: 10px;
    gap: 10px;
    width: 100%;
    font-weight: 600;
    color: #427B08;
    border-radius: 8px;
    border: 1px solid var(--20-green, #D8DCB9);
    cursor: pointer;
}

.closeKatalog::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 6px;
    transform: rotate(180deg);
    transition: all .4s ease;
    filter: brightness(0) saturate(100%) invert(35%) sepia(100%) saturate(376%) hue-rotate(47deg) brightness(95%) contrast(103%);
    background: url(../img/arrow-down.svg) center center / 100% 100% no-repeat;
}

.closeKatalog:hover::after {
    transform: rotate(0);
    transition: all .4s ease;
}

.nav__menu .nav__katalog .h6 {
    margin-bottom: 12px;
}

.nav__menu .nav__katalog-list a {
    width: 100% !important;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    line-height: 130%;
    padding: 5px 10px;
}

.nav__menu .nav__katalog-list img {
    width: 50px;
    height: 50px;
}

.nav__menu .nav__katalog-list {
    background: #FFF;
    border-radius: 8px;
}

.menu-active .nav__menu {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
    transition: all .4s ease;
}

.nav__menu::-webkit-scrollbar {
    display: none;
}

.nav__menu .logo,
.nav__menu .logo img {
    width: 100%;
    height: auto;
}

.nav__menu .nav__search {
    width: calc(100% - 40px) !important;
    padding: 11px 18px !important;
    border-radius: 6px;
    height: 40px !important;
    border: 1.5px solid #DFE6E4;
    background: #FFF;
    margin: 0 0 15px !important;
}

.nav__menu .lang {
    right: 5px;
    top: 125px;
    background: transparent;
    display: flex;
}

.nav__menu .lang:hover {
    border-radius: 8px;
    background: #fff;
}

.nav__menu .btn {
    width: 100%;
    padding: 18px;
    margin-bottom: 15px;
}

.nav__menu .nav__list {
    background: #FFF;
    width: 100% !important;
    border-radius: 8px;
    border: 1.5px solid #DFE6E4;
    margin: 0 0 15px !important;
}

.nav__menu .nav__list ul {
    flex-direction: column;
    display: flex !important;
    align-items: flex-start;
    gap: 0;
    width: 100%;
}

.nav__menu .nav__list ul ul {
    display: none !important;
}

.nav__menu .nav__list .active1 ul {
    display: flex !important;
}

.nav__menu .nav__list li:has(span) {
    flex-direction: column;
}

.nav__menu .nav__list a,
.nav__menu .nav__list span {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 15px;
    border-bottom: 1.5px solid #DFE6E4;
}

.nav__menu .nav__list ul:first-child li:first-child a {
    color: #DB222A !important;
}

.nav__menu .nav__list ul:last-child li:last-child a {
    border-bottom: none;
}

.nav__menu .nav__list ul:first-child li:first-child a:hover {
    color: #427B08 !important;
}

.nav__menu .footer__social-item > a {
    font-size: 14px;
}

.nav__menu .footer__social-item {
    height: -moz-fit-content;
    height: fit-content;
    text-align: center;
}

.nav__menu .footer__social-item p {
    color: #7E7E7E;
    font-size: 10px;
    margin-bottom: 20px;
}

.nav__menu .footer__tel {
    margin-bottom: 8px;
}

.nav__menu-social {
    align-items: center;
    text-align: center;
    height: -moz-fit-content;
    height: fit-content;
    justify-content: center;
    gap: 20px;
}

.nav__menu-social p {
    width: 100%;
    margin-bottom: -5px;
    font-weight: 600;
    line-height: 130%;
    font-size: 14px;
    color: #A9BCB7;
}

.nav__menu .footer__copy {
    width: calc(100% + 30px);
    margin: 30px -15px 0;
    padding: 15px;
    align-items: center;
    text-align: center;
    height: -moz-fit-content;
    height: fit-content;
    gap: 5px;
}

.joke {
    display: none;
}

.joke.active {
    display: flex;
}

.joke,
.joke2 div {
    border-radius: 12px;
    background: #FFF;
    padding: 20px;
    gap: 20px;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 99999;
    width: 314px;
}

.joke2 {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    width: 400px;
    display: none !important;
}

.joke2.active {
    display: flex !important;
}

.joke2 div {
    position: relative;
    bottom: 0;
    right: 100px;
    width: 100%;
    font-size: 16px;
    color: #7E7E7E;
    z-index: 0;
    font-weight: 500;
    line-height: 130%;
    text-align: center;
}

.closeJoke {
    position: absolute;
    right: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    top: 0px;
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.closeJoke img {
    width: 12px;
    height: 12px;
}

.joke::before,
.joke2 div::before {
    content: '';
    width: 34px;
    height: 40px;
    position: absolute;
    right: 35px;
    bottom: -28px;
    background: url(../img/tri.svg) center center / 100% 100% no-repeat;
    transform: rotate(180deg);
}

.joke p,
.joke2 div {
    font-size: 16px;
    color: #7E7E7E;
    font-weight: 500;
    line-height: 1;
}

.joke2 > img {
    width: 184px;
    height: 200px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-left: auto;
    display: inline-block;
}

/* Footer */
.footer {
    padding: 40px 0 0;
    border-top: 1.5px solid #DFE6E4;
    align-items: flex-start;
    justify-content: space-between;
}

.footer__error {
    padding: 27px 0;
}

.footer__error .logo {
    display: none;
}

.footer__contact {
    border-radius: 12px;
    border: 1.5px solid #DFE6E4;
    background: #FFF;
    padding: 20px;
    text-align: center;
    width: 262px;
}

.footer__contact .h6 {
    color: #427B08;
    margin-bottom: 5px;
}

.footer__contact > p {
    color: #7E7E7E;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer__contact .form input {
    padding: 8.5px 12px;
}

.footer__contact .form .btn {
    padding: 10px;
}

.footer__menu ul {
    list-style: none;
    margin-top: 12px;
    margin-bottom: -7px;
}

.footer__menu ul li {
    margin-bottom: 7px;
}

.footer__menu a {
    font-weight: 500;
    color: #7E7E7E;
    transition: all .4s ease;
}

.footer__menu a:hover {
    color: #427B08;
    transition: all .4s ease;
}

.footer__social a,
.footer__social-item > a {
    font-weight: 500;
    color: #427B08;
    text-decoration: none !important;
    margin-bottom: 5px;
    display: inline-block;
}

.disc__text {
    width: 100%;
    align-items: center;
    font-size: 12px;
    grid-column: 1 / 3;
    font-weight: 500;
    line-height: 130%;
}

.disc__text svg {
    min-width: 12px;
    max-width: 12px;
    height: 12px;
    margin-right: 4px;
}

.disc__text span {
    margin-left: auto;
    color: #427B08;
}

.footer__social a:last-child {
    margin-bottom: 0;
}

.footer__social a:has(img) {
    color: #7E7E7E;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.footer__social-item p {
    color: #7E7E7E;
    font-size: 12px;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 22px;
}

.footer__tel {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 12px;
}

.footer__tel span {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
    transition: all .4s ease;
}

.footer__social a,
.footer__social-item > a {
    transition: all .4s ease;
}

.footer__tel span:hover,
.footer__social a:hover,
.footer__social-item > a:hover {
    color: #DF3A3A;
    transition: all .4s ease;
}

.footer__tel span::after {
    content: '';
    width: 10px;
    height: 6px;
    display: inline-block;
    transition: all .4s ease;
    background: url(../img/arrow-down.svg) center center / 100% 100% no-repeat;
}

.footer__tel span:hover::after,
.footer__tel.active span::after {
    transform: rotate(180deg);
    transition: all .4s ease;
    margin-top: -2px;
    filter: brightness(0) saturate(100%) invert(26%) sepia(45%) saturate(1833%) hue-rotate(328deg) brightness(126%) contrast(102%);
}

.footer__social a img {
    transition: all .4s ease;
}

.footer__social a:hover img {
    transition: all .4s ease;
    filter: brightness(0) saturate(100%) invert(26%) sepia(45%) saturate(1833%) hue-rotate(328deg) brightness(126%) contrast(102%);
}

.footer__tel ul a {
    color: #29574B;
}

.footer__tel ul {
    position: absolute;
    top: 100%;
    left: -15px;
    right: 0;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #D4DDDB;
    background: #FFF;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}

.footer__tel.active ul {
    opacity: 1;
    visibility: visible;
    transition: all .4s ease;
}

.footer__copy {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border-top: 1.5px solid #DFE6E4;
    margin-top: 40px;
}

.footer__error .footer__copy {
    margin: 0 !important;
    border: none;
}

.footer__copy p,
.med {
    font-size: 12px;
    font-weight: 500;
    color: #7E7E7E;
    width: 255px;
}

.footer__error .footer__copy p,
.footer__error .med {
    color: #54796F;
}

.footer__copy .logo {
    height: 70px;
    width: 376px;
    transform: scale(1) !important;
}

.med {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.med img {
    width: 104px;
    height: auto;
}

.cook {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05);
    padding: 20px 30px 20px 40px;
    align-items: center;
    gap: 30px;
    z-index: 102;
    display: none;
}

.cook.active {
    display: flex;
}

.cook img {
    max-width: 64px;
    min-width: 64px;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    height: 70px;
    margin-right: 20px;
}

.cook p {
    font-weight: 500;
    line-height: 130%;
    margin-right: auto;
}

.cook p a {
    color: #427B08;
}

.cook__btns {
    gap: 30px;
}

.cook .btn {
    padding: 10px 20px;
}

/* Modal */
.modal {
    border-radius: 8px;
    background: #FFF;
    padding: 20px;
    max-width: 760px;
    width: 100%;
    margin: auto;
    position: relative;
}

.modalMenu .nav__katalog {
    display: flex !important;
    position: relative;
    opacity: 1;
    visibility: visible;
    padding: 0;
}

.modalMenu .nav__katalog > a {
    width: 50% !important;
}

#breadModal {
    padding: 30px;
}

.modal__bread {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.modal__bread span {
    font-size: 14px;
    font-weight: 500;
    line-height: 130%;
}

.modalReplay {
    max-width: 370px;
    padding: 15px;
}

.modalContact {
    padding: 0;
    background: transparent;
    max-width: 1170px;
}

.modalCom {
    gap: 15px;
}

.modalCom > a {
    width: 100%;
}

.modalCom p {
    display: inline-flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.modalCom p b {
    color: #427B08;
    font-weight: 500 !important;
}

.modalContact > iframe {
    width: 100%;
    border-radius: 8px;
    height: 503px;
    border: 1.5px solid #DFE6E4;
    margin-bottom: 20px;
}

.modalContact .mfp-close {
    top: 15px !important;
    right: 15px !important;
}

.modalReplay .info {
    padding: 0;
    border: none;
    margin-top: 15px;
}

.modalReplay p:has(.rating) {
    align-items: center;
    flex-direction: row;
    font-size: 14px;
    line-height: 1;
    justify-content: space-between;
    justify-content: space-between;
    border-bottom: 1px solid #E4E4E4;
    margin-bottom: 15px;
}

.modalReplay label.h6 {
    padding-top: 15px;
    border-top: 1px solid #E4E4E4;
    color: #29574B;
}

.modalReplay .form {
    width: 100%;
    margin: 0;
}

.modalReplay .form > p {
    padding-left: 0;
    padding-right: 0;
}

.rating {
    width: -moz-fit-content !important;
    width: fit-content !important;
}

.modalReplay p:has(.rating) label {
    margin-bottom: 0;
    width: -moz-fit-content;
    width: fit-content;
}

.modal__title {
    padding-bottom: 20px;
    width: 100%;
    border-bottom: 1px solid #E4E4E4;
}

.modalReplay .modal__title {
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.modalReg > p b {
    background: #fff;
    width: -moz-fit-content;
    width: fit-content;
    display: inline-block;
    padding: 0 12px;
}

.modalReg p {
    color: #7E7E7E;
    font-size: 12px;
    font-weight: 500;
    line-height: 130%;
}

.modalReg > p {
    text-align: center;
    gap: 4px;
    z-index: 0;
    width: 100%;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.modalReg > p a {
    color: #427B08;
}

.modalReg > p a:hover {
    color: #29574B;
    transition: all .4s ease;
}

.modalReg > p:nth-last-child(3) {
    margin: 12px auto;
}

.modalReg > p:nth-last-child(3)::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 0;
    right: 0;
    z-index: -1;
    width: 100%;
    height: 1px;
    background: #DFE6E4;
}

.modalReg .modal__btns {
    justify-content: space-between;
    margin-bottom: 15px;
}

.modalReg .modal__btns a {
    width: calc(50% - 5px);
}

.modalReg .modal__btns a img {
    width: 20px;
    height: 20px;
}

.mfp-close {
    position: absolute;
    width: 16px;
    height: 18px;
    top: 24px !important;
    right: 24px;
    opacity: 1 !important;
    font-size: 1;
    display: inline-flex;
    z-index: 99;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    transition: all .4s ease;
    background: url(../img/x.svg) center center / 100% 100% no-repeat;
}

.mfp-close:hover {
    transform: scale(1.5);
    transition: all .4s ease;
}

.btn.mfp-close:hover {
    transform: scale(1) !important;
}

.modalReplay .mfp-close {
    right: 15px;
    top: 15px !important;
}

.modalReplay .comment__item {
    padding: 15px;
    margin-bottom: 15px;
}

.modalReplay .comment__item p {
    margin-bottom: 0;
}

.mfp-fade.mfp-bg {
    opacity: 0;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

.mfp-wrap,
.mfp-container,
.mfp-bg {
    height: 100vh;
    overflow: hidden;
}

.mfp-content {
    height: 100vh;
    position: fixed;
    inset: 0;
    overflow: auto;
    display: flex;
    padding: 20px 20px 80px;
}

.cart table {
    width: 100%;
    border-spacing: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border-color: unset;
    display: block;
}

.cart table thead {
    display: none;
}

.cart table tbody {
    width: 100%;
    display: block;
}

.cart table tr {
    padding: 20px 0;
    width: 100%;
    border-bottom: 1px solid rgba(41, 87, 75, 0.15);
    display: flex;
    align-items: center;
}

.cart table td:first-child {
    min-width: 96px;
    max-width: 96px;
    height: 96px;
}

.cart table td:first-child img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -o-object-fit: cover;
       object-fit: cover;
}

.cart table td:has(.del) {
    min-width: 94px;
    max-width: 94px;
}

.cart table td:has(.del) .del {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    color: #DF3A3A;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #DF3A3A;
    transition: all .4s ease;
}

.cart table td:has(.del) .del:hover {
    background: #DF3A3A;
    color: #fff;
    transition: all .4s ease;
}

.cart table td:has(.del) .del:hover img {
    filter: brightness(0) invert(1);
    transition: all .4s ease;
}

.cart table tr td:nth-child(2) {
    max-width: calc(100% - 190px);
    min-width: calc(100% - 190px);
    width: 100%;
    padding: 0 40px 0 20px;
}

.table__content {
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 130%;
    width: 100%;
}

.table__content a {
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 130%;
    width: 100%;
}

.table__content:hover .h5 {
    color: #427B08;
    transition: all .4s ease;
}

.table__content .price * {
    transition: all .4s ease;
}

.table__content:hover .price * {
    color: #8EB06B;
    transition: all .4s ease;
}

.table__content p {
    color: #A9BCB7;
    margin-right: 20px;
}

.table__content > span,
.table__content a > span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-right: 8px;
    color: #54796F;
}

.table__content .h5 {
    font-weight: 600;
    width: 99%;
    line-height: 130%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 5px 0 22px;
    transition: all .4s ease;
}

.quantity {
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    background: #fff;
    width: 120px;
    border: 1px solid rgba(41, 87, 75, 0.15);
    margin-right: 20px;
}

.quantity button {
    min-width: 32px;
    max-width: 32px;
    width: 100%;
    height: 27px;
    display: inline-flex;
    transition: all .4s ease;
    background: url(../img/-.svg) center center / 12px 2px no-repeat;
}

.quantity button.plus {
    background: url(../img/%2b.svg) center center / 12px 12px no-repeat;
}

.quantity button:hover {
    transition: all .4s ease;
    filter: brightness(0) saturate(100%) invert(78%) sepia(10%) saturate(1412%) hue-rotate(47deg) brightness(84%) contrast(82%);
}

.quantity input {
    border-left: 1px solid rgba(41, 87, 75, 0.15);
    border-right: 1px solid rgba(41, 87, 75, 0.15);
    padding: 5px 10px;
    text-align: center;
    color: #29574B;
    font-size: 14px;
    font-weight: 500;
    line-height: 130%;
    width: 100%;
}

.table__content .price {
    margin-right: auto;
}

.cart .sum {
    display: inline-flex;
    align-items: flex-end;
    gap: 7px;
    color: #7E7E7E;
}

.cart .sum b {
    color: #427B08;
    font-size: 18px;
    line-height: 1.1;
    transition: all .4s ease;
}

.table__content:hover .sum b {
    color: #8EB06B;
    transition: all .4s ease;
}

.cart__sum {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
}

.cart__sum p {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 500;
}

.cart__sum p b {
    color: #427B08;
}

.cart__sum .sum {
    font-size: 16px;
}

.cart__sum .sum b {
    font-size: 24px;
}

.cart .del__info {
    margin-bottom: 20px;
}

.cart .del__info a {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cart .del__info a img {
    min-width: 7px;
    max-width: 7px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(31%) sepia(25%) saturate(6198%) hue-rotate(67deg) brightness(94%) contrast(94%);
}

.cart .del__info a:hover img {
    filter: none;
}

.cart__btn {
    gap: 20px;
    width: 100%;
}

.cart__btn > * {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    top: 0 !important;
    font-size: 16px !important;
    right: 0 !important;
    padding: 18px !important;
    border-radius: 6px !important;
}

/* Hero */
.hero__swiper .swiper-slide,
.disc__swiper .swiper-slide {
    border-radius: 12px;
    max-height: 426px;
    display: block;
    overflow: hidden;
}

.hero__swiper .swiper-slide img,
.disc__swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: all .4s ease;
}

.hero__swiper .swiper-slide:hover img,
.disc__swiper .swiper-slide:hover img {
    transform: scale(1.05);
    transition: all .4s ease;
}

/* Kat */
.kat h1 {
    margin-bottom: 20px;
}

.kat__items .items > div {
    width: 18%;
}

.kat__items .items > div:nth-child(5n+3) {
    width: 27%;
}

.kat__item {
    border-radius: 12px;
    border: 1.5px solid #DFE6E4;
    background: #FFF;
    padding: 10px 10px 15px 10px;
    gap: 15px;
    text-align: center;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: all .4s ease;
}

.katalog__gallery-item {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.kat__item::before,
.kat__item::after,
.katalog__gallery-item::before,
.katalog__gallery-item::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 240px;
    height: 240px;
    background: radial-gradient(50% 50% at 50% 50%, #427B08 0%, rgba(66, 123, 8, 0.00) 100%);
    opacity: 0;
    transition: all .4s ease;
}

.kat__item::before,
.katalog__gallery-item::before {
    left: -120px;
    top: -120px;
}

.kat__item::after,
.katalog__gallery-item::after {
    right: -120px;
    bottom: -120px;
}

.kat__item:hover,
.katalog__gallery-item:hover {
    border: 1.5px solid #B3CA9C;
    transition: all .4s ease;
}

.kat__item:hover::before,
.kat__item:hover::after,
.katalog__gallery-item:hover::before,
.katalog__gallery-item:hover::after {
    opacity: 0.1;
    transition: all .4s ease;
}

.kat__item img {
    width: 100%;
    height: 145px;
    -o-object-fit: contain;
       object-fit: contain;
}

.kat__item p {
    font-weight: 600;
    line-height: 1.3;
}

.kat > .btn {
    padding: 18px;
    width: 100%;
    margin-top: 15px;
    display: none;
}

/* Feat */
.feat h4,
.feat h2 {
    margin-bottom: 20px;
}

.feat__items {
    justify-content: flex-start;
}

.feat__item {
    border-radius: 12px;
    border: 1.5px solid #DFE6E4;
    background: #FFF;
    padding: 30px 15px;
    text-align: center;
    position: relative;
    transition: all .4s ease;
}

.feat__item:hover {
    border: 1.5px solid rgba(66, 123, 8, 0.45);
    transition: all .4s ease;
}

.feat__item .h2 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #427B08;
}

.feat__item span {
    position: absolute;
    top: 20px;
    left: 20px;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(41, 87, 75, 0.15);
    color: #427B08;
    font-size: 14px;
    font-weight: 700;
    line-height: 140%;
}

.feat__item > img {
    margin-bottom: 25px;
    height: 60px;
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
}

.feat__item .h6 {
    color: #427B08;
    margin-bottom: 8px;
}

.feat__item p {
    font-weight: 500;
    color: #7E7E7E;
}

.feat > p {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    color: #7E7E7E;
}

.feat > p b {
    font-weight: 500 !important;
    color: #29574B;
}

/* Seo */
.seo {
    border-radius: 12px;
    border: 1.5px solid #DFE6E4;
    background: #FFF;
}

.seo > h5,
.seo > h2,
.seo > h3,
.seo > h4,
.seo > h6,
.seo > h1 {
    width: 100%;
    padding: 14px 20px;
    display: inline-block;
    border-bottom: 1.5px solid #DFE6E4;
}

.seo__content {
    padding: 20px;
    display: inline-block;
    width: 100%;
    border-bottom: 1.5px solid #DFE6E4;
}

.seo__content > *,
.seo__content.active > *:nth-child(2) {
    margin-bottom: 20px;
}

.seo__content > *:last-child,
.seo__content > *:nth-child(2) {
    margin-bottom: 0;
}

.seo__content > *:last-child {
    margin-bottom: 0 !important;
}

.seo__content > *:nth-child(n+3) {
    display: none;
}

.seo__content.active > *:nth-child(n+3) {
    display: inline-block;
}

.card .seo__content > *:nth-child(n+2) {
    display: none;
}

.card .seo__content > *:nth-child(1) {
    margin-bottom: 0;
}

.card .seo__content.active > *:nth-child(1) {
    margin-bottom: 20px;
}

.card .seo__content.active > *:nth-child(n+2) {
    display: inline-block;
}

.seo__content:has(table) table {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.seo__content:has(table) table tr:nth-child(n+4) {
    display: none;
}

.card .seo__content:has(table) {
    padding: 0;
}

.seo__content.active:has(table) table tr:nth-child(n+4) {
    display: table-row;
}

.seo__content table {
    width: 100%;
    border-spacing: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
}

.seo__content ul,
.seo__content ol {
    margin-left: 20px;
}

.showMore {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    font-weight: 600;
    color: #427B08;
    padding: 20px;
    cursor: pointer;
    transition: all .4s ease;
}

.showMore:hover {
    color: #8EB06B;
    transition: all .4s ease;
}

.showMore span:nth-child(2),
.showMore.active span {
    display: none;
}

.showMore.active span:nth-child(2) {
    display: inline-block;
}

.showMore::after {
    content: '';
    display: inline-block;
    background: url(../img/arrow-down.svg) center center / 10px 6px no-repeat;
    width: 10px;
    height: 6px;
    transition: all .4s ease;
}

.showMore:hover::after {
    filter: brightness(0) saturate(100%) invert(66%) sepia(17%) saturate(793%) hue-rotate(47deg) brightness(95%) contrast(92%);
    transition: all .4s ease;
}

.showMore.active::after {
    transform: rotate(180deg);
}

/* Bet */
.bet {
    border-radius: 12px;
    background: rgba(66, 123, 8, 0.20);
    padding: 40px;
    gap: 60px;
    align-items: center;
}

.bet h4 {
    margin-bottom: 20px;
}

.bet h6 {
    margin-bottom: 15px;
}

.bet p {
    color: #7E7E7E;
    font-size: 12px;
    font-weight: 500;
}

.bet .form {
    max-width: 395px;
    min-width: 395px;
}

/* Blog */
.blog {
    align-items: center;
    justify-content: space-between;
}

.section__blog-blog .blog {
    align-items: flex-start;
}

.blog__swiper {
    margin-top: 20px;
    width: 100%;
}

.blog__item {
    border-radius: 12px;
    border: 1px solid #D4DDDB;
    background: #FFF;
    overflow: hidden;
}

.blog__item > img {
    border-radius: 12px 12px 0 0;
    height: 156px;
    z-index: 1;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: all .4s ease;
}

.blog__item:hover > img {
    transform: scale(1.1);
    transition: all .4s ease;
}

.blog__item-content {
    padding: 15px;
    background: #fff;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 1fr auto;
    position: relative;
    z-index: 2;
    height: calc(100% - 156px);
}

.blog__item-content span {
    color: #427B08;
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 12px;
    font-weight: 500;
}

.blog__item-content .date {
    color: #A9BCB7;
    width: 100%;
    text-align: right;
}

.blog__item-content .h6 {
    margin: 7px 0 10px;
    width: 100%;
    grid-column: 1 / 3;
}

.blog__item-soc {
    align-items: center;
    margin-top: auto;
    gap: 8px;
}

.blog__item-soc b {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #54796F;
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 12px;
    font-weight: 500 !important;
}

.blog__item-content .link {
    text-align: right;
    justify-content: flex-end;
}

.blog__aside {
    min-width: 270px;
    max-width: 270px;
    width: 100%;
}

.blog__aside ul {
    z-index: 2;
    position: relative;
}

.wish__term {
    position: relative;
    z-index: 0;
    margin-bottom: 20px;
    max-width: 270px;
    margin-left: auto;
    margin-right: auto;
}

.wish__term img {
    width: 131px;
    height: 143px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.blog__content .wish__term,
.blog__content > a:has(img) {
    display: none;
}

.blog__content > a:has(img) {
    width: 100%;
    margin-top: 20px;
}

.blog__content > a:has(img) img {
    width: 100%;
    border-radius: 4px;
    height: auto;
    display: none;
}

.blog__content > a:has(img) img:nth-child(2) {
    display: none;
}

.wish__term p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 15px;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 8px;
    color: #8EB06B;
    font-weight: 600;
    background: #FFF;
    position: relative;
    z-index: 1;
}

.wish__term p::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 24px;
    right: -18px;
    top: 12px;
    background: url(../img/tri.svg) center center / 100% 100% no-repeat;
}

.blog__aside > a {
    width: 100%;
    height: auto;
}

.blog__aside > a img {
    border-radius: 4px;
    width: 100%;
    height: auto;
}

.wish__term p b {
    font-weight: 600 !important;
    color: #427B08;
}

.blog__list {
    width: 100%;
    display: none;
    overflow-x: auto;
}

.blog__items {
    justify-content: flex-start;
}

.blog__list::-webkit-scrollbar {
    display: none;
}

.blog__aside ul,
.blog__list {
    background: #fff;
    border: 1.5px solid #E4E4E4;
    border-radius: 8px;
    list-style: none;
    margin-bottom: 20px;
}

.blog__aside ul a,
.blog__list a {
    width: 100%;
    display: inline-flex;
    align-items: center;
    padding: 15px;
    gap: 11px;
    font-weight: 600;
    line-height: 130%;
    border-bottom: 1.5px solid #E4E4E4;
}

.blog__list li {
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
}

.blog__list a {
    border-bottom: none;
    border-right: 1.5px solid #E4E4E4;
}

.blog__aside ul li:last-child a,
.blog__list li:last-child a {
    border: none;
}

.blog__content {
    width: calc(100% - 290px);
}

.blog__content h1 {
    margin-bottom: 20px;
}

.blog__content > p {
    color: #7E7E7E;
    margin-bottom: 20px;
}

.vlog__swiper {
    margin: 20px 0 40px;
}

.vlog__swiper img {
    height: 212px;
}

.vlog__swiper .h6 {
    margin: 0;
}

.vlog__swiper .blog__item-content {
    display: block;
    height: -moz-fit-content;
    height: fit-content;
}

.vlog > .btn {
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 18px 50px;
}

/* Top */
.section__top {
    z-index: 2;
}

.section__top::before,
.section__top::after {
    content: '';
    background: #FDF4E5;
    position: fixed;
    height: 100%;
    width: calc((100% - 1194px) / 2);
    left: 0;
    top: 0;
    z-index: 2;
}

.section__top::after {
    right: 0;
    left: auto;
}

.top {
    align-items: center;
}

.top h2 {
    margin-right: 30px;
}

.top .tab__header {
    display: inline-flex;
    align-items: center;
    gap: 30px;
}

.top .tab__header span {
    color: #A9BCB7;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    transition: all .4s ease;
}

.top .tab__header span.active,
.top .tab__header span:hover {
    color: #54796F;
    transition: all .4s ease;
}

.top__swiper {
    margin-top: 25px;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    display: none;
    transition: all .4s ease;
}

.top__swiper.active {
    display: flex;
}

.top__swiper .swiper-btns {
    margin-left: auto;
    margin-bottom: 25px;
    margin-top: -50px;
}

.top__swiper .swiper {
    width: 100%;
    overflow: unset;
}

.katalog__item {
    position: relative;
    transition: all .4s ease;
}

.katalog__item:hover {
    z-index: 2;
    transform: translate(0, -64px);
    transition: all .4s ease;
}

.katalog__item > a:nth-child(3)::before {
    content: '';
    position: absolute;
    width: calc(100% + 24px);
    height: calc(100% + 74px);
    top: -12px;
    left: -12px;
    background: #fff;
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}

.katalog__item:hover > a:nth-child(3) {
    position: relative;
    width: 100%;
    display: block;
}

.katalog__item:hover > a:nth-child(3)::before {
    opacity: 1;
    visibility: visible;
    transition: all .4s ease;
}

.katalog__item-img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 218px;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 10px;
}

.katalog__item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.katalog__item-img span,
.card__swiper > span {
    position: absolute;
    top: 0;
    border-radius: 8px 0;
    background: #427B08;
    left: 0;
    padding: 6px 10px;
    color: #FFF;
    z-index: 2;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 130%;
}

.card__swiper > span {
    font-size: 14px;
    padding: 8.5px 12px;
}

.katalog__item-disc {
    background: #DF3A3A !important;
}

.katalog__item-img span:nth-child(3),
.card__swiper > span:nth-child(2) {
    top: 32px;
    border-radius: 0 8px 8px 0;
}

.card__swiper > span:nth-child(2) {
    top: 45px;
}

.katalog__item-love {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 0 8px;
    right: 0;
    top: 0;
    background: rgba(223, 58, 58, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}

.katalog__item-love2 {
    top: 41px;
    border-radius: 8px 0 0 8px;
    background: #DFE6E4;
}

.katalog__item-love2::before {
    content: unset !important;
}

.katalog__item-love::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all .4s ease;
    opacity: 0;
    width: 20px;
    height: 18px;
    visibility: hidden;
    background: url(../img/love-full.svg) center center / 20px 18px no-repeat;
}

.katalog__item-love:hover::before {
    transition: all .4s ease;
    opacity: 1;
    visibility: visible;
}

.katalog__item:hover .katalog__item-love {
    opacity: 1;
    visibility: visible;
    transition: all .4s ease;
}

.katalog__item-content {
    align-items: center;
}

.stock,
.katalog__item-content > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #427B08;
    font-size: 12px;
    font-weight: 500;
    line-height: 130%;
}

.stock {
    margin-right: auto;
}

.stock.outsock {
    color: #A9BCB7;
}

.stock::before {
    content: '';
    min-width: 12px;
    max-width: 12px;
    margin-bottom: 4px;
    width: 100%;
    height: 12px;
    display: inline-block;
    background: url(../img/instock.svg) center center / 100% 100% no-repeat;
}

.stock.outsock::before {
    background: url(../img/outstock.svg) center center / 100% 100% no-repeat;
}

.katalog__item-content > span {
    margin-left: 8px;
    gap: 4px;
}

.katalog__item-content > span svg {
    margin-bottom: 4px;
}

.katalog__item-content .h6 {
    margin-bottom: 10px;
    margin-top: 8px;
    height: 100%;
    max-height: 44px;
    overflow: hidden;
}

.katalog__item:hover .h6 {
    max-height: -moz-fit-content;
    max-height: fit-content;
}

.katalog__item-content ul {
    list-style: none;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    width: 100%;
    visibility: hidden;
    height: 0;
    margin-bottom: 0;
}

.katalog__item:hover .katalog__item-content ul {
    height: auto;
    visibility: visible;
    margin-bottom: 14px;
    transition: all .4s ease;
}

.katalog__item-content ul span {
    padding: 5px 10px;
    border-right: 1px solid #E4E4E4;
    display: inline-flex;
    align-items: center;
    width: 50%;
    color: #7E7E7E;
    font-size: 10px;
    font-weight: 500;
    line-height: 140%;
}

.katalog__item-content ul li {
    border-bottom: 1px solid #E4E4E4;
    display: flex;
    width: 100%;
}

.katalog__item-content ul span:last-child {
    border-right: none;
}

.katalog__item-content ul li:last-child {
    border-bottom: none;
}

.katalog__item .btn,
.compare tbody .btn {
    padding: 15px;
    gap: 12px;
    width: 100%;
}

.katalog__item:has(.stock.outsock) .btn {
    background: #D8DCB9;
    pointer-events: none;
}

.katalog__item .price {
    margin-bottom: 15px;
}

.price {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    gap: 7px;
}

.price bdi,
.price ins bdi {
    color: #427B08;
    font-size: 18px;
    font-weight: 700;
    line-height: 130%;
}

.price ins,
.price del {
    text-decoration: none;
}

.price del bdi {
    color: #A9BCB7;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    text-decoration-line: line-through;
}

/* Breadcrumps */
.breadcrumps {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 1;
    margin-bottom: 20px;
    position: relative;
}

.breadcrumps span,
.modal__bread span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #A9BCB7;
}

.modal__bread span {
    flex-direction: column;
    gap: 20px;
}

.breadcrumps span span:first-child a,
.modal__bread span:first-child a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.breadcrumps span a,
.modal__bread span a {
    color: #29574B;
    transition: all .4s ease;
}

.breadcrumps span a:hover,
.modal__bread span a:hover {
    color: #427B08;
    transition: all .4s ease;
}

.breadcrumps span span:first-child a::before,
.modal__bread span:first-child a::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(../img/home.svg) center center / 100% 100% no-repeat;
}

.breadcrumps span span::after,
.modal__bread span::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 6px;
    background: url(../img/arrow-down.svg) center center / 100% 100% no-repeat;
    transform: rotate(-90deg);
}

.modal__bread span::after {
    transform: rotate(0);
}

.breadcrumps span span:last-child,
.modal__bread span:last-child {
    cursor: default;
}

.breadcrumps span span:last-child::after,
.modal__bread span:last-child::after {
    display: none;
}

.breadcrumps .breadmenu {
    position: absolute;
    top: -4px;
    right: 0;
    display: none;
    align-items: center;
    justify-content: center;
    width: 24px;
    background: #FDF4E5;
    height: 24px;
    padding: 6px;
}

.breadcrumps .breadmenu svg {
    width: 100%;
    height: 100%;
}

/* Pol */
.section__pol {
    padding-bottom: 40px;
}

.pol h1 {
    margin-bottom: 20px;
}

.pol p,
.pol ul,
.pol ol {
    margin-bottom: 15px;
    display: inline-block;
    font-weight: 500;
    line-height: 130%;
    font-size: 16px;
    color: #7E7E7E;
}

.pol ul,
.pol ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.pol p:has(b) {
    margin-bottom: 30px;
}

.pol ul:has(p) li,
.pol ol:has(p) li {
    font-size: 16px;
    font-weight: 700;
    color: #29574B;
    line-height: 130%;
    margin-bottom: 20px;
}

.pol ol li {
    margin-bottom: 10px;
}

.pol ul:has(p) li:last-child,
.pol ol:has(p) li:last-child,
.pol ol li:last-child,
.pol > *:last-child {
    margin-bottom: 0;
}

.pol ol:has(p) p,
.pol ul:has(p) p {
    display: inline-block;
    width: 100%;
    font-size: 14px;
    margin-bottom: 10px;
}

.pol ol:has(p) p:first-child,
.pol ul:has(p) p:first-child {
    margin-top: 10px;
}

.pol b {
    color: #29574B;
}

.pol a {
    color: #427B08;
}

.pol h2,
.pol h3,
.pol h4,
.pol h5,
.pol h6 {
    font-weight: 700;
    line-height: 140%;
    font-size: 20px;
    margin: 15px 0;
    width: 100%;
    display: inline-block;
}

/* Del */
.del h1 {
    margin-bottom: 20px;
}

.del > p {
    font-weight: 500;
    line-height: 130%;
    color: #7E7E7E;
    margin-bottom: 20px;
    font-size: 16px;
}

.del h3 {
    margin-bottom: 15px;
}

.del__items {
    border-radius: 8px;
    background: #FFF;
    overflow: hidden;
    border: 1.5px solid #DFE6E4;
    margin-bottom: 20px;
}

.del__item {
    padding: 20px !important;
    text-align: center;
    border-right: 1.5px solid #DFE6E4;
}

.del__item:last-child {
    border-right: none;
}

.del__item img {
    margin-bottom: 10px;
    height: 32px;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.del__item .h6 {
    color: #427B08;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 3px;
}

.del__item p {
    margin-bottom: 3px;
    color: #7E7E7E;
    font-weight: 500;
    line-height: 130%;
}

.del__item b {
    color: #427B08;
    font-weight: 600 !important;
    line-height: 130%;
}

.del__info,
.info {
    border-radius: 8px;
    border: 1.5px solid var(--Line, #DFE6E4);
    background: var(--White, #FFF);
    padding: 20px;
    gap: 10px;
    font-weight: 500;
    line-height: 130%;
    color: #7E7E7E;
    align-items: center;
}

.del__info a,
.info a {
    transition: all .4s ease;
    color: #427B08;
}

.del__info a:hover,
.info a:hover {
    color: #29574B !important;
    transition: all .4s ease;
}

.del__info img,
.info img,
.info svg {
    min-width: 20px;
    max-width: 20px;
    width: 100%;
    height: 20px;
}

.del__info b,
.info b {
    color: #427B08;
    font-weight: 500 !important;
}

/* Katalog */
.katalog {
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding-top: 50px;
}

.section__katalog {
    z-index: 4;
}

.katalog__chosen {
    width: 100%;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    position: absolute;
    top: 0px;
    background: #FDF4E5;
    z-index: 10;
    padding: 0px 0 10px;
}

.katalog__chosen.fixed {
    position: fixed;
    top: 76px;
}

.katalog__chosen > * {
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    color: #29574B;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid rgba(41, 87, 75, 0.15);
    gap: 5px;
    justify-content: center;
    transition: all .4s ease;
}

.katalog__chosen > *:hover {
    color: #DF3A3A;
    border: 1px solid #DF3A3A;
    transition: all .4s ease;
}

.katalog__chosen > *::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background: url(../img/x.svg) center center / 100% 100% no-repeat;
}

.katalog__chosen .remove::after {
    content: unset;
}

.katalog__chosen .remove {
    color: #DF3A3A;
    border: 1px solid #DF3A3A;
    transition: all .4s ease;
}

.katalog__chosen .remove:hover {
    background: #DF3A3A;
    color: #fff;
    transition: all .4s ease;
}

.katalog__aside {
    width: 270px;
}

.katalog__aside .h5 {
    display: none;
    margin-bottom: 15px;
}

.katalog__aside .accordion {
    overflow: hidden;
    border: 1.5px solid rgba(41, 87, 75, 0.15);
    background: #fff;
    border-radius: 8px;
    width: 100%;
}

.katalog__aside .accordion__item {
    padding: 15px;
    border-bottom: 1.5px solid rgba(41, 87, 75, 0.15);
}

.katalog__aside .accordion__header {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.katalog__aside .accordion__header::after {
    content: '';
    width: 10px;
    height: 5px;
    background: url(../img/arrow-grey.svg) center center / 100% 100% no-repeat;
    transition: all .4s ease;
}

.katalog__aside .accordion__item.active .accordion__header::after {
    transform: rotate(180deg);
    transition: all .4s ease;
}

.katalog__aside .accordion__content {
    max-height: 0;
    position: relative;
    overflow: hidden;
}


.katalog__aside .accordion__item.active .accordion__content {
    margin-top: 15px;
    max-height: 220px;
    height: -moz-fit-content;
    height: fit-content;
}

.katalog__aside .accordion__item.active .accordion__content:has(.search) {
    max-height: 200px;
}

.katalog__aside .accordion__item.active .accordion__content:has(*:nth-child(5)) .showMore {
    display: inline-flex;
}

.katalog__aside .accordion__item.active .accordion__content:has(.showMore.active) {
    max-height: -moz-fit-content;
    max-height: fit-content;
    padding-bottom: 0;
}

.range__inputs {
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.range__inputs p {
    color: #A9BCB7;
    font-size: 12px;
    font-weight: 500;
    line-height: 130%;
}

.range__inputs input {
    border-radius: 6px;
    border: 1px solid rgba(41, 87, 75, 0.15);
    padding: 10px;
    color: #7E7E7E;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    width: 80px;
}

.range__range {
    display: inline-block;
    height: 12px;
    width: 100%;
    position: relative;
}

input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    outline: none;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    background-color: transparent;
    pointer-events: none;
}

.slider-track {
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
}

input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    height: 5px;
}

input[type="range"]::-moz-range-track {
    -moz-appearance: none;
    height: 5px;
}

input[type="range"]::-ms-track {
    appearance: none;
    height: 5px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 12px;
    width: 12px;
    background-color: #427B08;
    cursor: pointer;
    margin-top: 1px;
    pointer-events: auto;
    border-radius: 50%;
}

input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    height: 12px;
    width: 12px;
    cursor: pointer;
    border-radius: 50%;
    background-color: #427B08;
    pointer-events: auto;
    border: none;
}

input[type="range"]::-ms-thumb {
    appearance: none;
    height: 12px;
    width: 12px;
    cursor: pointer;
    border-radius: 50%;
    background-color: #427B08;
    pointer-events: auto;
}

.checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    position: relative;
    margin-bottom: 15px;
}

.checkbox:nth-last-child(2) {
    margin-bottom: 0;
}

.checkbox input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.checkbox::before,
.form .checkbox span::before {
    content: '';
    display: inline-block;
    border-radius: 4px !important;
    border: 1px solid rgba(41, 87, 75, 0.15) !important;
    max-width: 20px;
    background: #fff;
    min-width: 20px;
    width: 100%;
    height: 20px;
    cursor: pointer;
    transition: none !important;
}

input:checked,
.checkbox:has(input:checked)::before,
.form .checkbox span:has(input:checked)::before {
    transition: none !important;
    background: url(../img/check.svg) center center / 10px 10px no-repeat, #fff !important;
}

.checkbox p {
    color: #7E7E7E;
    font-weight: 500;
    line-height: 130%;
    margin-right: auto;
}

.checkbox:has(input:checked) p {
    color: #54796F;
}

.checkbox span {
    color: #A9BCB7;
    font-weight: 500;
    line-height: 130%;
}

.katalog__aside .showMore {
    padding: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
    right: 0;
    background: #fff;
}

.katalog__aside .showMore b:nth-child(2) {
    display: none;
}

.katalog__aside .showMore.active b:first-child {
    display: none;
}

.katalog__aside .showMore.active b:nth-child(2) {
    display: inline-block;
}

.katalog__aside .accordion__item.active .showMore.active {
    position: relative;
}

.katalog__aside .search {
    display: inline-flex;
    border-radius: 6px;
    border: 1px solid rgba(41, 87, 75, 0.15);
    align-items: center;
    padding: 10px;
    margin-bottom: 15px;
    gap: 8px;
    width: 100%;
}

.katalog__aside .search input {
    color: #A9BCB7;
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    width: 100%;
}

.katalog__aside > a {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.katalog__aside > a img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.katalog__aside .close svg,
.katalog__aside .close {
    width: 16px;
    height: 16px;
}

.katalog__content {
    width: calc(100% - 290px);
    position: relative;
}

.katalog__content h1 {
    margin-bottom: 10px;
}

.katalog__sort {
    border-radius: 8px;
    background: #FFF;
    border: 1.5px solid rgba(41, 87, 75, 0.15);
    margin-bottom: 20px;
}

.katalog__aside .close,
.katalog__aside .katalog__chosen {
    display: none;
}


.katalog__sort-item {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 25%;
    border-right: 1.5px solid rgba(41, 87, 75, 0.15);
}

.section__katalog-search .katalog__sort-item:nth-child(2) {
    width: 23.5%;
}

.section__katalog-search .katalog__sort-item:first-child {
    width: 76.5%;
}

.katalog__sort-item:nth-child(2) {
    width: 50%;
}

.katalog__sort-item:last-child {
    border-right: none;
}

.katalog__sort-item p {
    font-weight: 600;
    line-height: 130%;
    color: #7E7E7E;
}

.katalog__sort-item p:has(b) {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.katalog__sort-item b {
    color: #427B08;
    font-weight: 600 !important;
}

.select {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 15px;
}

.select select {
    display: none;
}

.select-selected::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 10px;
    height: 5px;
    background: url(../img/arrow-grey.svg) center center / 100% 100% no-repeat;
    transform: translate(0, -50%);
    transition: all .4s ease;
}

.select-selected:hover::after {
    transition: all .4s ease;
    filter: brightness(0) saturate(100%) invert(29%) sepia(8%) saturate(2334%) hue-rotate(114deg) brightness(92%) contrast(88%);
}

.select-arrow:after {
    transform: translate(0, -50%) rotate(180deg);
}

.select-selected {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

.select div,
.select-selected,
.select-items span {
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    color: #427B08;
    font-weight: 600;
    line-height: 130%;
    transition: all .4s ease;
}

.select-items span:hover,
.select-selected:hover {
    color: #29574B;
    transition: all .4s ease;
}

.select-items {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translate(-50%, 0);
    right: 0;
    z-index: 99;
    border-radius: 8px;
    background: #FFF;
    border: 1.5px solid rgba(41, 87, 75, 0.15);
    display: flex;
    align-items: center;
    padding: 10px;
    flex-direction: column;
    gap: 10px;
    min-width: 60px;
    width: -moz-fit-content;
    width: fit-content;
}

.select-hide {
    display: none;
}

.katalog__sort-mob {
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 10px;
}

.katalog__sort-mob > * {
    display: none !important;
}

.katalog__sort-mob .katalog__sort-item {
    padding: 0;
    width: -moz-fit-content;
    width: fit-content;
}

.btn-sort {
    width: 29px;
    border-radius: 4px;
    border: 1px solid #D8DCB9;
    height: 29px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.katalog__sort-mob .select {
    margin-left: -39px;
    width: 29px;
}

.katalog__sort-mob .select-selected {
    opacity: 0;
    width: 29px;
}

.katalog__sort-mob .select-items {
    left: 0;
    transform: translate(0);
}

.katalog__items {
    justify-content: flex-start;
}

.pagination {
    margin: 20px 0;
    width: 100%;
}

.nav-links {
    display: flex;
    width: 100%;
}

.nav-links > * {
    border: 1px solid rgba(41, 87, 75, 0.15);
    min-width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7E7E7E;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 130%;
    transition: all .4s ease;
}

.nav-links span,
.nav-links > *:not(.prev):not(.next):hover,
.prev:hover,
.next:hover {
    border: 1px solid #427B08;
    color: #427B08;
    transition: all .4s ease;
}

.prev,
.next {
    min-width: 25%;
    max-width: 25%;
}


.prev img {
    transform: rotate(90deg);
    transition: all .4s ease;
}

.next img {
    transform: rotate(-90deg);
    transition: all .4s ease;
}

.prev:hover img,
.next:hover img {
    filter: brightness(0) saturate(100%) invert(35%) sepia(100%) saturate(376%) hue-rotate(47deg) brightness(95%) contrast(103%);
    transition: all .4s ease;
}

.dots {
    width: 100%;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    border: 1px solid rgba(41, 87, 75, 0.15) !important;
    color: #7E7E7E !important;
}

.katalog__content > p {
    color: #7E7E7E;
    font-weight: 500;
    margin-bottom: 20px;
}

.katalog__gallery {
    justify-content: flex-start;
}

.katalog__gallery-item {
    border-radius: 8px;
    border: 1.5px solid rgba(41, 87, 75, 0.15);
    background: #FFF;
    text-align: center;
    gap: 15px;
    padding: 10px 10px 15px 10px;
}

.katalog__gallery-item img {
    height: 123px;
    width: 100%;
    border-radius: 8px;
    -o-object-fit: contain;
       object-fit: contain;
}

.btn-filter {
    padding: 6px 10px;
    gap: 5px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid #427B08;
    color: #427B08;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    transition: all .4s ease;
    position: absolute;
    right: 0;
    top: 3px;
    display: none;
}

.btn-filter:hover {
    color: #fff;
    background: #427B08;
    transition: all .4s ease;
}

.btn-filter:hover path {
    fill: #fff;
    stroke: #fff;
}

.section__katalog-search .katalog__content {
    width: 100%;
}

/* Part */
.part h1,
.part h2 {
    margin-bottom: 20px;
}

.part > p {
    color: #7E7E7E;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 20px;
}

.part__item {
    border-radius: 8px;
    border: 1.5px solid #DFE6E4;
    background: #FFF;
    text-align: center;
    padding: 30px 20px;
}

.part__item img {
    width: 60px;
    height: 60px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-bottom: 25px;
}

.part__item .h6 {
    color: #427B08;
    margin-bottom: 7px;
}

.part__item p {
    color: #7E7E7E;
    font-weight: 500;
}

/* List */
.list {
    border-radius: 8px;
    background: rgba(66, 123, 8, 0.20);
    padding: 40px;
    gap: 60px;
    align-items: center;
}

.list__content {
    max-width: 430px;
    min-width: 430px;
    width: 100%;
}

.list__content h4 {
    margin-bottom: 30px;
}

.list__content p {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
}

.list__content p:last-child {
    margin-bottom: 0;
}

.list .form .btn {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 17px 30px;
}

/* 404 */
main:has(.section__error) {
    justify-content: center;
}

.section__error-thanks .error {
    padding-bottom: 104px;
}

.error {
    color: #7E7E7E;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 160%;
    position: relative;
    z-index: 0;
}

.error svg {
    margin: 40px 0;
}

.error .btn {
    margin-top: 40px;
    font-size: 14px;
    padding: 17px 30px;
}

.error .btn img {
    filter: brightness(0) invert(1);
}

.error__content {
    padding: 40px 20px;
    max-width: 500px;
    width: 100%;
    border-radius: 16px;
    position: relative;
    background: #FFF;
}

.error__content::before {
    content: '';
    position: absolute;
    width: 54px;
    height: 65px;
    right: -54px;
    top: 60px;
    background: url(../img/tri.svg) center center / 100% 100% no-repeat;
}

.error__content svg {
    margin: 0 0 15px;
    width: 50px !important;
    height: 50px !important;
}

.error__content .h5 {
    color: #29574B;
    margin-bottom: 20px;
}

.error > img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 340px;
    z-index: -1;
    height: 371px;
}

/* Checkout */
.section__checkout .breadcrumps span span:first-child a::before {
    background: url(../img/swiper-arrow.svg) center center / 100% 100% no-repeat;
    height: 10px;
    width: 6px;
    transform: rotate(180deg);
    transition: all .4s ease;
}

.section__checkout .breadcrumps span span:first-child:hover a::before {
    transition: all .4s ease;
    filter: brightness(0) saturate(100%) invert(27%) sepia(89%) saturate(3416%) hue-rotate(70deg) brightness(100%) contrast(94%);
}

.checkout {
    align-items: flex-start;
    gap: 20px;
}

.checkout .form p {
    position: unset !important;
    z-index: unset !important;
}

.checkout__content {
    width: 100%;
    align-items: center;
}

.checkout__content h1 {
    padding-bottom: 20px;
    border-bottom: 1.5px solid rgba(41, 87, 75, 0.15);
    margin-bottom: 20px;
    width: 100%;
}

.checkout__content h3 {
    width: 100%;
    margin-bottom: 10px;
}

.checkout__content .form {
    padding-bottom: 20px;
    border-bottom: 1.5px solid rgba(41, 87, 75, 0.15);
    margin-bottom: 20px;
}

.checkout__content h3:nth-last-child(4) {
    padding-top: 20px;
    display: inline-block;
    border-top: 1.5px solid rgba(41, 87, 75, 0.15);
}

.checkout__content .form > div {
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 130%;
    color: #7E7E7E;
    padding-bottom: 0;
}

.checkout__content .form > div a {
    color: #427B08;
    width: -moz-fit-content !important;
    width: fit-content !important;
    transition: all .4s ease;
}

.checkout__content .form > div a:hover {
    color: #29574B;
    transition: all .4s ease;
}

.checkout__content .select,
.card__aside-item .select {
    padding-right: 0;
}

.checkout__content .select-selected,
.card__aside-item .select-selected,
.checkout__content .select-items span {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    color: #B7B7B7;
    transition: all .4s ease;
}

.checkout__content .select-items span:hover {
    color: #427B08;
    transition: all .4s ease;
}

.checkout__content .select-selected::after,
.card__aside-item .select-selected::after {
    right: 20px;
}

.checkout__content .select-selected,
.checkout__content .select-items,
.card__aside-item .select-selected,
.card__aside-item .select-items {
    font-size: 14px;
    font-weight: 500;
    color: #B7B7B7;
    line-height: 130%;
    padding: 18px 20px;
    border-radius: 6px;
    border: 1px solid rgba(41, 87, 75, 0.15);
    background: var(--White, #FFF);
    width: 100%;
}

.checkout__content .select-arrow,
.card__aside-item .select-arrow {
    border-radius: 6px 6px 0 0;
}

.checkout__content .select-items,
.card__aside-item .select-items {
    top: 100%;
    border-radius: 0 0 6px 6px;
    border-top: none;
}

.checkout__content .form:has(.select) {
    padding-bottom: 0;
    border: none;
    margin-bottom: 0;
}

.checkout .del {
    width: 100%;
    border-radius: 8px;
    border: 1.5px solid rgba(41, 87, 75, 0.15);
    background: #FDF4E5;
    padding: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.checkout .del p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
}

.checkout .del b {
    font-weight: 500 !important;
    color: #427B08;
}

.checkout .del a {
    color: #427B08;
    margin-left: auto;
    display: inline-flex;
    white-space: nowrap;
    font-weight: 500;
    align-items: center;
    gap: 6px;
}

.checkout .del a:hover {
    color: #29574B;
    transition: all .4s ease;
}

.checkout .del a::after {
    content: '';
    filter: brightness(0) saturate(100%) invert(31%) sepia(25%) saturate(6198%) hue-rotate(67deg) brightness(94%) contrast(94%);
    width: 6px;
    height: 10px;
    display: inline-block;
    transition: all .4s ease;
    background: url(../img/swiper-arrow.svg) center center / 100% 100% no-repeat;
}

.checkout .del a::after:hover {
    filter: unset;
    transition: all .4s ease;
}

.checkout__content .btn {
    padding: 18px 56px;
}

.checkout__content .info {
    display: inline-flex;
    align-items: flex-start;
    gap: 7px;
    padding: 0;
    border: none;
    border-radius: 0;
    width: calc(100% - 340px);
    margin-left: auto;
}

.checkout__content .info p {
    font-size: 14px;
    font-weight: 500;
    line-height: 130%;
    color: #7E7E7E;
}

.checkout__content .info svg {
    min-width: 18px;
    max-width: 18px;
    width: 100%;
    height: 18px;
}

.checkout__content .info a {
    color: #427B08;
}

.checkout__aside {
    min-width: 370px;
    max-width: 370px;
    width: 100%;
}

.checkout__item {
    border-radius: 8px;
    border: 1.5px solid rgba(41, 87, 75, 0.15);
    background: #FFF;
    margin-bottom: 20px;
    padding: 20px;
}

.checkout__item:last-child {
    margin-bottom: 0;
}

.checkout__item-header {
    width: calc(100% + 40px);
    padding: 0 20px 20px;
    margin: 0 -20px 20px;
    border-bottom: 1px solid rgba(41, 87, 75, 0.15);
}

.coupon {
    display: inline-flex;
    width: 100%;
    gap: 20px;
}

.coupon input {
    padding: 10px 12px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    color: #232323;
    width: 100%;
    border-radius: 6px;
    border: 1px solid #E4E4E4;
}

.coupon input::-moz-placeholder {
    color: #B7B7B7;
}

.coupon input::placeholder {
    color: #B7B7B7;
}

.coupon button,
.com button {
    font-weight: 600;
    line-height: 130%;
    padding: 8.5px 15px;
    color: #fff;
    border-radius: 6px;
    background: #427B08;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.com {
    width: 100% !important;
    margin: 0 !important;
    justify-content: space-between;
}

.com textarea {
    margin-bottom: 20px;
}

.com p {
    color: #7E7E7E;
    font-size: 12px;
    font-weight: 500;
    line-height: 130%;
}

/* Comment */
.comment {
    align-items: flex-start;
    gap: 20px;
}

.comment__content {
    width: 100%;
}

.card:not(.comment) .comment__content {
    border-radius: 8px;
    border: 1.5px solid #DFE6E4;
    background: #fff;
}

.comment__header {
    border-radius: 8px;
    border: 1.5px solid #DFE6E4;
    background: #fff;
    margin-bottom: 20px;
    position: relative;
}

.card:not(.comment) .comment__header {
    border: none;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid rgba(41, 87, 75, 0.15);
}

.comment__header .katalog__sort-item {
    padding: 13px 20px;
    width: 215px;
}

.card:not(.comment) .comment__header .katalog__sort-item {
    width: -moz-fit-content;
    width: fit-content;
    border: none;
}

.comment__header .katalog__sort-item:first-child {
    width: calc(100% - 215px);
    justify-content: flex-start;
}

.card:not(.comment) .comment__header .katalog__sort-item:first-child {
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
}

.comment__header .katalog__sort-item:first-child span {
    border-radius: 6px;
    background: rgba(41, 87, 75, 0.15);
    min-width: 28px;
    max-width: 28px;
    width: 100%;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #427B08;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 130%;
}

.comment__header .katalog__sort-item svg {
    display: none;
}

.card:not(.comment) .comment__header .katalog__sort-item svg {
    display: block;
}

.card:not(.comment) .comment__header .katalog__sort-item:has(.rate) {
    color: #7E7E7E;
    font-size: 16px;
    font-weight: 600;
    line-height: 130%;
}

.rate span {
    display: none;
}

.comment__items {
    position: relative;
    z-index: 2;
}

.comment__header .btn {
    display: none;
}

.card:not(.comment) .comment__header .btn {
    display: inline-flex;
    border-radius: 0 8px 0 0;
    padding: 17px 30px;
}

.comment__content > .btn {
    display: none;
}

.comment__item {
    border: 1.5px solid #E4E4E4;
    background: #fff;
    border-radius: 8px;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    margin-bottom: 20px;
}

.card:not(.comment) .comment__items {
    padding: 0 20px;
}

.card:not(.comment) .comment__items > *:last-child {
    margin-bottom: 0;
    border: none;
}

.card:not(.comment) .comment__items > .btn {
    width: 100%;
    padding: 17px 30px;
    display: none;
}

.card:not(.comment) .comment__item {
    border-radius: 0;
    padding: 0 0 20px;
    border: none;
    border-bottom: 1.5px solid #E4E4E4;
}

.comment__item:last-child,
.card:not(.comment) .comment__item > *:last-child {
    margin-bottom: 0;
}

.comment__item .h6 {
    width: -moz-fit-content;
    width: fit-content;
}

.comment__item-rate {
    align-items: center;
    margin-right: auto;
    gap: 8px;
    margin-left: 15px;
}

.comment__items.showMoreContent > *:nth-child(n+2) {
    display: none;
}

.comment__items.showMoreContent > *:first-child {
    margin-bottom: 0;
    border: none;
}

.comment__items.showMoreContent.active > *:first-child {
    margin-bottom: 20px;
    border-bottom: 1.5px solid #E4E4E4;
}

.comment__items.showMoreContent.active > *:nth-child(n+2) {
    display: flex;
}

.comment .showMore {
    border-top: 1.5px solid #E4E4E4;
}

.card.comment .comment__header .katalog__sort-item {
    width: 100% !important;
    text-align: center;
    justify-content: center;
}

.card.comment h1 {
    width: 100%;
}

.card.comment .feat__items {
    margin-bottom: 20px;
}

.card.comment .feat__items .h2,
.card.comment .feat__items .h2 *,
main:has(.section__about) .section__feat:nth-child(3) .h2,
main:has(.section__about) .section__feat:nth-child(3) .h2 * {
    font-family: 'Dela Gothic One', sans-serif;
    font-weight: 400;
}

.card.comment .comment__content {
    width: calc(100% - 390px);
}

.date {
    text-align: right;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 12px;
    font-weight: 500;
    line-height: 130%;
    color: #A9BCB7;
}

.comment__item .date {
    margin-left: auto;
}

.comment__item p {
    margin: 10px 0 0;
    width: 100%;
    color: #7E7E7E;
}

.comment__item .btn {
    padding: 8px 10px;
    gap: 3px;
    margin-top: 12px;
    font-size: 12px;
}

.comment__item-admin {
    width: 100%;
    border-left: 1px solid #DFE6E4;
    padding-left: 20px;
    margin-top: 20px;
}

.comment__aside {
    max-width: 370px;
    min-width: 370px;
    width: 100%;
    border-radius: 8px;
    border: 1.5px solid #DFE6E4;
    background: #FFF;
    padding: 15px;
}

.comment__aside h4 {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #DFE6E4;
}

.comment__aside .form div,
.modalReplay .form div {
    text-align: center;
    font-size: 12px;
    color: #7E7E7E;
}

.comment__aside textarea,
.modalReplay .form textarea {
    height: 160px;
}

.comment__aside .form,
.modalReplay .form {
    margin-bottom: -15px;
}

.comment__aside .form > *,
.modalReplay .form > * {
    padding-bottom: 15px;
}

/* Article */
.article__content {
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.article__content img {
    min-width: 670px;
    max-width: 670px;
    height: 376px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px;
}

.article__content > div {
    align-items: center;
    justify-content: space-between;
}

.article__content span {
    color: #427B08;
    font-size: 14px;
    font-weight: 500;
    line-height: 130%;
}

.article__content h1 {
    margin: 20px 0;
    width: 100%;
}

.article__content p {
    font-weight: 500;
    line-height: 130%;
    color: #7E7E7E;
    margin-bottom: 20px;
}

.article__content .btn {
    background: transparent;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 130%;
    color: #DF3A3A;
    gap: 3px;
}

.article__content .btn:hover {
    background: #DF3A3A;
    color: #fff;
}

.article__content .btn path {
    transition: all .4s ease;
}

.article__content .btn:hover path {
    stroke: #fff;
    transition: all .4s ease;
}

.article__content .btn:last-child {
    color: #427B08;
}

.article__content .btn:last-child:hover {
    background: #427B08;
    color: #fff;
}

.article .info {
    margin-bottom: 30px;
}

.article .info:last-child {
    margin-bottom: 0;
}

.article h2,
.article h3,
.article h4,
.article h5,
.article h6,
.article > p,
.article > ul,
.article > ol {
    margin-bottom: 15px;
}

.article > p,
.article li {
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    color: #7E7E7E;
}

.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
    margin-top: 30px;
}

.article > ul,
.article > ol {
    clear: both;
    padding-left: 20px;
    display: inline-block;
    vertical-align: top;
}

.glightbox-clean .gslide-media {
    background: #fff;
}

.article > p:has(b) {
    margin-bottom: 10px;
}

.article b {
    color: #29574B;
}

.article > .btn {
    padding: 18px 56px;
    margin: 15px 0 30px;
}

.article table {
    border-color: unset;
    border-spacing: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    width: 100%;
    margin: 15px 0 30px;
}

.article th,
.article td,
.seo__content table td,
.seo__content table th {
    border: 1px solid rgba(41, 87, 75, 0.15);
    border-radius: 8px 0 0 0;
    padding: 15px 20px;
    background: rgba(41, 87, 75, 0.06);
    min-width: 320px;
    max-width: 320px;
    text-align: left;
    color: #29574B;
    display: inline-block;
    font-weight: 700;
}

.card .seo__content table td,
.card .seo__content table th {
    border-radius: 0 !important;
}

.card .seo__content table tbody tr:last-child td {
    border-bottom: none !important;
}

.card .seo__content table tbody tr:first-child td {
    border-top: none !important;
}

.card .seo__content table tbody tr td:first-child {
    border-left: none !important;
}

.card .seo__content table tbody tr td:last-child {
    border-right: none !important;
}

.seo__content table td,
.seo__content table th {
    max-width: 50% !important;
    min-width: 50% !important;
    display: inline-block;
}

.article tbody tr:nth-child(2n+2) td {
    background: rgba(41, 87, 75, 0.03);
}

.seo__content table tr:nth-child(2n+2) td {
    background: rgba(41, 87, 75, 0.03);
}

.article th:nth-child(2),
.article td:nth-child(2),
.seo__content table td:nth-child(2),
.seo__content table th:nth-child(2) {
    width: 100%;
    border-radius: 0 8px 0 0;
}

.seo__content table td:nth-child(2) {
    border-radius: 0;
}

.article tbody tr:last-child td,
.seo__content table tbody tr:last-child td {
    border-radius: 0 0 0 8px;
}

.article tbody tr:last-child td:nth-child(2),
.seo__content table tbody tr:last-child td:nth-child(2) {
    border-radius: 0 0 8px 0;
}

.article td,
.seo__content table td {
    font-weight: 500;
    color: #7E7E7E;
    border-radius: 0;
    background: transparent;
}

.seo__content table tbody tr:first-child td {
    border-radius: 8px 0 0 0;
}

.seo__content table tbody tr:first-child td:nth-child(2) {
    border-radius: 0 8px 0 0;
}

.article > img {
    float: left;
    border-radius: 8px;
    -o-object-fit: cover;
       object-fit: cover;
    width: 570px;
    height: 280px;
    margin: 10px 30px 30px 0;
}

.article > img.small {
    width: 360px;
    height: 430px;
}

/* Service */
.service h1 {
    margin-bottom: 20px;
}

.service img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    -o-object-fit: cover;
       object-fit: cover;
}

.service p {
    color: #7E7E7E;
    font-weight: 500;
    line-height: 130%;
    font-size: 16px;
}

/* Gallery */
.gallery {
    align-items: center;
    justify-content: space-between;
}

.gallery__swiper {
    width: 100%;
    margin-top: 20px;
}

.gallery__swiper .swiper-slide {
    height: 218px;
    display: inline-block;
    align-items: center;
    justify-content: center;
}

.gallery__swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 6px;
}

/* Pop */
.pop {
    align-items: center;
    justify-content: space-between;
}

.pop .kat__items {
    margin-top: 20px;
    width: 100%;
    overflow: hidden;
}

.pop .kat__item {
    padding: 10px 5px;
    gap: 10px;
}

.pop .kat__item img {
    width: 130px;
    height: 130px;
}

/* About */
.about__items {
    margin-top: 20px !important;
}

.about__item {
    position: relative;
    z-index: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
}

.about__items > div:nth-child(2) img {
    position: relative;
    height: 116px;
    margin-top: 24px;
}

.about__items > div:nth-child(3) img {
    position: relative;
    height: 190px;
    margin-top: auto;
}

.about__item .btn {
    padding: 15px;
    width: 100%;
}

.about__item img {
    position: absolute;
    z-index: -1;
    bottom: 0;
    border-radius: 8px;
    left: 0;
    right: 0;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
    height: 100%;
}

.about__item-content {
    color: #fff;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.about__item-title {
    font-size: 36px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 5.4px;
    font-family: 'Dela Gothic One', sans-serif;
}

.about__item-title * {
    font-family: 'Dela Gothic One', sans-serif;
}

.about__item-content .h6 {
    font-weight: 500;
}

.about__item p {
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 140%;
    color: #7E7E7E;
}

/* Card */
.card {
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.card__content {
    width: calc(100% - 290px);
    align-items: flex-start;
    gap: 20px;
}

.card__content > * {
    width: 100%;
}

.card__container > .card__text:first-child {
    display: none;
}

.card__aside {
    max-width: 270px;
    min-width: 270px;
    width: 100%;
    position: sticky;
    right: 0;
    top: 80px;
    display: block;
}

.card__aside-item {
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1.5px solid rgba(41, 87, 75, 0.15);
    background: #FFF;
    padding: 15px;
}

.card__aside-item .stock {
    font-size: 14px;
    margin-bottom: 15px;
}

.card__aside-item .stock::before {
    min-width: 16px;
    max-width: 16px;
    height: 18px;
}

.card__aside-price .price bdi,
.card__aside-price .price ins bdi {
    font-size: 24px;
}

.card__aside-price .price del bdi {
    font-size: 16px;
}

.card__aside-price {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 15px;
}

.card__aside-price > span {
    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 7px;
    border-radius: 6px;
    background: var(--Green, #427B08);
    padding: 3.5px 5px;
}

.card__aside .quantity {
    margin-bottom: 15px;
}

.card__aside .info {
    padding: 0;
    border-radius: 0;
    border: none;
    margin-top: 0;
}

.card__aside .btn {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
}

.card__aside-item .h6 {
    margin-bottom: 15px;
}

.card__aside-item .select {
    width: 100%;
    margin-bottom: 15px;
}

.card__aside-item .select-selected,
.card__aside-item .select-items {
    color: #29574B;
    padding: 9.5px 12px;
}

.card__aside-item .select-items {
    color: #29574B;
    align-items: flex-start;
}

.card__aside-item ul {
    list-style: none;
}

.card__aside-item li {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    width: 100%;
    gap: 8px;
}

.card__aside-item li img {
    max-width: 18px;
    min-width: 18px;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center center;
       object-position: center center;
    height: 18px;
    width: 100%;
}

.card__aside-item li b {
    margin-left: auto;
    font-weight: 500 !important;
    color: #427B08;
}

.card__header {
    border-radius: 8px;
    background: #FFF;
    border: 1px solid #E4E4E4;
    justify-content: space-between;
    width: 880px;
    z-index: 99999;
    position: absolute;
    transition: all .4s ease;
}

.card__header.fixed {
    position: fixed;
    top: 75px;
    transition: all .4s ease;
}

label {
    display: inline-flex !important;
    align-items: center;
}

abbr {
    color: #DF3A3A !important;
    font-size: 26px !important;
    line-height: 1;
    height: 16px;
    display: inline-block;
}

.card__header a {
    border-right: 1px solid #E4E4E4;
    display: inline-flex;
    align-items: center;
    background: #FFF;
    justify-content: center;
    white-space: nowrap;
    padding: 18px 42px;
    font-size: 14px;
    font-weight: 600;
    line-height: 130%;
    transition: all .4s ease;
}

.card__header a:hover {
    color: #54796F;
    transition: all .4s ease;
}

.card__header a:last-child {
    border-right: none;
}

.card__container {
    width: 100%;
    gap: 20px;
    margin-top: 76px;
    align-items: flex-start;
}

.card__swiper {
    padding: 20px 50px;
    border-radius: 8px;
    border: 1px solid rgba(41, 87, 75, 0.15);
    max-width: 430px;
    min-width: 430px;
    width: 100%;
    position: relative;
    z-index: 0;
}

.card__swiper .swiper {
    width: 100%;
}

.card__swiper .swiper-slide {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.card__swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.card__swiper .mySwiper2 {
    height: 390px;
    margin-bottom: 10px;
}

.card__swiper .mySwiper .swiper-slide img {
    -o-object-fit: cover;
       object-fit: cover;
}

.card__swiper .mySwiper .swiper-slide {
    border: 1px solid transparent;
}

.card__swiper .mySwiper .swiper-slide-thumb-active {
    border: 1px solid #D8DCB9;
}

.card__swiper .swiper-btn {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 10px;
}

.card__swiper .swiper-prev {
    transform: translate(0, -50%) rotate(180deg);
}

.card__swiper .swiper-next {
    left: auto;
    right: 10px;
}

.card__text {
    align-items: center;
}

.card__text .card__aside {
    display: none;
    max-width: 100%;
    min-width: 100%;
}

.card__text > p {
    font-weight: 500;
    color: #A9BCB7 !important;
    margin-right: auto;
}

.card__text > a:has(svg) {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
}

.card__text h1,
.card__text-item {
    padding-bottom: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--Low-Gray, #E4E4E4);
}

.card__text-item {
    margin-top: 0;
}

.card__text-item:last-child {
    border-bottom: none;
}

.card__text-item .h6 {
    margin-bottom: 8px;
}

.card__text ul {
    margin-bottom: -8px;
    list-style: none;
}

.card__text ul li {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    margin-bottom: 8px;
}

.card__text ul li span,
.card__text p {
    line-height: 1.3;
    font-weight: 500;
    color: #7E7E7E;
}

.card__text ul li span:last-child {
    color: #29574B;
}

/* Contact */
.contact__map {
    width: 566px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 40px;
    position: relative;
}

.contact__map img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.contact__map > span {
    position: absolute;
    bottom: 171px;
    cursor: pointer;
    right: 254px;
}

.contact__map > span:nth-child(2) {
    bottom: 81px;
    right: 321px;
}

.contact__map span a {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: 277px;
    height: 190px;
    z-index: 2;
    transform: translate(-50%, 0);
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease .2s;
}

.contact__map span a img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.contact__map span a span {
    padding: 5px 10px;
    border-radius: 4px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, 0);
}

.contact__map span path {
    transition: all .4s ease;
}

.contact__map span:hover path {
    stroke: #427B08;
    transition: all .4s ease;
}

.contact__map span:hover a {
    opacity: 1;
    visibility: visible;
    transition: all .4s ease;
}

.contact__items {
    border-radius: 8px;
    background: #FFF;
    border: 1.5px solid #DFE6E4;
    width: 100%;
    margin: 0 0 40px;
    justify-content: space-between;
}

.contact__items:last-child {
    margin-bottom: 0;
}

.contact__items > div {
    padding: 20px;
    border-right: 1.5px solid #DFE6E4;
    border-bottom: 1.5px solid #DFE6E4;
}

.contact__item {
    text-align: center;
    align-items: center;
    justify-content: center;
}

.contact__item img {
    width: 28px;
    height: 28px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-bottom: 10px;
}

.contact__item .h4 {
    color: #427B08;
    font-weight: 500;
    margin-bottom: 10px;
    width: 100%;
}

.contact__item .h6 {
    margin-bottom: 3px;
}

.contact__item a,
.contact__item span {
    font-weight: 500;
    color: #427B08;
    transition: all .4s ease;
}

.contact__item a:hover,
.contact__item:hover span {
    color: #DF3A3A !important;
    transition: all .4s ease;
}

.contact__item p {
    font-weight: 500;
    line-height: 130%;
    width: 100%;
}

.contact__item p b {
    color: #427B08;
    font-weight: 500 !important;
}

.contact__items .col-2 a {
    width: 50%;
    padding: 20px 20px 0;
    margin-top: 20px;
    border-top: 1.5px solid #DFE6E4;
    font-size: 16px;
    font-weight: 600;
    line-height: 130%;
    color: #29574B;
    position: relative;
}

.contact__items .col-2 a::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 0;
    width: 1px;
    bottom: 0;
    background: #DFE6E4;
}

.contact__items .col-2 a:last-child::after {
    content: unset;
}

.order__items,
.cabinet {
    position: relative;
    z-index: 0;
}

.order__item,
.cabinet__item {
    border-radius: 8px;
    border: 1.5px solid #DFE6E4;
    background: #FFF;
    padding: 20px 20px 0;
    margin-bottom: 20px;
}

.cabinet__item {
    padding: 20px;
}

.order__item:last-child,
.cabinet__item:last-child {
    margin-bottom: 0;
}

.order__item-header,
.cabinet__item .h6 {
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1.5px solid #DFE6E4;
}

.cabinet__item .h6 {
    margin-bottom: 20px;
}

.order__item table tr td:nth-child(2) {
    max-width: calc(100% - 96px);
    min-width: calc(100% - 96px);
    width: 100%;
    padding: 0 0 0 20px;
}

.cabinet__item .form {
    align-items: flex-end;
}

.cabinet__item .btn {
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 68px;
    opacity: 0.3;
}

.cabinet__item .btn:hover {
    opacity: 1;
}

/* Compare */
.compare h1 {
    margin-bottom: 20px;
}

.compare .katalog__sort {
    justify-content: space-between;
}

.compare .katalog__sort-item {
    width: -moz-fit-content;
    width: fit-content;
}

.compare .katalog__sort .select-items {
    left: -10px;
    width: unset;
    right: -10px;
    transform: translate(0);
}

.compare .katalog__sort-item:nth-child(2) {
    width: calc(100% - 393px);
    border: none;
}

.compare .katalog__sort .btn {
    border-radius: 0 6px 6px 0;
}

.compare .katalog__sort .checkbox {
    margin-bottom: 0;
}

.compare__table {
    overflow: auto;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    width: 100%;
    display: flex;
}

main:has(.compare)::before,
main:has(.compare)::after {
    content: unset;
}

.compare table {
    border-spacing: 0;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    width: 100%;
    min-width: 100%;
}

.compare thead .katalog__item {
    transform: translate(0) !important;
}

.compare thead .katalog__item > a:nth-child(2)::before {
    content: unset !important;
}

.compare thead .katalog__item ul {
    display: none;
}

.compare thead td {
    padding: 0 10px 20px;
}

.compare tbody td,
.compare thead td {
    min-width: 292px;
    max-width: 292px;
    width: 100%;
}

.compare tbody td,
.compare tbody th {
    padding: 15px;
    text-align: center;
    color: #7E7E7E;
    font-weight: 500;
}

.compare tbody td:has(.btn) {
    padding: 0 5px 5px;
}

.compare tbody th {
    position: sticky;
    vertical-align: middle;
    left: 0;
    z-index: 2;
    font-weight: 600;
    color: #29574B;
    border-top: 1px solid #E4E4E4;
    width: 100%;
    background: rgba(41, 87, 75, 0.03);
}