
:root {
    --main-font: "Avenir Next Cyr";
    --main-color: #363636;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: var(--main-font);
    color: var(--main-color);
    font-weight: 400;
    line-height: 1.2;
}

a {
    color: var(--main-color);
    text-decoration: none;
    transition: color .3s ease;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.main {
    flex-grow: 1;
    padding: 35px 0px;
}

.container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 15px;
}

.mobile-menu {
    display: none;
}

.header {
    height: 100px;
    border-bottom: #F3F3F3 1px solid;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header-logo {
    display: block;
    width: 240px;
}

.header-logo img {
    display: block;
    width: 100%;
}

.header-nav {
    display: flex;
}

.header-nav a {
    display: block;
    text-decoration: none;
    padding: 12.5px 17px;
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
    /* identical to box height */
    color: #000000;
    border-radius: 8px;
}

.header-nav a:hover {
    color: #91C43D;
    background: rgba(145, 196, 61, 0.1);
}

.header-nav > div {
    position: relative;
}

.header-nav .submenu {
    display: none;
    position: absolute;
    z-index: 10;
    padding: 15px 35px;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.08);
}

.header-nav .submenu a {

}

.header-nav > div:hover .submenu {
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.header-cart {
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #91C43D;
    border-radius: 16px;
    flex-shrink: 0;
    position: relative;
}

.header-cart > div span {
    position: absolute;
    display: inline-flex;
    bottom: -5px;
    right: -7px;
    color: #ffffff;
    background:#C43D3D;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.header-lk {
    display: flex;
    align-items: center;
    padding: 12.5px 17px;
    background: rgba(145, 196, 61, 0.1);
    border-radius: 12px;
}

.header-lk span:nth-child(2) {
    color: #91C43D;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    margin: 0 15px 0 10px;
}

.mobile-menu__open {
    display: none;
}

.footer {
    background: #F9FAFB;
    color: #565A69;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    padding: 50px 0px;
}

.footer-col {
    max-width: 325px;
}

.footer-col__title {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 15px;
}

.footer-about {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
}

.footer-col ul {
    list-style-type: none;
}

.footer-col ul li {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    margin-bottom: 5px;
}

.footer-col ul li a {

}

.footer-col ul li a:hover {
    color: #91C43D;
}


.footer-bottom {
    padding: 20px 0px;
    border-top: #D8DDE6 1px solid;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    font-size: 10px;
    line-height: 140%;
    /* identical to box height, or 14px */
    color: #565A69;
}


.main-slider {
    position: relative;
}

.main-slider .swiper-slide {
    border-radius: 32px;
    overflow: hidden;
}

.main-slider .swiper-slide img {
    display: block;
    width: 100%;
}

.main-slider .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: -25px;
}

.main-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: #ffffff;
    opacity: 1;
}

.main-slider .swiper-pagination-bullet-active {
    background: #91C43D;
}

.main-text {
    padding-top: 30px;
}

.main-text h1 {
    font-size: 24px;
    margin: 0 0 15px;
}

.main-text h3 {
    font-size: 18px;
    margin: 0 0 15px;
}

.main-text p {
    margin: 0 0 15px;
    font-size: 14px;
}


.main-categories {
    margin: 60px 0px;
}

.main-categories__title {
    font-weight: 700;
    color: #363636;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 40px;
}

.products-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 60px;
}

.product-item {
    border-radius: 16px;
    border: 1px solid rgba(243, 243, 247, 0.75);
    background: #FFF;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.02);
    padding: 30px;
    flex-shrink: 0;
    width: calc(25% - 15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.product-item__image {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.product-item__image img {
    display: block;
    width: 100%;
}

.product-item__name {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-item__name a {
    color: #363636;
    font-size: 20px;
    font-weight: 500;
}

.product-item__info {
    color: rgba(54, 54, 54, 0.50);
    font-size: 13px;
    line-height: 140%;
    height: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-item__head {
    margin-bottom: 25px;
}

.product-item__bottom {
    width: 100%;
}

.product-item__buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.product-item__price {
    color: #363636;
    font-size: 20px;
    margin-left: 15px;
    display: inline-block;
}

.product-item__fav {
    border: none;
    outline: none;
    border-radius: 16px;
    background: rgba(196, 61, 61, 0.10);
    display: flex;
    padding: 10px 13px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.product-item__fav:hover {
    background: rgba(196, 61, 61, 0.40);
}

.product-item_add {
    border: none;
    outline: none;
    border-radius: 16px;
    background: rgba(145, 196, 61, 0.10);
    display: flex;
    padding: 10px 13px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-right: 5px;
}

.product-item_add:hover {
    background: rgba(145, 196, 61, 0.40);
}


.page-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.page-404__img {
    margin: 60px 0px;
}

.page-404__img img {
    display: block;
    width: 100%;
    max-width: 700px;
}

.page-404__img.empty-cart {
    max-width: 230px;
}

.page-404__title h1 {
    text-align: center;
    color: #363636;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-404__text {
    text-align: center;
    color: #363636;
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 40px;
}

.btn-green__link {
    color: #91C43D;
    font-size: 16px;
    font-weight: 500;
    border-radius: 16px;
    background: rgba(145, 196, 61, 0.10);
    display: flex;
    padding: 12px 25px;
    justify-content: center;
    align-items: center;
}

.btn-green__link:hover {
    background: rgba(145, 196, 61, 0.40);
}

.page-404__link {
    margin-bottom: 60px;
}

.header-cart__popup {
    background: #FFF;
    padding: 35px 30px;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.08);
    position: absolute;
    top: 70px;
    z-index: 100;
    width: 100%;
    min-width: 550px;
    display: none;
}

.header-cart__popup-close {
    display: block;
    border: none;
    background: none;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.header-lk__popup {
    background: #FFF;
    padding: 35px 30px;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.08);
    position: absolute;
    top: 70px;
    z-index: 100;
    width: 100%;
    min-width: 300px;
    display: none;
    right: 55px;
}

.header-lk__popup-close {
    display: block;
    border: none;
    background: none;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.header-lk__list {
    display: flex;
    flex-direction: column;
}

.header-lk__list a {
    font-size: 16px;
    margin-bottom: 15px;
    transition: color .3s ease;
}

.header-lk__list a:hover {
    color: #91C43D;
}

.header-lk__list a:last-of-type {
    margin-bottom: 0;
}

.login-page {
    background-image: url("../img/pizza-bg.jpg");

    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
}

.login-wrapper {
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-block {
    border-radius: 32px;
    border: 1px solid rgba(243, 243, 247, 0.75);
    background: #FFF;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.02);
    width: 565px;
    min-height: 440px;
    flex-shrink: 0;
    padding: 70px;
}

.login-block__title {
    display: flex;
    align-items: flex-end;
}

.login-block__title h1 {
    font-size: 32px;
    line-height: 32px;
    font-style: normal;
    font-weight: 700;
    color: #363636;
}

.login-block__title a {
    color: #91C43D;
    font-size: 20px;
    line-height: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-left: 20px;
}

.login-block form {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
}

.login-block form .form-group {
    margin-bottom: 20px;
}

.login-block form .form-group input {
    border-radius: 12px;
    border: 1px solid #E4E7F2;
    background: #F7F8FA;
    width: 100%;
    padding: 15px 10px 15px 25px;
    outline: none;
    font-family: inherit;
    color: #A0A7B5;
    font-size: 16px;
    min-height: 58px;
}

.form-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.form-buttons .btn-primary {
    display: flex;
    border: none;
    border-radius: 16px;
    background: #91C43D;
    height: 58px;
    width: 100%;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-family: inherit;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    cursor: pointer;
}

.form-buttons a {
    display: flex;
    height: 58px;
    width: 100%;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-family: inherit;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    color: #91C43D;
    border-radius: 16px;
    background: rgba(145, 196, 61, 0.10);
}

.login-block .alert-danger {
    padding: 25px;
    border-radius: 16px;
    margin-top: 25px;
    background: rgba(196, 61, 61, 0.10);
    color: rgb(196, 61, 61);
}

.related-products {
    margin-bottom: 30px;
}

.related-products__title {
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    color: #363636;
    margin-bottom: 40px;
}

.product-detail__wrapper {
    display: flex;
    justify-content: center;
}

.product-detail {
    margin-bottom: 60px;
}

.product-detail__img {

}

.product-detail__img a {
    display: block;
    width: 445px;
}

.product-detail__img a img {
    display: block;
    width: 100%;
    height: auto;
}

.product-detail__info {
    margin-left: 80px;
    width: 475px;
}

.product-detail__info h1 {
    color: #363636;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-detail__description {
    color: rgba(54, 54, 54, 0.50);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 20px;
}

.options-title {
    font-weight: 700;
    line-height: 140%;
    font-size: 18px;
    font-style: normal;
    color: #363636;
    margin-bottom: 20px;
}

.options-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.options-item {
    border-radius: 12px;
    border: 1px solid #EDEDED;
    padding: 15px 0px;
    min-width: 225px;
    margin-bottom: 20px;
    max-height: 50px;
    position: relative;
}

.options-item.wide {
    width: 100%;
}

.options-item__label {
    color: #363636;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    background: #ffffff;
    padding: 0px 8px;
    position: absolute;
    top: 0;
    left: 30px;
    transform: translateY(-50%);
}

.options-item .nice-select {
    border: none !important;
    font-size: 16px;
    height: 20px;
    line-height: 20px;
    padding-left: 25px;
    padding-right: 25px;
    font-weight: 500;
}

.options-item .highlight {
    color: #91C43D;
}

.product-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    display: flex;
    align-items: center;
}

#product-price {
    color: #363636;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.product-qty {
    display: flex;
    align-items: center;
}

.product-qty span {
    display: flex;
    width: 36px;
    height: 36px;
    padding: 15px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: #F3F3F7;
    cursor: pointer;
    color: #363636;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    gap: 10px;
}

.product-qty input {
    border: none;
    outline: none;
    font-family: inherit;
    color: #363636;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    background: transparent;
}

.product-btns {
    display: flex;
    flex-direction: column;
}

.product-btns .btn-add {
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 16px;
    background: #91C43D;
    display: flex;
    width: 170px;
    height: 50px;
    padding: 12px 25px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
}

.product-buttons .product-item__fav {
    min-height: 50px;
    min-width: 50px;
}

.product-tabs {
    margin-top: 30px;
}

.product-tabs__head {
    border-radius: 36px;
    background: #F3F3F7;
    display: flex;
    padding: 3px 4px;
    gap: 6px;
    align-items: center;
    justify-content: space-between;
    padding: 4px;
}

.product-tabs__head span {
    display: flex;
    padding: 8px 24px;
    align-items: flex-start;
    gap: 10px;
    border-radius: 30px;
    color: #363636;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    cursor: pointer;
}

.product-tabs__head span.active {
    background: #FFF;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.10);
}

.product-tabs__body {

}

.product-tabs__body > div {
    display: none;
    padding: 25px 0px;
}

.product-tabs__body div.active {
    display: block;
}

.product-description__main .container * {
    font-size: 16px !important;
    font-family: inherit !important;
    line-height: 140%;
}

.related-slider {
    position: relative;
}

.related-slider .swiper-button-next {
    background-image: url("../svg/next-btn.svg");
    background-color: rgba(145, 196, 61, 0.10);
    border-radius: 25px;
    height: 45px;
    width: 45px;
}

.related-slider .swiper-button-prev {
    background-image: url("../svg/prev-btn.svg");
    background-color: rgba(145, 196, 61, 0.10);
    border-radius: 25px;
    height: 45px;
    width: 45px;
}

.related-slider .swiper-button-next:hover, .related-slider .swiper-button-prev:hover {
    background-color: rgba(145, 196, 61, 0.40);
}

.page-title {
    margin-bottom: 25px;
}

.site-map {
    margin-left: 25px;
}

.site-map ul {
    margin-left: 25px;
    margin-bottom: 5px;
    margin-top: 5px;
}

.row {
    /*display: flex;
    width: 100%;
    min-width: 100%;*/
}

.col-sm-6 {
    width: 50%;
}

.cart-inner {
    padding-top: 35px;
    position: relative;
}



.cart-block {
    max-width: 685px;
    width: 100%;
    margin: 0 auto;
}

.cart-block .login-block__title {
    margin-bottom: 50px;
}

.cart-block__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    padding-top: 30px;
}

.cart-block__bottom-title {
    color: #363636;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.cart-block__bottom-sum {
    color: #363636;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.cart-block__dop {

}

.cart-block__dop h2 {
    color: #363636;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

.cart-title {
    color: #363636;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 40px;
}

.remove-cart {
    margin-left: 15px;
}


.mini-cart__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.mini-cart__product {
    display: flex;
    align-items: center;
}

.mini-cart__product a:nth-child(1) {
    margin-right: 15px;
}

.mini-cart__product a:nth-child(2) {
    color: #363636;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.mini-cart__buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.mini-cart__price {
    color: #363636;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-right: 40px;
}

.mini-cart__qty {
    display: flex;
    align-items: center;
}

.mini-cart__qty span {
    display: flex;
    width: 36px;
    height: 36px;
    padding: 15px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: #F3F3F7;
    cursor: pointer;
    color: #363636;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    gap: 10px;
}

.mini-cart__qty input {
    border: none;
    outline: none;
    font-family: inherit;
    color: #363636;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    background: transparent;
}

.mini-cart__cost {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    margin-top: 5px;
}

.mini-cart__cost span:nth-child(1) {
    color: #363636;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.mini-cart__cost span:nth-child(2) {
    color: #363636;
    font-size: 24px;
    font-style: normal;
    font-weight: 450;
    line-height: normal;
}

.mini-cart__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mini-cart__btn {
    text-decoration: none;
    outline: none;
    padding: 12px 25px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    border-radius: 16px;
    background: #91C43D;
    width: 229px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-cart__btn.btn-light {
    background: rgba(145, 196, 61, 0.10);
    color: #91C43D;
}

.mini-cart__empty {
    text-align: center;
}

.mini-cart__empty-img img {
    display: inline-block;
    width: 125px;
    margin-bottom: 15px;
}

.mini-cart__empty-title h2 {
    text-align: center;
    color: #363636;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 15px;
}

.mini-cart__empty-text {
    text-align: center;
    color: #363636;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.header-phone {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.header-phone svg {
    margin-right: 5px;
}

.modal {
    display: none;
    border-radius: 16px;
}

.page-information {

}

.page-information h1 {
    margin-bottom: 25px;
}

.page-information p {
    margin: 0 0 15px;
}

.page-information h2, .page-information h3 {
    margin-bottom: 15px;
}

.page-information a {
    text-decoration: underline;
    color: #91C43D;
}

.category-wrapper {
    display: flex;
    gap: 30px;
}

.category-left {
    width: 325px;
    flex-shrink: 0;
}

.category-middle__products {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.category-middle__products .product-item {
    width: calc(32% - 15px);
}

.category-middle {
    width: 100%;
}

.current-categories {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 15px;
}

.current-categories a {
    border-radius: 30px;
    background: #F2F4F8;
    padding: 10px 20px;
    color: #363636;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.current-categories a:hover, .current-categories a.active {
    color: #ffffff;
    background-color: #91C43D;
}


.category-left__info {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(243, 243, 247, 0.75);
    background: #FFF;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.02);
    padding: 30px;
    margin-bottom: 30px;
}

.category-left__info h3 {
    color: #363636;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 15px;
}

.category-left__info p {
    color: rgba(54, 54, 54, 0.50);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin: 0;
}

.category-left__action {
    display: block;
    width: 100%;
    margin-bottom: 30px;
}

.category-left__action img {
    display: block;
    width: 100%;
}

#card-success .modal-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#card-success .modal-inner .infotext {
    text-align: center;
    font-weight: 500;
    padding-top: 25px;
}

#card-success .modal-inner .infotext a {
    text-decoration: underline;
    color: #91C43D;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #ffffff;
}

.cart-product__row {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    justify-content: space-between;
}

.cart-product__name {
    display: flex;
    align-items: center;
    width: 50%;
}

.cart-product__img {
    display: block;
    margin-right: 15px;
}

.cart-product__img img {
    display: block;
    width: 66px;
    height: auto;
}

.cart-product__name-block a {
    color: #363636;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 25.2px */
}

.cart-product__price {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #363636;
    font-size: 18px;
    font-style: normal;
    font-weight: 450;
    line-height: normal;
}

.cart-checkout__btn {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
}

.cart-checkout__btn a {
    border-radius: 16px;
    background: #91C43D;
    display: flex;
    height: 58px;
    padding: 12px 25px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.cart-product__row .product-qty {
    margin: 0;
}

.cart-warning {
    padding: 10px;
    margin-bottom: 35px;
    border-radius: 5px;
    color: #a94442;
    background-color: #f2dede;

    
}

.order-form__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.order-form__row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.order-form__row input[type='text'] {
    border-radius: 12px;
    border: 1px solid #E4E7F2;
    background: #F7F8FA;
    color: #A0A7B5;
    font-family: "Avenir Next Cyr";
    font-size: 16px;
    padding: 15px 10px 15px 25px;
    min-width: 330px;
    outline: none;
}

.reg-form .order-form__row input[type='text'] {
    min-width: 100px;
}

.order-form__row label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.order-form__row label span {
    margin-left: 10px;
    font-size: 16px;
}

.order-form__row input[type="radio"] {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: #E4E7F2 1px solid;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
}

.order-form__row input[type="radio"]:checked {
    border-color: #91C43D;
    background-color: #91C43D;
}

.order-form__row input[type="radio"]:checked:before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: #fff 2px solid;
    position: absolute;
    left: 2px;
    top: 2px;
}

.order-form__comment {
    border-radius: 12px;
    border: 1px solid #EDEDED;
    padding: 15px 0px;
    width: 100%;
    margin-bottom: 20px;
    max-height: 115px;
    position: relative;
    margin-top: 5px;
}

.order-form__comment_label {
    color: #363636;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    background: #ffffff;
    padding: 0px 8px;
    position: absolute;
    top: 0;
    left: 30px;
    transform: translateY(-50%);
}

.order-form__comment textarea {
    width: 100%;
    height: 80px;
    padding: 0px 25px 25px;
    resize: none;
    color: #363636;
    font-family: "Avenir Next Cyr";
    font-size: 16px;
    border: none;
    outline: none;
}

.order-form__row button {
    display: flex;
    border: none;
    border-radius: 16px;
    background: #91C43D;
    height: 58px;
    width: 100%;
    max-width: 300px;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-family: inherit;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    cursor: pointer;
}

.order-policy {
    display: inline-flex;
    align-items: flex-start !important;
}

.order-policy span {
    font-size: 14px !important;
}


@media (max-width: 600px) {

    .order-form__row {
        flex-wrap: wrap;
    }

    .order-form__row button {
        max-width: 100%;
    }

    .mobile-menu__close {
        display: block;
        border: none;
        background: none;
        position: absolute;
        top: 15px;
        right: 15px;
        cursor: pointer;
    }

    .header-phone {
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(145, 196, 61, 0.1);
        border-radius: 12px;
        width: 45px;
        margin-right: 0;
    }

    .header-phone svg {
        margin: 0;
    }

    .header-phone span {
        display: none;
    }

    .mini-cart__empty-title h2 {
        font-size: 18px;
    }

    .header-cart__popup {
        min-width: 320px;
    }

    .mini-cart__row {
        flex-direction: column;
    }

    .mini-cart__bottom {
        flex-wrap: wrap;
        gap: 15px;
        align-items: center;
    }

    .mini-cart__btn {
        width: 100%;
        max-width: 325px;
    }

    .mini-cart__cost {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-lk__popup {
        right: 0;
    }

    .related-slider .swiper-button-next {
        right: -12px;
    }

    .related-slider .swiper-button-prev {
        left: -12px;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-col {
        width: 100%;
        margin-bottom: 15px;
    }

    .header-nav {
        display: none;
    }

    .header-lk {
        min-height: 45px;
        display: none;
    }

    .header-lk span:nth-child(2), .header-lk span:nth-child(3) {
        display: none;
    }

    .header-logo {
        width: 160px;
    }

    .main-slider .swiper-slide {
        border-radius: 10px;
    }

    .main-categories {
        margin: 30px 0px;
    }

    .main-categories__title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .products-row {
        width: 100%;
        overflow-x: scroll;
    }

    .product-item {
        width: calc(80% - 15px);
    }

    .product-detail__wrapper {
        flex-direction: column;
    }

    .product-detail__img {
        width: 100%;
        margin-bottom: 25px;
    }

    .product-detail__img a {
        width: 100%;
    }

    .product-detail__info {
        width: 100%;
        margin: 0;
    }

    .options-row {
        flex-direction: column;
        align-items: flex-start;

    }

    .product-buttons {
        flex-wrap: wrap;
    }

    .product-btns {
        width: 80%;
    }

    .product-price, .product-qty {
        margin-bottom: 25px;
    }

    .product-tabs__head {
        overflow-x: scroll;
    }

    .mobile-menu__open {
        display: flex;
        flex-direction: column;
        width: 25px;
        height: 45px;
        align-items: flex-end;
        justify-content: center;
        gap: 5px;
        margin-left: 10px;
    }

    .mobile-menu__open span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #91C43D;

    }

    .mobile-menu {
        display: block;
        position: fixed;
        width: 100%;
        height: 100vh;
        background-color: #ffffff;
        transform: translateX(-100%);
        transition: transform .3s ease;
        padding: 25px;
        z-index: 100;
    }

    .mobile-menu__inner {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .mobile-menu__logo {
        display: block;
        width: 100%;
        max-width: 220px;
        margin-bottom: 25px;
    }

    .mobile-menu__logo img {
        display: block;
        width: 100%;
        height: auto;
    }

    .mobile-menu.open {
        transform: translateX(0);
    }

    .mobile-menu__list > div {
        margin-bottom: 10px;
    }

    .mobile-menu__list > div a {
        color: #363636;
        font-size: 20px;
        font-weight: 500;
    }

    .mobile-menu__list {
        margin-bottom: 25px;
    }

    .mobile-menu .header-phone span {
        display: inline-block;
        margin-left: 5px;
    }

    .mobile-menu .header-phone {
        width: auto;
        background-color: transparent;
        justify-content: flex-start;
        font-size: 20px;
    }

    .category-wrapper {
        flex-direction: column-reverse;
    }

    .current-categories {
        flex-wrap: wrap;
    }

    .category-middle__products {
        gap: 15px;
    }

    .category-middle__products .product-item {
        width: 100%;
    }

    .cart-product__row {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .cart-product__name {
        width: 100%;
        margin-bottom: 10px;
    }

    .cart-product__price {
        margin-left: 75px;
        margin-right: 25px;
    }

    .login-block {
        width: 100%;
        padding: 15px;
        min-height: auto;
    }

    .form-buttons {
        flex-wrap: wrap;
    }

    .login-wrapper {
        min-height: 50px;
    }

    .reg-form .order-form__row input[type='text'] {
        width: 100%;
    }
}