body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.container {
    padding: 0 15px;
}
a, input, button {
    transition: all 0.2s;
    text-decoration: none;
}
a:focus {
    outline: none;
}
button:hover {
    cursor: pointer;
}
.site-header {
    padding: 22px 0;
}
.site-header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header__row {
    display: flex;
    align-items: center;
}
.site-header__logo img {
    max-width: 101px;
}
.site-header__catalog {
    width: 50px;
    height: 33px;
    border-radius: 15px;
    background: #F6F6F6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    margin-right: 15px;
}
.site-header__catalog:hover {
    background: #242424;
}
.site-header__catalog img {
    transition: all 0.2s;
}
.site-header__catalog:hover img {
    filter: invert(100%);
}
.site-header__search form {
    display: flex;
    align-items: center;
    gap: 15px;
}
.site-header__search form input {
    padding: 7px 13px 10px 13px;
    border-radius: 30px;
    background: #F6F6F6;
    font-weight: 500;
    font-size: 14px;
    line-height: 105%;
    border-color: transparent;
    outline: none;
    min-width: 440px;
    appearance: none;
}
.site-header__search form input::placeholder {
    color: #9F9F9F;
}
.site-header__search form input:focus {
    border-color: #5FB846;
}
.site-header__search button {
    width: 50px;
    height: 33px;
    border-radius: 30px;
    background: #9F9F9F url("./../images/search.svg") no-repeat center center;
}
.site-header__search button:hover {
    background: #242424 url("./../images/search.svg") no-repeat center center;
}
.site-header__buttons {
    gap: 20px;
}
.site-header__buttons a {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 38px;
}
.site-header__buttons a img {
    margin-bottom: 5px;
    transition: all 0.2s;
}
.site-header__buttons a span {
    font-weight: 500;
    font-size: 11px;
    line-height: 105%;
    text-align: center;
    color: #9F9F9F;
    text-decoration: none;
    margin-top: auto;
    display: block;
    transition: all 0.2s;
}
.site-header__buttons a:hover img {
    filter: brightness(0) saturate(100%) invert(58%) sepia(70%) saturate(368%) hue-rotate(61deg) brightness(93%) contrast(96%);
}
.site-header__buttons a:hover span {
    color: #5FB846;
}
.site-header__contacts {
   display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-left: 28px;
    background: url("./../images/phone.svg") no-repeat center left;
}
.site-header__contacts a:first-child {
    font-weight: 700;
    font-size: 15px;
    line-height: 105%;
    text-align: right;
    color: #5FB846;
}
.site-header__contacts a:first-child:hover {
    opacity: 0.7;
}
.site-header__contacts a:last-child {
    font-weight: 500;
    font-size: 13px;
    line-height: 105%;
    text-align: right;
    color: #9F9F9F;
    margin-top: 4px;
}
.site-header__contacts a:last-child:hover {
    color: #5FB846;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(12px);
}

.modal-window {
    background: #fff;
    width: 100%;
    max-width: 500px;
    padding: 60px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: scale(0);
    transition: all 0.6s;
    z-index: 101;
    position: relative;
    top: -350px;
}
@keyframes openPopup {
    0% {
        top: -350px;
        opacity: 0;
        transform: scale(0);
    }
    50% {
        top: 150px;
        opacity: 0.5;
    }
    100% {
        top: 0;
        opacity: 1;
        transform: scale(1);
    }
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay .wpforms-container, .user-form .wpforms-container {
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
    overflow: hidden;
    display: none;
}
.modal-window.active {
    visibility: visible;
    transform: scale(1); /* Анимация завершена */
    animation: openPopup 0.6s 0.3s forwards;
}

.modal-window__title {
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    text-align: left;
    color: #5FB846;
    margin-bottom: 20px;
}

.modal-window__header p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.001em;
    text-align: left;
    color: #9F9F9F;
}

.modal-window__body input {
    height: 60px;
}

.modal-close-button {
    width: 25px;
    height: 25px;
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 25;
    background: url("./../images/close.svg") no-repeat center center;
    background-size: contain;
}

.modal-window__body .btn {
    border-color: #5FB846;
    width: 100%;
    justify-content: center;
    border-radius: 15px;
}

.form-text p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
    color: #9F9F9F;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-text p a {
    border-bottom: 1px solid #9F9F9F;
    color: #9F9F9F;
}

.form-text p a:hover {
    border-bottom-color: transparent;
}


.modal-window__content:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
    transition: all 0.2s;
}

.input-container {
    position: relative;
    margin: 20px 0;
    width: 100%;
}

.form-group .input-field {
    width: 100%;
    padding: 16px 26px;
    padding-top: 22px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24.8px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    border: 1px solid transparent;
    background: #F6F6F6;
}

.form-group .input-field:focus {
    border-color: #5FB846;
}

.form-group .input-label {
    position: absolute;
    top: 17px;
    left: 26px;
    font-size: 16px;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group .input-field:focus + .input-label {
    top: 8px;
    left: 26px;
    font-size: 12px;
    color: #5FB846;
}

.form-group input:-webkit-autofill + .input-label {
    top: 8px;
    font-size: 12px;
    color: #5FB846;
}

.form-group .input-label.filled {
    top: 8px;
    left: 26px;
    font-size: 12px;
    color: #5FB846;
}

.btn {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #5FB846;
    border-radius: 30px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    font-family: "Montserrat", sans-serif;
}
.btn:hover {
    background: transparent;
    color: #5FB846;
}

.site-header__search {
    position: relative;
}
#search-results {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 25;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #ccc transparent; /* Firefox */
}
/* Chrome, Safari, Edge */
#search-results::-webkit-scrollbar {
    height: 8px;
    border-radius: 8px;
}

#search-results::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 8px;
}

#search-results::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 8px;
    transition: background 0.3s;
}

#search-results::-webkit-scrollbar-thumb:hover {
    background-color: #999;
}
#search-results p {
    margin: 0;
    padding: 15px 20px;
    font-weight: 500;
    font-size: 14px;
    line-height: 105%;
    color: #242424;
}
.search-dropdown {
    padding: 15px 20px;
    margin: 0;
    list-style: none;
}
.search-dropdown li a {
    display: flex;
    align-items: center;

}
.search-dropdown li {
    padding: 5px 0;
    border-bottom: 1px solid #F6F6F6;
}
.search-dropdown li:first-child {
    padding-top: 0;
}
.search-dropdown li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.search-dropdown li img {
    width: 80px;
    height: auto;
    margin-right: 20px;
}
.search-dropdown .product-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.search-dropdown .title {
    font-weight: 500;
    font-size: 14px;
    line-height: 106%;
    letter-spacing: 0%;
    color: #242424;
    margin-bottom: 5px;
    transition: all 0.2s;
}
.search-dropdown .title:hover {
    color: #5FB846;
}

.search-dropdown .price .amount {
    font-weight: 500;
    font-size: 18px;
    line-height: 106%;
    letter-spacing: 0%;
    color: #FF5757;
    background: none;
}
.search-dropdown .price del {
    text-decoration: none!important;
}
.search-dropdown .price del .amount {
    font-weight: 500;
    font-size: 14px;
    line-height: 106%;
    letter-spacing: 0%;
    color: #9F9F9F!important;
    text-decoration: line-through;
}
.search-dropdown .price ins {
    font-weight: 500;
    font-size: 18px;
    line-height: 106%;
    letter-spacing: 0%;
    color: #FF5757;
    background: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}
.site-header__cart {
    position: relative;
}
.site-header__buttons a span.not-empty {
    position: absolute;
    right: 10px;
    top: 0;
    width: 7px;
    height: 7px;
    border-radius: 100%;
    background: #FF5757;
    animation: pulse 2s infinite;
}
@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
    }
}
@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
        box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
        box-shadow: 0 0 0 10px rgba(204,169,44, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
        box-shadow: 0 0 0 0 rgba(204,169,44, 0);
    }
}
.site-header__menu {
    max-width: 1000px;
    margin: 0 auto;
    border-bottom: 1.5px solid #F6F6F6;
}
.site-header__menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.site-header__menu a {
    padding: 15px 20px;
    border-bottom: 1px solid transparent;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 105%;
    color: #9F9F9F;
    position: relative;
}
.site-header__menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 30%;
    pointer-events: none;
    transition: all 0.2s;
    background: radial-gradient(
            ellipse at bottom,
            rgba(95, 184, 70, 0.35) 0%,
            rgba(95, 184, 70, 0.15) 30%,
            rgba(95, 184, 70, 0) 80%
    );
    opacity: 0;
}
.site-header__menu a:hover {
    border-bottom-color: #5FB846;
    color: #5FB846;
}
.site-header__menu a:hover:after {
    opacity: 1;
}
.site-main .container {
    max-width: 1000px;
    margin: 0 auto;
}
.breadcrumbs {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}
.breadcrumbs li {
    font-weight: 500;
    font-size: 14px;
    line-height: 105%;
    letter-spacing: 0%;
    color: #9F9F9F;
}
.breadcrumbs li a {
    color: #9F9F9F;
}
.breadcrumbs li a:hover {
    color: #5FB846;
}
.crumb-sep {
    margin: 0 5px;
    width: 7px;
    height: 7px;
    background: url("./../images/sep.svg") no-repeat center center;
}
.site-main h1 {
    font-weight: 700;
    font-size: 24px;
    line-height: 97%;
    letter-spacing: 0%;
    color:#242424;
    margin-top: 45px;
    margin-bottom: 20px;
}
.site-main {
    min-height: calc(100vh - 437px);
    padding-bottom: 80px;
}
.site-main p {
    max-width: 573px;
    color: #000000;
    font-weight: 500;
    font-size: 14px;
    line-height: 127%;
}
.site-main p a {
    color: #5FB846;
}
.site-main p a:hover {
    opacity: 0.7;
}
.site-footer .container {
    max-width: 1000px;
    margin: 0 auto;
}
.site-footer__wrapper {
    display: flex;
    align-items: flex-start;
    gap: 67px;
    padding: 50px 64px;
    border-top: 1.5px solid #F6F6F6;
}
.site-footer__column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer__column_title {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 105%;
    letter-spacing: 0%;
    color: #9F9F9F;
}
.site-footer__column ul a {
    font-weight: 500;
    font-size: 13px;
    line-height: 105%;
    letter-spacing: 0%;
    color: #9F9F9F;
    margin-bottom: 13px;
}
.site-footer__column ul a:hover {
    color: #5FB846;
}
.wp-block-group__inner-container {
    margin-bottom: 32px;
}
.wp-block-group__inner-container p {
    margin-bottom: 10px;
    margin-top: 10px;
}
.wp-block-group__inner-container p a {
    color: #000;
}
.wp-block-group__inner-container p a:hover {
    color: #5FB846;
}
.wp-block-image {
    display: flex;
}
.wp-block-column p {
    margin-bottom: 10px;
}
.wp-block-list {
    margin-left: 0;
    padding-left: 20px;
}
.wp-block-list li {
    font-weight: 500;
    font-size: 14px;
    line-height: 105%;
    letter-spacing: 0%;
    margin-bottom: 10px;
}
.wp-block-group.has-background {
    padding: 14px 23px;
    border-radius: 10px;
}
.wp-block-group.has-background .wp-block-group__inner-container {
    margin-bottom: 0;
}
.wp-block-group.has-background p:last-child {
    margin-bottom: 0;
}
.section-top-category {
    padding: 22px 0;
	overflow: hidden;
}
.woocommerce ul.products li.product a img {
	height: 197px;
    object-fit: contain;
}
section .container {
    max-width: 1000px;
    margin: 0 auto;
}
.section-top-category__link {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-top-category__link:hover .section-top-category__image {
    background: rgba(95, 184, 70, 0.51);
}
.section-top-category__image {
    width: 59px;
    height: 59px;
    border-radius: 100%;
    overflow: hidden;
    transition: all 0.2s;
    background: #F6F6F6;

}
.section-top-category__image img {
    position: relative;
    right: -5px;
    bottom: -17px;
}
.section-top-category__title {
    font-weight: 500;
    font-size: 12px;
    line-height: 106%;
    text-align: center;
    color: #242424;
    margin-top: 5px;
    max-width: 97px;
}

.main-banner__slider {
    position: relative;
    height: 180px;
}
.main-banner__content {
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
    padding: 22px 25px;
}
.main-banner__content_wrapper {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 270px;
}
.main-banner__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 97%;
    text-transform: uppercase;
    margin-bottom: 2px;
    margin-top: 0;
    color: #242424;
}
.main-banner__desc {
    margin: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 112%;
    color: #242424;
    min-height: 28px;
}
.main-banner__row {
    display: flex;
    align-items: flex-end;
    margin-top: 5px;
}
.main-banner__image {
    height: 180px;
}
.main-banner__image img {
    height: 180px;
    width: 100%;
    border-radius: 13px;
}
.main-banner__price {
    font-weight: 800;
    font-size: 29.58px;
    line-height: 112%;
    text-align: center;
    text-transform: uppercase;
    color:#fff;
    padding: 6px 8px;
    border-radius: 14px;
    white-space: nowrap;
}
.main-banner__note {
    display: flex;
    align-items: center;
    margin-left: 14px;
    padding: 7px 12px;
    border-radius: 14px;

}
.main-banner__note img {
    margin-right: 7px;
}
.main-banner__note span {
    font-weight: 800;
    font-size: 12px;
    line-height: 112%;
    text-transform: uppercase;

}

/* Светлый фон → тёмный текст */
.main-banner__price--light {
    color: #000;
}

/* Тёмный фон → светлый текст */
.main-banner__price--dark {
    color: #fff;
}
.section-main-category{
    margin-bottom: 97px;
}
.section-banner .swiper-pagination {
    bottom: 0px!important;
}
.swiper-pagination-bullet {
    background: #F6F6F6!important;
    opacity: 1!important;
    width: 9px!important;
    height: 9px!important;
    box-shadow: 0px 4px 4px 0px #0000001A inset!important;

}
.swiper-pagination-bullet-active {
    background: #DFE7B3!important;
}
.section-main-category h2 {
    color: #242424;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 24px;
    line-height: 97%;
    text-transform: uppercase;
}
.section-main-category__wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}
.section-main-category__item {
    position: relative;
    padding: 9px 14px;
    background: #F6F6F6;
    border-radius: 20px;
    min-height: 129px;
}
.section-main-category__item:hover {
    background: #5fb84636;
}
.section-main-category__image {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 124px;
}
.section-main-category__image img {
    width: 100%;
}
.section-main-category__title {
    font-weight: 500;
    position: relative;
    z-index: 20;
    font-size: 18px;
    line-height: 106%;
    color: #242424;
    max-width: 166px;
}
.onsale {
    display: none;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    width: 100%;
    margin: 0;
    float: none;
    padding: 14px;
    border: 1.5px solid #F6F6F6;
    border-radius: 28px;
    position: relative;
    transition: all 0.2s;
}
.woocommerce ul.products li.product:hover, .woocommerce-page ul.products li.product:hover {
    border-color: rgba(95, 184, 70, 0.5);
}
.woocommerce ul.products li.product .product-obem {
    position: absolute;
    right: 14px;
    top: 14px;
    font-weight: 500;
    font-size: 20px;
    line-height: 112%;
    text-align: right;
    color: #5FB846;

}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding-top: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 105%;
    text-align: center;
    color: #242424;
    transition: all 0.2s;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title:hover {
    color: #5FB846;
}
.woocommerce ul.products {
   display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}
.woocommerce ul.products::after, .woocommerce ul.products::before {
    display: none;
}
.woocommerce ul.products li.product .price {
    display: flex;
    flex-direction: column;align-items: center;
    justify-content: center;
    min-height: 42px;
    width: 92px;
    font-weight: 700;
    font-size: 21px;
    line-height: 112%;
    text-align: center;
    text-transform: uppercase;
    color: #FF5757;
}
.woocommerce ul.products li.product .price del {
    font-weight: 700;
    font-size: 9px;
    line-height: 112%;
    text-align: center;
    text-transform: uppercase;
    text-decoration: line-through;
    color: #9F9F9F;
}
.woocommerce ul.products li.product .price ins {
    font-weight: 700;
    font-size: 21px;
    line-height: 112%;
    text-align: center;
    text-transform: uppercase;
    color: #FF5757;
}
.custom-quantity {
    position: absolute;
    bottom: 85px;
    right: 14px;
    width: 86px;
    padding-right: 20px;
}
.custom-quantity .custom-quantity__btn--plus {
    position: absolute;
    right: 0;
    top: 0;
    width: 17px;
    height: 17px;
    color: #9F9F9F;
    background: #F6F6F6 url("./../images/plus.svg") no-repeat center center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    margin: 0;
}
.custom-quantity .custom-quantity__btn--minus {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 17px;
    height: 17px;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    color: #9F9F9F;
    background: #F6F6F6 url("./../images/minus.svg") no-repeat center center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}
.custom-quantity input {
    font-weight: 500;
    font-size: 14px;
    line-height: 105%;
    text-align: center;
    padding: 11px;
    border: 1px solid #F6F6F6;
    border-radius: 7px 0 0 7px;
    outline: none;
    width: 65px!important;
}
.custom-quantity input:focus {
    border-color: rgba(95, 184, 70, 0.5);
}
/* Chrome, Safari, Edge */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.woocommerce ul.products li.product .button.btn-green {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #5FB846;
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
    line-height: 105%;
    color: #fff;
    width: 100%;
}
.woocommerce ul.products li.product .button.btn-green:hover {
    opacity: 0.7;
}
.woocommerce ul.products li.product .button.btn-green img {
    margin-right: 12px;
}
.woocommerce a.added_to_cart {
    display: none;
}
.woocommerce-products-header__title.page-title {
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 20px;
}
.section-categories__list {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 50px;
    margin: 30px 0;
}
.section-categories__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-categories__item:hover .section-categories__title {
    color: #5FB846;
}
.section-categories__title {
    font-weight: 500;
    font-size: 12px;
    line-height: 106%;
    text-align: center;
    color: #242424;
    transition: all 0.2s;
    margin-top: 6px;
}
.section-categories__image {
    height: 55px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.section-categories__image img {
    max-width: 100%;
    max-height: 100%;
}
.section-categories__item.active {
    pointer-events: none;
}
.section-categories__item.active .section-categories__title {
    color: #5FB846;
}
.no-products {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
}
.no-products .btn {
    border: 1px solid transparent;
}
.no-products .btn:hover {
    border-color: #5FB846;
}

.product-page__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 30px;

}
.product-page__content {
    grid-column: span 4 / auto;
}
.product-page__image {
    grid-column: span 3 / auto;
}

.product-gallery {
    /*max-width: 600px;*/
    width: 100%;
    margin: 0 auto;
}
.product-gallery .swiper {
    width: 100%;
}

.product-gallery-main,
.product-gallery-thumbs {
    width: 100%;
}

.product-gallery-main .swiper-slide img,
.product-gallery-thumbs .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
.product-gallery-main {
    aspect-ratio: 4 / 4;
    width: 100%;
    position: relative;
}
.product-gallery-main .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.site-main h1.product-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 97%;
    margin-bottom: 12px;
    margin-top: 8px;
}
.product-meta:first-child {
    margin-top: 30px;
}
.product-meta p {
    font-weight: 500;
    font-size: 14px;
    line-height: 105%;
    margin-bottom: 8px;
    color: #9F9F9F;
}
.product-meta.product-meta-green p {
    color: #5FB846;
}
.product-page__row {
    display: grid;grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin: 30px 0 100px;
}
.product-page__row_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.product-page__row_item p {
    font-weight: 700;
    font-size: 17px;
    line-height: 106%;
    margin-bottom: 5px;
    margin-top: 0;
    color: #242424;
}
.product-page__row_item span {
    font-weight: 500;
    font-size: 14px;
    line-height: 105%;
    color: #9F9F9F;
}

.product-page .stock {
    display: none;
}
.product-price {
    font-weight: 500;
    font-size: 14px;
    line-height: 105%;
    color: #9F9F9F;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.product-price .price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: 24px;
}

.product-price .price del {
    font-weight: 600!important;
    font-size: 14px!important;
    line-height: 105%!important;
    text-decoration: line-through!important;
    color: #9F9F9F!important;
}
.product-price .price del bdi {
    font-weight: 600!important;
    font-size: 14px!important;
    line-height: 105%!important;
    text-decoration: line-through!important;
    color: #9F9F9F!important;
}
.product-price .price  ins {
    font-weight: 700;
    font-size: 25px;
    line-height: 112%;
    text-transform: uppercase;
    color: #FF5757;
    background: none;
}
.product-price .price bdi {
    font-weight: 700;
    font-size: 25px;
    line-height: 112%;
    text-transform: uppercase;
    color: #FF5757;
    background: none;
}
.product-price__wrapper {
    position: relative;
    max-width: 345px;
}
.product-price__wrapper .button.btn-green {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #5FB846;
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
    line-height: 105%;
    color: #fff;
    width: 100%;
}
.product-price__wrapper .button.btn-green:hover {
    opacity: 0.7;
}
.product-price__wrapper .button.btn-green img {
    margin-right: 12px;
}
.btn__total {
    margin-left: 5px;
}
.product-page__description {
    margin-top: 27px;
}
.product-page__sub-title {
    font-weight: 500;
    font-size: 14px;
    line-height: 105%;
    text-align: left;
    margin-bottom: 13px;
    color: #9F9F9F;
}
.product-page__description p, .product-page__description li {
    font-weight: 500;
    font-size: 14px;
    line-height: 105%;
    letter-spacing: 0%;
    color: #242424;
}
.product-gallery {
    display: flex;
    align-items: flex-start;
    position: relative;
}
.product-gallery-thumbs.swiper {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 120px;
    padding: 10px;
}
.product-gallery-thumbs.swiper .swiper-slide:hover {
    cursor: pointer;

}
.product-gallery-thumbs.swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.1);
    -moz-box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.1);
    box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.1);
    border-radius: 10px;
}
.product-gallery-thumbs.swiper .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
}

.product-related {
    margin-top: 60px;
}

.wc-block-components-sidebar-layout.wc-block-cart {
    flex-direction: column;
}
.woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main {
    width: 100%;
    padding-right: 0;
}
.woocommerce-cart .wc-block-components-sidebar  {
    width: 100%;
}
.wc-block-components-product-badge {
    display: none;
}
.wc-block-components-product-metadata, .wc-block-components-address-form__country {
    display: none;
}
.wc-block-cart-items__row {
    position: relative;
}
.woocommerce-cart table.cart .wc-block-cart-item__remove-link {
    color: transparent!important;
    width: 15px;
    height: 15px;
    background: url("./../images/close.svg") no-repeat center center;
    background-size: 150%;
    position: absolute;
    right: 20px;
    top: 20px;
}
.wc-block-cart__main .wc-block-cart-items td {
    padding-top: 10px;
    padding-bottom: 10px;
}
.product-thumbnail a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 87px;
    height: 91px;
}
.woocommerce-cart table.cart img {
    width: 87px;
    height: 91px;
}
.product-remove {
    padding: 0!important;
}
.woocommerce-cart table.cart td {
    vertical-align: top;
}
.woocommerce-cart table.cart .product-name a {
    font-weight: 500;
    font-size: 14px;
    line-height: 105%;
    letter-spacing: 0%;
    color: #242424;
}
.wc-block-cart-item__prices .wc-block-components-product-price .wc-block-components-formatted-money-amount, .cart_item .product-price {
    font-weight: 700;
    font-size: 12px;
    line-height: 112%;
    text-align: right;
    text-transform: uppercase;
    color: #9F9F9F;
    position: absolute;
    right: 0;
    bottom: 25px;
    padding-right: 23px!important;
    top: auto;
    margin-bottom: 0;
}
.woocommerce-cart .wc-block-components-product-price .wc-block-components-formatted-money-amount, .cart_item .product-subtotal {
    font-weight: 700;
    font-size: 17px;
    line-height: 106%;
    letter-spacing: 0%;
    text-align: right;
    color: #242424;
    position: absolute;
    right: 20px;
    bottom: 0px;
    padding-right: 0!important;
}
.wc-block-components-quantity-selector {
    margin-bottom: 0;
}

.woocommerce-notices-wrapper {
    display: none;
}
.woocommerce table.shop_table thead {
    display: none;
}
.woocommerce-checkout table.shop_table {
    border: none;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__description .wc-block-components-product-price, .wp-block-woocommerce-checkout-order-summary-coupon-form-block, .wc-block-checkout__use-address-for-billing {
    display: none;
}
.wc-block-components-checkout-place-order-button {
    font-weight: 700;
    font-size: 17px;
    line-height: 106%;
    text-align: center;
    border-radius: 10px;
    padding: 12px 30px;
    border: 2px solid #5FB846;
    background: #5FB846;
    color: #fff;
    transition: all 0.2s!important;
    min-height: auto!important;
}
.wc-block-components-checkout-place-order-button:hover {
    background: transparent;
    color: #5FB846;
    border-color: #5FB846;
}

.wc-block-components-validation-error span {
    font-size: 12px!important;
    color: #cc1818;
}
.wc-block-components-validation-error svg {
    fill: #cc1818;
    display: none;
}

.woocommerce-cart-form__cart-item.cart_item {
    position: relative;

}

.quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    position: absolute;
    left: 125px;
    bottom: 20px;
}

.qty-btn {
    width: 41px;
    height: 35px;
    background: #F6F6F6;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0!important;
    padding-bottom: 3px!important;
    color: #9F9F9F;
}
.woocommerce .quantity .qty {
    color: #242424;
    font-weight: 500;
    font-size: 14px;
    line-height: 105%;
    letter-spacing: 0%;
    padding: 7px 9px;
}

.qty-btn:hover {
    background: #eaeaea;
}
.woocommerce-cart-form__cart-item.cart_item td {
    border: none!important;
}
.woocommerce-cart-form__cart-item.cart_item {
    display: flex;
    align-items: flex-start;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,.1);
}
.woocommerce-cart-form__cart-item.cart_item:first-child {
    border-top: 1px solid rgba(0,0,0,.1);
}
.qty-block {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding-right: 22px; /* место под "шт." */
}
.qty-block input {
    text-align: right!important;
    border: none!important;
    outline: none!important;
}

.woocommerce-cart-form__cart-item.cart_item .product-price .woocommerce-Price-amount.amount {
    margin-right: 5px;
}
.woocommerce-cart table.cart .wc-block-cart-item__remove-link:hover {
    opacity: 0.7;
}
.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
    width: 100%;
}
.cart-header .cart-count {
    font-weight: 500;
    font-size: 14px;
    line-height: 105%;
    letter-spacing: 0%;
    color: #242424;
}
.cart-header .clear-cart {
    font-weight: 500;
    font-size: 14px;
    line-height: 105%;
    letter-spacing: 0%;
    text-align: right;
    color: #9F9F9F;
}
.coupon, button.update_cart {
    display: none!important;
}
.woocommerce-cart .info-cart {
    padding-left: 32px;
    font-weight: 500;
    font-size: 14px;
    line-height: 105%;
    letter-spacing: 0%;
    color: #9F9F9F;
    position: relative;
    max-width: 650px;
}
.info-cart:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 17px;
    height: 17px;
    background: url("./../images/info.svg") no-repeat center center;
    background-size: contain;
}

.woocommerce-page .cart-collaterals::before {
    display: none;
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    width: 100%;
}
.cart-line {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.cart-line span {
    font-weight: 700;
    font-size: 17px;
    line-height: 106%;
    letter-spacing: 0%;
    color: #242424;
}
.cart-line.cart-total span:last-child {
    color: #FF5757;
}
.checkout-button {
    max-width: 350px;
}
.checkout-button .btn {
    font-weight: 700;
    font-size: 17px;
    line-height: 106%;
    text-align: center;
    border-radius: 10px;
    padding: 12px;
    border: 2px solid #5FB846;
}
.checkout-button .btn:hover {

}
.woocommerce-form-coupon-toggle {
    display: none;
}
.woocommerce ul#shipping_method {
    display: flex;
    align-items: center;
    gap: 20px;
}
.woocommerce ul#shipping_method input {
    display: none;
}
.woocommerce ul#shipping_method label {
    font-weight: 600;
    font-size: 14px;
    line-height: 106%;
    letter-spacing: 0%;
    text-align: center;
    color: #9F9F9F;
    padding: 10px 80px;
    border: 2px solid #9F9F9F;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}
.woocommerce ul#shipping_method input:checked ~ label {
    color: #fff;
    background: #5FB846;
    border-color: #5FB846;
}
.form-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}
.woocommerce form .form-row::after, .woocommerce form .form-row::before, .woocommerce-page form .form-row::after, .woocommerce-page form .form-row::before {
    display: none;
}
.order-products {
    list-style: none;
    padding: 0;
    margin: 0;
}
.woocommerce ul#shipping_method li {
    margin: 0;
    line-height: initial;
    height: 41px;
    display: flex;
}
.checkout-section.order-items h3 {
    margin-top: 0;
}
.product-line {
    display: flex;
    align-items: center;
    position: relative;
}
.product-line .thumb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80px;
    height: 80px;
}
.product-line .name {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: calc(100% - 100px);
}
.product-line .name p {
    font-weight: 600;
    font-size: 14px;
    line-height: 105%;
    letter-spacing: 0%;
    margin: 0;
    margin-bottom: 10px;
}
.product-line .attr {
    font-weight: 400;
    font-size: 14px;
    line-height: 105%;
    letter-spacing: 0%;
}
.product-line .price-total {
    font-weight: 400;
    font-size: 14px;
    line-height: 105%;
    letter-spacing: 0%;
    position: absolute;
    right: 0;
    bottom: 0;
}

.woocommerce table.shop_table {
    border: none;
}
a:visited {

}

.woocommerce-billing-fields .form-row {
    flex-direction: column;
    gap: 0;
}
.woocommerce form .form-row .input-text {
    font-weight: 500;
    font-size: 13px;
    line-height: 106%;
    letter-spacing: 0%;
    border-color: #d8d8d8 !important;
    border-width: 1.5px;
    padding: 14px 20px;
    border-radius: 10px;
}
.woocommerce-input-wrapper {
    width: 100%;
}
.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
    width: 49% !important;
}
#billing_country_field {
    display: none;
}
.woocommerce-shipping-fields {
    display: none;
}
.form-row.notes {
    flex-direction: column;
    gap: 0;
}
.form-row__item:nth-child(2) {
    position: sticky;
    top: 30px;
}
.wc-block-components-form .wc-block-components-text-input input[type=email], .wc-block-components-form .wc-block-components-text-input input[type=number], .wc-block-components-form .wc-block-components-text-input input[type=password], .wc-block-components-form .wc-block-components-text-input input[type=tel], .wc-block-components-form .wc-block-components-text-input input[type=text], .wc-block-components-form .wc-block-components-text-input input[type=url], .wc-block-components-text-input input[type=email], .wc-block-components-text-input input[type=number], .wc-block-components-text-input input[type=password], .wc-block-components-text-input input[type=tel], .wc-block-components-text-input input[type=text], .wc-block-components-text-input input[type=url] {
    border: 1px solid hsla(0, 0%, 71%, 0.8);
    border-radius: 10px;
}
.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted, .wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
    background: #5FB846;
    box-shadow: none;
}
.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted span, .wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted span {
    color: #fff;
}
.wp-block-woocommerce-checkout .wc-block-components-shipping-rates-control__package .wc-block-components-radio-control .wc-block-components-radio-control__input {
    display: none;
}
.wc-block-components-radio-control__option {
    padding-left: 16px;
}
.wc-block-components-form .wc-block-components-text-input label, .wc-block-components-text-input label {
    font-size: 14px;
}
.wc-block-checkout__payment-method .wc-block-components-radio-control.disable-radio-control .wc-block-components-radio-control__option {
    padding-bottom: 0;
    font-weight: 600;
}
.wc-block-components-radio-control-accordion-content {
    color: #fff;
}
.wp-block-woocommerce-checkout-terms-block .wc-block-components-checkbox__label {
    font-size: 12px;
    line-height: 14px;
    color: #919191;
}
.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-product-name {
    font-size: 12px;
    line-height: 14px;
    font-weight: 600;
}
.wc-block-components-product-price .wc-block-components-formatted-money-amount {
    font-weight: 600;
    font-size: 12px;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
    font-size: 11px;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value .wc-block-components-formatted-money-amount {
    color: #FF5757;
    font-weight: 700;
}
.wp-block-woocommerce-checkout-order-summary-totals-block .wc-block-components-totals-wrapper .wc-block-components-formatted-money-amount {
    font-weight: 600;
}
.samo-desc {
    display: none;
}
.woocommerce-order-received .woocommerce-order .order-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.woocommerce ul.order_details li {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.woocommerce-order-received .woocommerce-order-details {
    display: none;
}
.woocommerce-order-received .woocommerce-customer-details {
    display: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul a {
    color: #242424;
    font-weight: 600;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    margin-bottom: 10px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    color: #5FB846;
    font-weight: 600;
}
.woocommerce-account .addresses .title .edit {
    font-size: 12px;
    color:#5FB846;
    position: absolute;
    left: 0;
    bottom: 0;
}
.woocommerce-Address {
    position: relative;
}
address {
    font-style: normal;
}
.woocommerce-edit-address form .form-row {
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: none;
}
#shipping_country_field {
    display: none;
}
.woocommerce-MyAccount-content {
    max-width: 550px;
    margin-right: auto;
    float: left!important;
}
.woocommerce-MyAccount-content p {
    margin-top: 0;
}
.woocommerce-MyAccount-content h2 {
    font-size: 18px;
    margin-top: 0;
}
.woocommerce-MyAccount-navigation-link--downloads {
    display: none;
}
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button, .woocommerce table.my_account_orders .button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button {
    font-weight: 700;
    font-size: 12px;
    line-height: 106%;
    text-align: center;
    border-radius: 10px;
    padding: 12px;
    border: 2px solid #5FB846;
    background: #5FB846;
    color: #fff;
    margin-top: 10px;
}
.woocommerce table.my_account_orders .button {
    margin-top: 0;
}
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover, .woocommerce table.my_account_orders .button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:hover {
    background: transparent;
    color: #5FB846;
}
.woocommerce-account form .form-row {
    flex-direction: column;
    gap: 0;
}
.woocommerce-account fieldset {
    border: none;
    padding: 0;
    margin: 20px 0;
}
.woocommerce-account fieldset legend {
    font-size: 20px;
    font-weight: 600;
}
.woocommerce form .password-input, .woocommerce-page form .password-input {
    width: 100%;
}
#account_display_name_description {
    display: none;
}
.woocommerce form .form-row .input-text:focus, .woocommerce form .form-row select:focus {
    box-shadow: none;
    outline: none;
}
.woocommerce-orders .woocommerce-MyAccount-content  {
    max-width: none;
}
.woocommerce table.shop_table tbody th a, .woocommerce table.shop_table tfoot td a, .woocommerce table.shop_table tfoot th a {
    color: #5FB846;
}

.woocommerce-orders-table__cell .woocommerce-Price-amount {
    font-weight: 600;
}
.order-status-list, .order-products-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.order-products-list li {
    display: flex;
    align-items: center;
    position: relative;
}
.order-products-list li .product-thumb {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.order-products-list li .product-name {
    font-size: 14px;
    font-weight: 600;
    color: #0a0b0e;
}
.order-products-list li .product-qty {
    font-size: 12px;

}
.order-products-list li .product-price {
    position: absolute;
    right: 0;
    bottom: -10px;

}
.order-products-list li .woocommerce-Price-amount.amount {
    color: #0a0b0e;
    font-weight: 700;
    margin-left: 5px;
}
.order-summary {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 20px;
}
.order-summary .woocommerce-Price-amount {
    font-size: 20px;
    font-weight: 700;
    color: #FF5757;
}

.woocommerce-MyAccount-content p.status-note {
    font-size: 14px;
    padding-left: 30px;
    max-width: 300px;
    color: #242424;
    margin-bottom: 10px;
}
.order-status-list {
    margin-top: 10px;
}
.order-status-list li {
    position: relative;
    padding-left: 30px;
    font-weight: 700;
    font-size: 17px;
    line-height: 106%;
    letter-spacing: 0%;color: #9F9F9F;
    margin-bottom: 10px;
}
.order-status-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    border-radius: 100%;
    border: 1.5px solid #9F9F9F;
}
.order-status-list li:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    border-radius: 100%;
    border: 1.5px solid #DFE7B3;
    background: #DFE7B3;
    opacity: 0;
}
.order-status-list li.active:after {
    opacity: 1;
}
.order-status-list li.active, .order-status-list li.completed {
    color: #242424;
}
.woocommerce ul.order_details {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pickup-address p {
    margin-bottom: 10px;
}
.pickup-address a {
    color: #9F9F9F;
    font-size: 12px;
    top: -5px;
    position: relative;
}
.delivery-address p {
    margin-bottom: 10px;
}
.delivery-address a {
    color: #9F9F9F;
    font-size: 12px;
    top: -5px;
    position: relative;
}
.btn-black {
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 106%;
    text-align: center;
    color: #fff!important;
    background: #242424;
    width: 100%;
    border-radius: 10px;
    border: 1.5px solid  #242424;
    margin-top: 20px;
}
.btn-black:hover {
    color: #242424!important;
}
.woocommerce-form-login__submit.woocommerce-button {
    display: flex;
    padding: 12px;
    align-items: center;
    justify-content: center;
    font-weight: 500!important;
    font-size: 16px!important;
    line-height: 106%!important;
    text-align: center;
    color: #fff;
    background: #5FB846;
    border: 1.5px solid #5FB846;
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
    transition: all 0.2s;
}
.woocommerce-form-login__submit.woocommerce-button:hover {
    color: #5FB846;
    background: transparent;
}
.woocommerce-form-login__rememberme {
    display: none!important;
}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    padding: 0;
    border: none;
}
.custom-register-form p {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.custom-register-form {
    max-width: 434px;
}
.custom-register-form .btn-green {
    padding: 12px;
    font-weight: 700;
    font-size: 16px;
    line-height: 106%;
    letter-spacing: 0%;
    text-align: center;
    border-radius: 10px;
}
.out-of-stock-btn {
    height: 41px;
    pointer-events: none;
    opacity: 0.7;
}
.wc-empty-cart-message {
    display: none;
}
.empty-cart-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.burger {
    display: none;
}

@media screen and (max-width: 850px) {
    .site-header__search form input {
        min-width: 200px;
    }
    .site-header__logo img {
        max-width: 80px;
    }
    .site-header__contacts a:first-child {
        font-size: 13px;
    }
    .site-header__buttons a span {
        font-size: 9px;
    }
    .site-header__buttons {
        gap: 10px;
    }
    .site-header__menu a {
        font-size: 12px;
    }
    .site-header__contacts a:last-child {
        font-size: 11px;
    }
    .section-top-category .swiper-slide {
        width: 100px;
    }
    .section-main-category__wrapper, .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
    .product-page__row_item span {
        font-size: 12px;
    }
    .wc-block-components-sidebar-layout .wc-block-components-main {
        width: 100%;
        padding: 0;
    }
    .wc-block-components-sidebar {
        width: 100%;
        padding: 0;
        position: relative!important;
        top: auto;
        margin-bottom: 60px;
    }
    .section-main-category__item {
        position: relative;
        padding: 0;
        background: #F6F6F6;
        border-radius: 20px;
        min-height: 129px;
    }
    .withlogo-row {
        width: 100%;
    }
    .withlogo-row input {
        width: 100%;
    }
}
.site-header__logo_image {
    display: flex;
    align-items: center;
}
@media screen and (max-width: 500px) {
    .site-header__menu {
        display: none;
    }
    .site-header__catalog, .site-header__search {
        display: none;
    }
    .site-header__contacts {
        display: none;
    }
    .burger {
        display: block;
        width: 30px;
        height: 30px;
        background: url("./../images/burger.svg") no-repeat center center;
        background-size: contain;
    }
    .site-header__logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .section-main-category__wrapper, .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
    .section-main-category__title {
        font-size: 14px;
    }
    .main-banner__image img {
        object-fit: cover;
        object-position: left;
    }
    .site-footer__wrapper {
        padding-left: 0;
        padding-right: 0;
    }
    .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
        width: 100%;
        margin-bottom: 0;
    }
    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 12px;
    }
    .woocommerce ul.products li.product .product-obem {
        font-size: 16px;
    }
    .section-categories__list {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 15px;
    }
    .woocommerce ul.products li.product .price ins, .woocommerce ul.products li.product .price {
        font-size: 17px;
    }
    .product-page__content, .product-page__image {
        grid-column: span 7 / auto;
    }
    .product-page__row {
        margin-bottom: 20px;
    }
    .site-main h1.product-title {
        font-size: 20px;
    }
    .breadcrumbs {
        flex-wrap: wrap;
        gap: 10px;
    }
    .product-price__wrapper {
        max-width: 100%;
    }
    .woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before {
        display: none;
    }
    .woocommerce #content table.cart .product-thumbnail, .woocommerce table.cart .product-thumbnail, .woocommerce-page #content table.cart .product-thumbnail, .woocommerce-page table.cart .product-thumbnail {
        display: flex;
    }
    .woocommerce table.shop_table_responsive tr, .woocommerce-page table.shop_table_responsive tr {
        display: flex;
    }
    .quantity-wrapper {
        left: 0;
        bottom: 13px;
    }
    .woocommerce-cart table.cart img {
        width: 50px;
        height: 50px;
    }
    .woocommerce-page table.shop_table_responsive tr td.product-name {
        padding-left: 0!important;
        font-size: 11px;
        line-height: 13px;
        text-align: left!important;
    }
    .checkout-button .btn {
        width: 100%;
    }
    .checkout-button {
        max-width: 100%;
    }
    .woocommerce-cart .info-cart {
        font-size: 12px;
    }
    .woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
        background: transparent;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation {
        margin-bottom: 30px;
    }
    .site-main h1 {
        margin-top: 25px;
    }
    .woocommerce-account table.shop_table_responsive tr, .woocommerce-account table.shop_table_responsive tr {
        flex-wrap: wrap;
        border-bottom: 1px solid #d1d1d1;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .woocommerce-account table.shop_table_responsive tr td, .woocommerce-account table.shop_table_responsive tr td {
        border: none;
        width: 50%;
    }
    .woocommerce-account table.shop_table_responsive tr td:nth-child(2n), .woocommerce-accountpage table.shop_table_responsive tr td:nth-child(2n) {
        text-align: left!important;
    }
    .woocommerce-orders-table__cell-order-total {
        display: flex!important;
        flex-direction: column;
    }
    address {
        padding-bottom: 30px;
    }
    .woocommerce form .form-row label {
        font-size: 12px;
        line-height: 14px;
        margin-bottom: 7px;
    }
    .woocommerce ul.products li.product .price {
        align-items: flex-start;
    }
    .woocommerce-cart-form__cart-item.cart_item {
        padding-bottom: 40px;
    }
    .woocommerce-cart .product-thumbnail a {
        height: 56px;
    }
    .order-products-list li .product-name {
        display: block;
        margin-bottom: 10px;
    }
    .order-products-list li .product-price {
        margin-bottom: 18px;
    }
    .order-products-list li {
        margin-bottom: 20px;
    }
    .woocommerce-account .order-summary {
        flex-direction: column;
        align-items: flex-end;
    }
    .woocommerce ul.products li.product a img {
        height: 120px;
    }
    .custom-quantity {
        width: 68px;
    }
    .custom-quantity input {
        width: 48px!important;
        text-align: center;
    }
    .section-main-category__item {
        position: relative;
        padding: 0;
        background: #F6F6F6;
        border-radius: 20px;
        min-height: 129px;
    }
    .withlogo-row {
        width: 100%;
    }
    .withlogo-row input {
        width: 100%;
    }
}


.overlay-menu {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background: rgba(217, 217, 217, 0.6);
}

.mobile-menu {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    position: fixed;
    left: 0;
    top: 0;
    transform: translateX(-110%);
    width: 100%;
    height: 100%;
    z-index: 100;
    background: #fff;
    padding: 20px;
}
.mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 20px;
    position: relative;
}
.mobile-menu__head span {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #7B7B7B;
}
.mobile-menu__head .close-menu {
    width: 25px;
    height: 25px;
    background: url("./../images/close.svg") no-repeat center center;
    background-size: contain;
}
.mobile-menu__language {
    position: absolute;
    left: 60px;
    top: 2px;
}
.mobile-menu__navigation {
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    margin: 0;
    margin-bottom: 20px;
    list-style: none;
}
.mobile-menu__navigation li:not(:last-child) {
    margin-bottom: 15px;
}
.mobile-menu__navigation a {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #0a0b0e;
}
.mobile-menu .btn {
    justify-content: center;
}
.mobile-menu__login {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mobile-menu__login .btn {
    width: 100%;
}
.mobile-menu__login p {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    display: block;
    margin: 10px 0;
}
.mobile-menu__login a:not(.btn) {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    display: block;
    color: #5FB846;
}
.mobile-menu__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}
.mobile-menu__phone {
    font-weight: 700;
    font-size: 21px;
    line-height: 100%;
    color: #5FB846;
    margin-bottom: 10px;
}
.mobile-menu__mail {
    font-weight: 400;
    font-size: 17px;
    line-height: 100%;
    color: #5FB846;
}
.mobile-menu__social span {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #7B7B7B;
    display: block;
    margin-bottom: 10px;
}
.mobile-menu__social ul {
    display: flex;
    align-items: center;
}
.mobile-menu__social ul li {
    margin-right: 10px;
}
.mobile-menu__social ul li a {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgb(46, 94, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
}

.overlay-menu.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}
.mobile-catalog {
    display: flex;
    align-items: center;
    margin-top: 30px;
}
.mobile-catalog img {
    margin-right: 10px;
}
.mobile-catalog span {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #0a0b0e;
}
.mobile-menu-socail ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-menu-socail a {
    color: #9F9F9F;
}
.in-cart {font-size: 12px;font-family: arialn, sans-serif;text-transform: lowercase; display: none; font-style: normal}
.cart-add {cursor: pointer}
