/* --- Connecting fonts -- */

@font-face {
    font-family: "BebasNeue";
    src: url("../fonts/BebasNeue-Thin.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: "BebasNeue";
    src: url("../fonts/BebasNeue-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: "BebasNeue";
    src: url("../fonts/BebasNeue-Regular.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: "BebasNeue";
    src: url("../fonts/BebasNeue-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: block;
}


@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/*........ specification ........*/

body {
    font-family: "Montserrat", sans-serif;
    color: #000;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    margin: 0;
    padding: 0;
    position: relative;
}

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
    opacity: 0.5;
}

div,
p,
form,
input,
a,
span,
button,
textarea,
ul,
li {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

ul,
li {
    display: block;
}

p {
    margin: 0;
}

.faq .faq-block__answer p {
    margin: 0 0 10px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

a,
a:hover,
a:active,
button,
input {
    text-decoration: none;
    -webkit-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
    -webkit-border-radius: 0;
    border-radius: 0;
}

input,
select {
    -webkit-appearance: none;
}

input,
input:hover,
input:focus,
input:active,
button,
button:hover,
button:focus,
button:active,
textarea,
select {
    outline: none;
}

textarea {
    resize: none;
}

button {
    width: 100%;
    display: block;
    text-align: center;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    margin: 0 auto;
    max-width: 1293px;
    width: 100%;
    padding: 0 20px;
}


body.modal-open {
    overflow: hidden;
}

section .title,
.about-wrap__left h2 {
    font-size: 38px;
    text-transform: uppercase;
    font-weight: 300;
}

.btn-link a {
    padding: 10px;
    border: 1px solid #000;
    text-transform: uppercase;
    font-size: 15px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-transition: color 150ms ease-in-out;
    -o-transition: color 150ms ease-in-out;
    transition: color 150ms ease-in-out;
    color: #fff;
    position: relative;
    display: block;
    z-index: 1;
}

.btn-link a:hover {
    color: #000;
}

.btn-link a:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 101%;
    height: 100%;
    z-index: -1;
    -webkit-transition: width 150ms ease-in-out;
    -o-transition: width 150ms ease-in-out;
    transition: width 150ms ease-in-out;
    background: #000;
}

.btn-link a:hover::after {
    width: 0;
}


/* ================================================
UIkit Grid — minimal styles
   Supports:
   .uk-grid
   .uk-grid-small
   .uk-width-auto
   .uk-width-auto@s
   .uk-width-auto@m
   .uk-width-1-2@s
   .uk-width-1-2@m
   .uk-width-1-3@m
   .uk-width-expand
   .uk-width-expand@s
   .uk-width-expand@m
   .uk-flex-middle
   Breakpoints: @s = 640px, @m = 960px
   ================================================ */

/* --- Base Grid --- */
.uk-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.uk-grid > * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    /* default column gap */
    padding-left: 30px;
}

/* negative margin to compensate padding on parent */
.uk-grid {
    margin-left: -30px;
}

/* --- Grid Small (uk-grid-small) --- */
.uk-grid-small {
    margin-left: -15px;
}

.uk-grid-small > * {
    padding-left: 15px;
}

/* --- Row gap --- */
.uk-grid + .uk-grid,
.uk-grid > .uk-grid-margin {
    margin-top: 30px;
}

.uk-grid-small + .uk-grid-small,
.uk-grid-small > .uk-grid-margin {
    margin-top: 15px;
}

.uk-flex-middle {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.uk-flex-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.uk-flex-right {
    -webkit-box-pack: end;
    -webkit-justify-content: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.uk-text-center {
    text-align: center;
}

.uk-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

/* ================================================
   Widths — mobile first (100% by default)
   ================================================ */

/* all columns full width on mobile */
[class*="uk-width"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

/* --- Base width classes (without breakpoints) --- */

/* uk-width-auto — width based on content */
.uk-width-auto {
    width: auto;
}

/* uk-width-expand — takes up remaining space */
.uk-width-expand {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 1px;
}

/* ================================================
   @s breakpoint = min-width: 640px
   ================================================ */
@media (min-width: 640px) {

    /* uk-width-auto@s — width based on content */
    .uk-width-auto\@s {
        width: auto;
    }

    /* uk-width-1-2@s — half width (50%) */
    .uk-width-1-2\@s {
        width: 50%;
    }

    /* uk-width-expand@s — takes up remaining space */
    .uk-width-expand\@s {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
        min-width: 1px;
    }
}

/* ================================================
   @m breakpoint = min-width: 960px
   ================================================ */
@media (min-width: 960px) {

    /* uk-width-auto@m — width based on content */
    .uk-width-auto\@m {
        width: auto;
    }

    /* uk-width-1-2@m — half width (50%) */
    .uk-width-1-2\@m {
        width: 50%;
    }

    /* uk-width-1-3@m — one third of the row */
    .uk-width-1-3\@m {
        width: -webkit-calc(100% * 1 / 3.001);
        width: calc(100% * 1 / 3.001);
    }

    /* uk-width-expand@m — takes up remaining space */
    .uk-width-expand\@m {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
        min-width: 1px;
    }
}

/* FINISH ===========================================
UIkit Grid — minimal styles */

/* --------- Header --------- */
.admin-bar #main-header {
    margin-top: 32px;
}

.header {
    width: 100%;
    background: #fff;
    top: 0;
    left: 0;
    position: relative;
    z-index: 3;
}

.header-navbar-options {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: right;
    -webkit-justify-content: right;
    -ms-flex-pack: right;
    justify-content: right;
}

.header-navbar-options button {
    display: inline-block;
    width: auto;
}

.header-navbar-options svg,
.switcher-mob-menu svg {
    width: 30px;
    height: 30px;
    color: #000;
}

.switcher-mob-menu .close,
.switcher-mob-menu.active .open {
    display: none;
}

.switcher-mob-menu.active .close {
    display: inline-block;
    color: #a8a8a8;
}

.header-top {
    background: rgba(28, 28, 28, 1);
    padding: 13px 0;
}

.header-center {
    padding: 23px 0;
}

body.home .header {
    border-bottom: none;
}

.navigation__wrap {
    height: 86px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding-bottom: 70px;
}

.navigation__delivery {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 300;
}

.navigation__delivery img {
    margin-right: 10px;
    width: 16px;
    height: 15px;
    -o-object-fit: contain;
    object-fit: contain;
}

.header-logo {
    height: 63px;
    max-width: 190px;
    width: 100%;
}

.header-logo img {
    width: 100%;
    height: 100%;
}

.mobile__logo {
    display: none;
}

.navigation__button {
    max-width: 175px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.navigation__button button {
    width: 45px;
    padding: 0 13px;
    height: 29px;
}

.navigation-cart {
    position: relative;
}

.navigation-cart .navigation-cart__numb {
    color: #000;
    min-width: 22px;
    min-height: 22px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 13px;
    background: rgba(244, 54, 67, 1);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    top: -15px;
    right: -8px;
    z-index: 1;
}

.menu__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
}

.menu__list li > a {
    color: #000;
    font-size: 36px;
    font-weight: 400;
    font-family: "BebasNeue", sans-serif;
    display: block;
    text-transform: uppercase;
    padding: 0 23px;
}

.menu__list li > a:hover {
    color: #d48d04;
}

/* section recommendations */
.section-recommendations {
    padding: 106px 0;
    clear: both;
    overflow: hidden;
}

.recommendations-card {
    position: relative;
}

.recommendations-card .size-woocommerce_thumbnail {
    height: auto;
    max-width: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.swiper-recommendations-slider .btn-link {
    display: none;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #000;
    border: 1px solid #000;
    width: 188px;
    height: 43px;
    margin: 25px auto 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.recommendations-price,
.slider-product-item__price {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 400;
}

.recommendations-price > .text,
.slider-product-item__price > .text {
    color: #000;
    margin-right: 5px;
}

.slider-product-item__price {
    text-align: center;
}

.slider-product-item__image {
    height: 275px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.slider-product-item__image img {
    display: block;
    width: 420px;
    max-width: none;
    height: 420px;
    max-height: none;
    margin-left: auto;
    margin-right: auto;

    -o-object-fit: contain;
    object-fit: contain;
    object-position: center center;

    image-rendering: auto;
    transform: none;
    filter: none;
}

.recommendations-price .woocommerce-Price-amount,
.slider-product-item__price .woocommerce-Price-amount {
    margin-left: 5px;
}

.recommendations-price del .woocommerce-Price-amount bdi,
.slider-product-item__price del .woocommerce-Price-amount bdi {
    text-decoration: line-through;
    color: #73757e;
    font-weight: 300;
    margin: 0 5px;
}

.recommendations-price .current-price,
.slider-product-item__price ins,
.slider-product-item__price .current-price {
    color: #d48d04;
    text-decoration: none;
}

.slider-product-item__price .old-price,
.recommendations-price .old-price {
    color: rgba(163, 163, 163, 1);
    text-decoration: line-through;
    margin-right: 6px;
}

.recommendations-link {
    position: absolute;
    bottom: 0;
    color: #73757e;
    left: 80px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    opacity: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    text-decoration: underline;
}

.recommendations-card:hover .recommendations-link {
    left: 95px;
    opacity: 1;
}

.recommendations-link:hover {
    color: #d48d04;
}

.swiper-custom-arrow {
    position: absolute;
    z-index: 3;
    width: 28px;
    height: 28px;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.swiper-custom-arrow.swiper-button-next {
    right: -23px;
}

.swiper-custom-arrow.swiper-button-next, .swiper-custom-arrow.swiper-button-prev {
    z-index: 1;
}

.swiper-custom-arrow.swiper-button-prev {
    left: -23px;
}

.swiper-custom-arrow.swiper-button-next,
.swiper-custom-arrow.swiper-button-prev {
    color: #000;
}


.swiper-recommendations-slider__wrapper {
    position: relative;
}


.swiper-recommendations-slider .swiper-wrapper {
    padding-bottom: 30px;
}

.swiper-recommendations-slider__wrapper .swiper-button-next,
.swiper-recommendations-slider__wrapper .swiper-button-prev {
    top: 0;
    transform: none;
    opacity: 0;
}


.swiper .swiper-scrollbar {
    background: rgba(249, 247, 247, 1);
}

.swiper .swiper-scrollbar-drag {
    background: rgba(194, 194, 194, 1);
}


.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.section-recommendations .woocommerce-loop-product__title,
.woocommerce-loop-product__title {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-family: "BebasNeue", sans-serif;
    font-size: 29px;
    color: #000;
    font-weight: 600;
}

.section-recommendations .slider-product-item__price,
.recommendations-price {
    margin-top: 10px;
}

.section-recommendations .container {
    padding: 0 20px;
    width: 100%;
}

/* mob menu */
.offcanvas-menu {
    background: rgba(241, 241, 241, 0.73);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    opacity: 0;
}

.offcanvas-menu.active {
    z-index: 2;
    opacity: 1;
}

.offcanvas-menu__block {
    position: relative;
    top: 0;
    left: -100%;
    z-index: 10;
    line-height: 1.2;
    width: 520px;
    height: 100%;
    overflow: hidden;
    background: #fff;
    padding: 30px;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;

}

.offcanvas-menu.active .offcanvas-menu__block {
    left: 0;
}


.offcanvas-menu__block form input {
    font-size: 26px;
    line-height: 2;
    -webkit-border-radius: 0;
    border-radius: 0;
    color: #707070;
    width: 100%;
    padding: 0 23px 0 0;
    background: transparent;
    border: none;
}

.offcanvas-menu__block form {
    position: relative;
}

.offcanvas-menu__block form button {
    position: absolute;
    right: 0;
    z-index: 2;
    cursor: pointer;
    width: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.offcanvas-menu__block > span {
    color: #aaa;
    opacity: 0;
}

.offcanvas-menu__block > span.active {
    opacity: 1;
}

input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    display: none;
}

.mob-menu__list {
    display: none;
}

.mob-menu__list li a {
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 2;
    color: #282828;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.mob-menu__list .icon-menu-item {
    height: 40px;
    width: 40px;
    display: inline-block;
}

.mob-menu__list .icon-menu-item img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.mob-menu__list a[object="product_cat"] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.mob-menu__list li #modalCart {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/* burger */
.open-menu {
    display: none;
    cursor: pointer;
    padding: 0;
    text-align: center;
    margin: auto;
    width: 27px;
    height: 27px;
}

.open-menu div {
    width: 23px;
    height: 1px;
    background-color: #666;
    margin: 6px 0;
    -webkit-transition: opacity 0.2s,
    -webkit-transform 0.2s;
    transition: opacity 0.2s,
    -webkit-transform 0.2s;
    -o-transition: opacity 0.2s,
    -o-transform 0.2s;
    -o-transition: transform 0.2s,
    opacity 0.2s;
    transition: transform 0.2s,
    opacity 0.2s;
    transition: transform 0.2s,
    opacity 0.2s,
    -webkit-transform 0.2s;
}

.open-menu div:nth-child(1) {
    -webkit-transform: translateY(0) rotate(0);
    -ms-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
}

.open-menu div:nth-child(2) {
    opacity: 1;
}

.open-menu div:nth-child(3) {
    -webkit-transform: translateY(0) rotate(0);
    -ms-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
}

.open-menu.active div:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}

.open-menu.active div:nth-child(2) {
    opacity: 0;
}

.open-menu.active div:nth-child(3) {
    -webkit-transform: translateY(-6px) rotate(-45deg);
    -ms-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg);
}

/* Modal cart */
.modal-cart {
    background: rgba(241, 241, 241, 0.73);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    opacity: 0;
}

.modal-cart.active {
    z-index: 100;
    opacity: 1;
}

.modal-cart__block {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 10;
    line-height: 1.2;
    width: 520px;
    height: 100%;
    overflow: hidden;
    /* overflow-x: hidden;
    overflow-y: scroll; */
    background: #fff;
    padding: 30px;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.modal-cart.active .modal-cart__block {
    right: 0;
}

.modal-cart__close {
    text-align: end;
    font-size: 16px;
    /*margin-bottom: 30px;*/
    color: #000;
}

.woocommerce-mini-cart {
    border: 1px solid #D9D9D9FF;
    border-left: none;
    border-right: none;
    height: 100%;
    overflow-y: auto;
}

.cart-product::-webkit-scrollbar {
    width: 0;
}

.woocommerce-mini-cart-item {
    padding: 20px 8px 20px 0 !important;
    gap: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    position: relative;
}

.woocommerce-mini-cart-item .cart-product__info {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.cart-product > li:not(:last-child) {
    border-bottom: 1px solid #D9D9D9FF;
}

.cart-product > li > a {
    width: 60px;
    height: 60px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.cart-product > li > a img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}


.woocommerce-mini-cart-item .cart-product__info > a {
    font-size: 24px;
    line-height: 1.2;
    text-transform: uppercase;
    display: block;
    margin-bottom: 3px;
    color: #000;
    font-weight: 700 !important;
    font-family: "BebasNeue", sans-serif;
}

.woocommerce-mini-cart-item .cart-product__info > ul li {
    font-size: 15px;
    margin-bottom: 7px;
}

.woocommerce-mini-cart-item .nm-cart-panel-quantity-pricing {
    margin-top: 20px;
}

.cart-product__info .variations li,
.woocommerce-checkout-review-order-table .variations li {
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
}

.cart-product__wrap,
.cart-product__numb,
.cart-product__numb .quantity {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.cart-product__wrap {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cart-product__wrap > span {
    color: #000;
    font-size: 16px;
    display: block;
}

.product-quantity-mini .product-quantity .product-quantity__btn,
.product-quantity-mini span {
    color: #a5a5a5;
    font-size: 16px;
    display: block;
}

.woocommerce-mini-cart-item .product-quantity,
.woocommerce-cart-form__cart-item .product-quantity {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}


.cart-product__numb button {
    font-size: 10px;
}

.cart-product__numb span {
    margin-right: 10px;
}

.cart-product__numb input,
.product-quantity-mini .product-quantity input[type="number"] {
    width: 28px;
    text-align: center;
    font-size: 16px;
    border: none;
    margin: 0 0 4px 0;
}

.modal-cart__sum {
    font-size: 16px;
    border-bottom: 1px solid #D9D9D9FF;
    padding: 20px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: auto;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 600;
}

.modal-cart__checkout {
    margin-top: 20px;
    display: block;
    padding: 12px 0;
    background: #000;
    text-align: center;
    color: #fff;
    font-size: 21px;
    font-weight: 600;
}

.modal-cart__btn {
    display: block;
    margin: 20px auto 0;
    color: #000;
    font-size: 13px;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.cart-product__delete {
    position: absolute;
    right: 0;
    top: 10px;
}

.cart-product__delete svg {
    fill: #3f3e3e;
}

.cart-product__delete:hover svg {
    fill: #000;
}

.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
    float: none;
    margin-left: 0;
    width: 100%;
}

.woocommerce .star-rating {
    display: none;
}

.modal-cart__block .widget_shopping_cart_content {
    height: -webkit-calc(100% - 37px);
    height: calc(100% - 37px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.modal-cart__block ul.product_list_widget li::after,
.modal-cart__block ul.product_list_widget li::before {
    content: none !important;
}

.modal-cart__block .icon-delete {
    background: url("../img/icon-delete.svg") no-repeat center;
    height: 15px;
    width: 15px;
    display: block;
}

.modal-cart__block a.remove {
    height: 15px !important;
    width: 15px !important;
}

.modal-cart__block ul.variations > li {
    margin: 0 !important;
}

.woo-loop__label-cat-spacial {
    max-height: 35px;
    height: 100%;
    width: auto;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.woo-loop__label-cat-spacial img {
    height: 100%;
    width: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

.product-quantity-mini {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.woocommerce-mini-cart-item .product-quantity-mini .product-quantity__btn {
    border: none;
    height: auto;
    width: auto;
    font-size: 10px;
}

.woocommerce-mini-cart-item .product-number {
    margin-bottom: 0;
}

.woocommerce-mini-cart-item .product-quantity-mini input[type="number"] {
    height: auto;
    font-weight: 500;
}

.woocommerce-mini-cart-item .product-number span {
    margin-right: 0;
}

.woocommerce-mini-cart-item .nm-cart-panel-item-price {
    font-size: 16px;
    font-weight: 500;
}

.woo-mini-cart__bottom-options-order {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    margin-top: 20px;
}

.woo-mini-cart__bottom-options-order img {
    max-height: 30px;
    width: auto;
}

.woo-mini-cart__bottom-options-order .woo-mini-cart__order-item {
    background-color: rgba(242, 242, 242, 1);
    color: rgba(44, 44, 44, 1);
    font-size: 10px;
    padding: 5px 13px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}


/* Chrome, Safari, Edge, Opera */
.modal-cart__block input::-webkit-outer-spin-button,
.modal-cart__block input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

.woocommerce .modal-cart__block.update:before {
    content: "" !important;
    background: rgba(255, 255, 255, 0.91);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.woocommerce .modal-cart__block.update:after {
    content: " ";
    position: absolute;
    top: 50%;
    right: 50%;
    width: 12px;
    height: 12px;
    margin: -6px -6px 0 0;
    opacity: 1;
    background: #d48d04;
    -webkit-animation: dotFade 0.8s infinite;
    animation: dotFade 0.8s infinite;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    z-index: 2;
}

/* section Footer */


.footer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}


.footer-navigation {
    background-color: #000;
    padding: 64px 0 50px;
}


.footer-navigation__logo {
    width: 210px;
}

.footer-navigation__logo img {
    height: 100%;
    width: 100%;
}

.footer-navigation__menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.footer .footer-block-title,
.footer .footer-block-title a {
    color: #fff;
    font-size: 20px;
    margin-bottom: 16px;
    line-height: 20px;
    text-transform: uppercase;
    font-family: "BebasNeue", sans-serif;
    font-weight: 700;
}

.footer-navigation__menu li a {
    font-size: 12px;
    padding: 5px 0;
    color: #8c8c8c;
    line-height: 27px;
}

.footer-navigation__menu li a:hover,
.footer .footer-block-title a:hover,
.footer-block__address a:hover {
    color: #d48d04;
}

.footer {
    background-color: #000;
}

.footer-pay {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;

    -moz-box-pack: center;
    -ms-flex-pack: center;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;

    gap: 24px;
    background: #000;
    position: relative;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-pay-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
}

.footer-payment-system {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 200px;
}

.footer-socials svg {
    width: 24px;
    height: 24px;
}

.footer-advantages {
    background: #000;
    border-bottom: 1px solid #434343;
    padding: 25px 0;
}

.footer-advantages__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 4 ];
    grid-template-columns: repeat(4, 1fr);
}

.footer-advantages__title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.footer-advantages__card {
    text-align: center;
}

.footer-advantages__icon i {
    font-size: 50px;
    color: #fff;
    margin-bottom: 7px;
}

.footer-bottom {
    padding: 30px 0 30px;
    background: #000;
}

.footer-bottom__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.footer-bottom__link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.footer-bottom__text {
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    font-weight: lighter;
}

.footer-bottom__link a img {
    width: 24px;
}


.footer .plus,
.footer .minus {
    display: none;
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}

.footer .footer-navigation__nav svg {
    width: 24px;
    height: 24px;
}

.footer .footer-navigation__nav svg path {
    /* stroke: #fff; */
}

/* WooCommerce Styles */
.woocommerce-breadcrumb {
    padding: 20px 0;
    margin: 25px 0 !important;
}

.woocommerce-breadcrumb a,
.woocommerce-breadcrumb span {
    color: #73757e;
    font-size: 18px;
    font-weight: 500;
}

.woocommerce-breadcrumb span {
    color: #111;
}

.woocommerce-breadcrumb span:not(:last-child) {
    margin: 0 5px;
}

.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
    float: none;
}

.clear {
    clear: both;
}

.no-results h1 {
    font-size: 16px;
    line-height: 1.4;
    color: #282828;
    font-weight: 400;
}

.nm_widget_color_filter .count {
    display: none;
}

.widget_layered_nav ul li.current a:before,
.widget_layered_nav_filters ul li.current a:before {
    display: block;
    position: absolute;
    top: 4px;
    left: 8px;
    font-family: "nm-font";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    content: "\e610";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.widget_layered_nav ul li.current {
    position: relative;
    line-height: 28px;
    color: #d48d04;
    height: 28px;
    padding: 0 11px 0 33px;
    border: 1px solid #d48d04;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    max-width: -webkit-calc(100% + 12px);
    max-width: calc(100% + 12px);
    margin-top: -3px;
    margin-bottom: -9px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.list-product {
    position: relative;
}

.product-load:before {
    content: "";
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.product-load:after {
    content: "";
    background: #d48d04;
    display: block;
    position: absolute;
    top: 50px;
    right: 50%;
    width: 12px;
    height: 12px;
    margin: -6px -6px 0 0;
    opacity: 1;
    -webkit-animation: dotFade 0.8s infinite;
    animation: dotFade 0.8s infinite;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    z-index: 2;
}

.swiper-recommendations-slider__wrapper .add_to_cart_button,
.section-recommendations .add_to_cart_button {
    display: none !important;
}

.faq-social-responsibility__image img {
    width: 100%;
    height: auto;
}

.cart-discount a,
.faq-social-responsibility a {
    display: block;
    font-size: 12px;
    line-height: 1.2;
    color: #d48d04;
}

.faq-social-responsibility a {
    display: inline-block;
    font-size: inherit;
}

.cart-discount a:hover,
.faq-social-responsibility a:hover {
    color: #282828;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="time"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input.input-text:focus,
select:focus,
textarea:focus {
    outline: 0;
    border-color: #ccc;
}

.woocommerce form .form-row.woocommerce-validated .select2-container,
.woocommerce form .form-row.woocommerce-validated input.input-text,
.woocommerce form .form-row.woocommerce-validated select {
    border-color: #ccc;
}

.nm-shop-notice {
    position: relative;
    padding: 0;
    text-align: center;
    background: #fff;
    border: none;
    margin: 10px 0 0;
    font-size: 14px !important;
}

.nm-row .nm-shop-notice {
    padding-right: 0;
    padding-left: 0;
}

.nm-shop .nm-shop-notice:last-child {
    padding-bottom: 57px;
}

.nm-shop-notice span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.nm-shop-notice.nm-shop-notice-multiple span {
    padding-left: 0;
}

.nm-shop-notice span i {
    position: relative;
    top: -2px;
    display: inline-block;
    font-size: 24px;
    line-height: 1;
    vertical-align: middle;
    margin-right: 8px;
}

.nm-shop-notice.nm-shop-notice-multiple span i {
    display: none;
}

.nm-shop-notice span strong {
    font-weight: 400;
}

.nm-shop-notice a {
    display: none;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    font-size: 18px;
    line-height: 1.4;
    color: #282828;
}

.woocommerce-message strong,
.woocommerce-info strong,
.woocommerce-error strong {
    font-weight: 400;
}

.woocommerce-message {
    color: #03a678;
}

.nm-single-product .woocommerce-message,
.woocommerce-message::before {
    display: none;
}

.nm-shop-notice.woocommerce-info span {
    padding-left: 0;
}

.woocommerce-error {
    color: #f27362;
}

.woocommerce-error .wc-backward {
    display: none;
}

.woocommerce .wc-empty-cart-message,
.woocommerce .return-to-shop {
    text-align: center;
}

.wc-empty-cart-message {
    font-size: 20px;
    padding: 10px 0 11px;
    position: relative;
}

.wc-empty-cart-message:before,
.wc-empty-cart-message:after {
    position: absolute;
    top: 0;
    left: 50%;
    display: none;
    content: " ";
    width: 37px;
    height: 2px;
    background: #282828;
    z-index: 1;
    margin-left: -20px;
}

.wc-empty-cart-message:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.wc-empty-cart-message:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.woocommerce .return-to-shop a {
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    border: 0 none;
    -webkit-border-radius: 0;
    border-radius: 0;
    text-align: center;
    opacity: 1;
    -webkit-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    background-color: #282828;
    padding: 8px 14px;
}


.archive__spacial-cat__mobile {
    color: #d48d04;
    font-size: 25px;
    text-align: center;
    font-weight: 700;
    display: none;
    line-height: 2;
}

.woo-shop-results-bar {
    width: auto;
    margin-bottom: 17px;
    padding: 0;
    overflow: hidden;
}

.woo-shop-results-bar a {
    position: relative;
    display: inline-block;
    color: inherit;
    line-height: 1.4;
    max-width: 100%;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    vertical-align: top;
    overflow: hidden;
    margin: 0 8px 7px 0;
    padding: 5px 14px 5px 37px;
    border: 1px solid #777;
    -webkit-border-radius: 30px;
    border-radius: 30px;
}

.woo-shop-results-bar a span {
    color: #282828;
}

.woo-shop-results-bar a i {
    position: absolute;
    top: 6px;
    left: 12px;
    font-size: 15px;
    line-height: 1;
    color: inherit;
}

.woo-shop-results-bar a:hover {
    text-decoration: line-through;
}

.category-block .term-158 a {
    text-transform: uppercase;
    font-weight: 700;
}

.category-block .current-cat a,
.category-block li:hover a {
    color: #d48d04;
}

.category-filter__wrap li.active,
.category-filter__wrap li.current,
.widget_price_filter .current a,
.custom-woo-widget-product-sorting .active a,
.category-filter__wrap .nm_widget_color_filter li.current a {
    color: #d48d04;
}

.category-filter__wrap .show .nm-widget-title {
    color: #000;
}

.category-filter__wrap .show .widget-content {
    padding: 23px 0 21px;
    border-top: 1px solid #eee;
}

.category-filter__wrap.widget:last-child .nm-widget-title {
    border-bottom: 1px solid #eee;
}


.section-return-conditions h1 {
    text-align: center;
}

.section-return-conditions:after {
    content: none !important;
}

.woo-product-swiper-gallery .swiper-button-next,
.woo-product-swiper-gallery .swiper-button-prev {
    color: #d48d04 !important;
}

.woo-product-swiper-gallery .swiper-button-next:after,
.woo-product-swiper-gallery .swiper-button-prev:after {
    font-size: 17px !important;
}

.faq a {
    color: #d48d04;
}

.woocommerce-info:before {
    content: none;
}

/* CUSTOM STYLE */
.hint {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
    margin-top: 10px;
    margin-bottom: 20px;
}

.hint span {
    font-size: 12px;
    text-align: right;
    color: #73757e;
    cursor: pointer;
    display: none;
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

/* Animation */
@-webkit-keyframes dotFade {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes dotFade {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.popup__inner .popup__close {
    height: 22px;
    width: 22px;
    /* margin-left: auto; */
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 !important;
    margin-right: 10px;
}

.popup__close {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    -ms-grid-row-align: end;
    align-self: end;
}

/*** ----------- START -------------
POPUP SIZE LIST
 */

.popup-size-wrapper.active {
    opacity: 1;
    visibility: visible;
    padding: 20px;
}

.popup-size-wrapper .popup__close {
    padding-right: 10px;
}

.popup-size-wrapper {
    opacity: 0;
    visibility: hidden;
    min-width: 100%;
    min-height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 100;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.popup-size-wrapper .popup-size {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 487px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #ffffff;
    padding: 16px 0px 30px 0px;
    -webkit-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

.popup-size-wrapper .tab-item {
    overflow-y: scroll;
    max-height: 723px;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    display: none;
}

.popup__inner .switcher-body {
    max-height: 80vh;
    scrollbar-width: none;
    overflow: auto;
}

.popup-size-wrapper .tab-item::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.popup-size-wrapper .popup-size .popup-bullet__close {
    margin-right: 20px;
}

.popup-size-wrapper .popup-size-image img {
    width: 100%;
    height: auto;
    max-height: 250px;
    margin-right: 0px !important;
    -o-object-fit: cover;
    object-fit: cover;
}

.popup-size-wrapper .popup-labels {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    padding: 0 40px;
}

.popup-size-wrapper .popup-labels span {
    font-size: 16px;
    padding-bottom: 8px;
    line-height: 133.333%;
    font-weight: 700;
    color: #000000;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}

.popup-size-wrapper .popup-labels span.active {
    color: #000000;
    border-bottom: 2px solid #000000;
    font-weight: 700;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.popup-size-wrapper .popup-size-table {
    margin: 0 auto;
    width: 83.572%;
    border-collapse: collapse;
}

.popup-size-wrapper .popup-size-table td {
    width: 33.333%;
    padding: 24px 0px;
    text-align: center;
}

.popup-size-wrapper .popup-size-table td:last-child {
    font-size: 17px;
    font-weight: 500;
}

.popup-size-wrapper .popup-size-table thead th {
    width: 33.333%;
    padding: 24px 0px;
    border-bottom: 1px solid #cdcdcd;
    font-weight: 700;
    font-size: 12px;
}

.popup-size-wrapper .popup-size-table tbody span {
    line-height: 133.333%;
    text-align: center;
}

.popup-size-wrapper .popup-size-measurement {
    display: none;
    opacity: 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.popup-size-wrapper .popup-size-measurement-content {
    padding: 20px 40px;
}

.popup-size-wrapper .popup-size-measurement-title {
    display: block;
    font-family: "BebasNeue", sans-serif;
    text-transform: uppercase;
    font-size: 29px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
}


.popup-size-wrapper .popup-size-measurement-content ul li {
    display: list-item;
    list-style: disc;
}

.popup-size-wrapper .popup-size .popup-size-measurement-content a {
    color: #dc9814;
}

.popup-size-wrapper .popup-size-measurement .popup-size__description {
    border-bottom: 1px solid rgba(217, 217, 217, 1);
    padding-bottom: 15px;
}

.popup-size-wrapper .popup-sizes .popup-size__description {
    text-align: center;
}

.popup-size-wrapper .popup-size-measurement .popup-size__description h2 {
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 23px;
    font-family: "BebasNeue", sans-serif;
}

.popup-size-wrapper .popup-size-measurement .popup-size__description * + h2 {
    margin-top: 23px;
}

.popup-size-wrapper .popup-size-measurement .popup-size__description ul {
    padding-left: 25px;
}

.switcher-body .tab-item.active {
    opacity: 1;
    display: block;
}


/*** ----------- FINISH -------------
POPUP SIZE LIST
 */


.faq__description {
    color: rgb(119, 119, 119);
    font-size: 16px;
}

@media (max-width: 768px) {
    .faq__description {
        margin-top: 20px;
    }
}

.faq-block__answer_end {
    max-width: none !important;
}

.page-template-page-privacy_policy .faq li,
.page-template-page-return_conditions .faq li {
    display: list-item !important;
    padding-left: 3px;
}

.section-return-conditions a {
    color: #d48d04;
}

.faq-block:not(:last-child) {
    border-bottom-color: rgb(119 119 119 / 26%) !important;
}

.woo-selected-variation-item-name {
    margin: 0 !important;
}

.single-product .variations .label {
    margin-right: 0 !important;
}

.woocommerce-error::before {
    display: none !important;
}

.woocommerce form .form-row.woocommerce-invalid label {
    color: #f27362 !important;
}

.woocommerce form .form-row.woocommerce-invalid span,
.woocommerce form .form-row.woocommerce-invalid .required {
    color: #f27362 !important;
}

body.not-scroll {
    overflow: hidden;
}

.coupon-error-notice {
    margin-top: 8px;
    font-size: 14px;
    color: #f27362;
}

#cmplz-manage-consent .cmplz-manage-consent {
    z-index: 4 !important;
}


/* Cookies banner styles */


.cmplz-links.cmplz-information .cmplz-link.cmplz-manage-options.cookie-statement {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.cmplz-buttons .cmplz-btn.cmplz-manage-options.tcf.cookie-statement {
    display: none !important;
}

.cmplz-cookiebanner {
    height: -webkit-fit-content !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
    min-width: unset !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 40px !important;
    -webkit-box-pack: unset !important;
    -webkit-justify-content: unset !important;
    -ms-flex-pack: unset !important;
    justify-content: unset !important;
    -webkit-border-radius: unset !important;
    border-radius: unset !important;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    top: auto !important;
    bottom: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    left: 0 !important;
    right: 0 !important;
}

.cmplz-body {
    max-height: unset !important;
    height: 100%;
    margin-bottom: 24px;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.cmplz-divider.cmplz-divider-header,
.cmplz-divider.cmplz-footer {
    display: none;
}

.cmplz-title {
    margin-left: unset !important;
    font-size: 54px !important;
    font-family: "BebasNeue", sans-serif;
    text-transform: uppercase;
    font-weight: 700 !important;
    color: rgba(35, 31, 32, 1) !important
}

.cmplz-header {
    margin-bottom: 20px;
}

.cmplz-close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: none;
}

.cmplz-cookiebanner .cmplz-close svg {
    width: 12px !important;
    height: 12px !important;
}

.cmplz-message {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: rgba(35, 31, 32, 1) !important;
    margin-bottom: 32px !important;
    padding-right: 5px;
}

.cmplz-categories.cmplz-tcf {
    background: rgba(247, 247, 247, 1);
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.cmplz-cookiebanner .cmplz-categories {
    height: 0 !important;
    opacity: 0;
    display: none !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.cmplz-categories .cmplz-title {
    text-transform: none !important;
    font-size: 16px !important;
}

.cmplz-description {
    color: rgba(115, 117, 126, 1) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 100% !important;
}

.cmplz-category:not(:last-child) {
    margin-bottom: 32px !important;
}

.cmplz-btn {
    text-transform: unset !important;
    font-size: 16px !important;
    height: 48px !important;
    width: 100% !important;
}

.cmplz-links.cmplz-information a {
    color: rgba(17, 17, 17, 1) !important;
    font-size: 10px !important;
    font-weight: 400 !important;
    line-height: 100% !important;
}

.cmplz-cookiebanner .cmplz-close {
    width: 12px !important;
    height: 12px !important;
    font-size: 12px !important;
    line-height: 12px !important;
}

.cmplz-cookiebanner .cmplz-close:hover {
    font-size: 12px !important;
}

.cmplz-cookiebanner .cmplz-buttons {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.cmplz-cookiebanner .cmplz-buttons .cmplz-btn {
    max-width: 344px !important;
    margin: auto !important;
}

.cmplz-cookiebanner .cmplz-body {
    overflow-y: clip !important;
}

.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-deny {
    color: #000 !important;
    background: #fff !important;
    border: 1px solid #000 !important;
}

.show-more-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.show-more-btn span {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-decoration: underline;
    margin-right: 8px;
    cursor: pointer;
    color: #636363;
}

.show-more-btn svg {
    -webkit-transition: -webkit-transform 0.3s ease 0s;
    transition: -webkit-transform 0.3s ease 0s;
    -o-transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.show-more-btn.showed-info {
    margin-bottom: 32px;
}

.show-more-btn.showed-info svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.cmplz-categories.showed {
    height: -webkit-fit-content !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
    opacity: 1;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

#cmplz-cookiebanner-container {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

#cmplz-cookiebanner-container.cookie-opened {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9;
}

body.cookie-opened {
    overflow: hidden;
}

#cmplz-manage-consent .cmplz-manage-consent {
    position: absolute !important;
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
    color: #000 !important;
    font-size: 12px !important;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    padding: 0px !important;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    bottom: 26px !important;
    right: unset !important;
    left: 55px !important;
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
    min-width: unset !important;
    border: 1px solid rgba(255, 255, 255, 1) !important;
    color: #fff !important;
    background-color: #000 !important;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.cmplz-close:focus,
.cmplz-close:focus-visible {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

/* .cmplz-save-preferences {
	display: block !important;
} */
.cmplz-save-preferences {
    opacity: 0 !important;
    max-width: 0 !important;
    width: 0 !important;
    -webkit-transition: opacity 0.2 ease 0s,
    max-width 0.3 ease 0s,
    width 0.3 ease 0s;
    -o-transition: opacity 0.2 ease 0s,
    max-width 0.3 ease 0s,
    width 0.3 ease 0s;
    transition: opacity 0.2 ease 0s,
    max-width 0.3 ease 0s,
    width 0.3 ease 0s;
}

.cmplz-save-preferences.showed {
    opacity: 1 !important;
    max-width: unset !important;
    width: 100% !important;
}

.faq .more-information {
    display: none;
}

#cmplz-cookies-overview .cmplz-dropdown.cmplz-dropdown-cookiepolicy .cookies-per-purpose,
#cmplz-document .cmplz-dropdown.cmplz-dropdown-cookiepolicy .cookies-per-purpose,
.editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown.cmplz-dropdown-cookiepolicy .cookies-per-purpose {      
    display: none;
}

@media (max-width: 768px) {
    #cmplz-manage-consent .cmplz-manage-consent {
        bottom: 36px !important;
        left: 20px !important;
        max-width: 40px !important;
        max-height: 40px !important;
        font-size: 8px !important;
        font-weight: 400;
    }
}

@media (max-width: 425px) {
    .cmplz-cookiebanner .cmplz-links.cmplz-information {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
}

/*=======================*/
#cmplz-document {
    max-width: unset !important;
}

#cmplz-document > p:first-of-type {
    text-align: center;
}

.cookie-statement input,
.cmplz-categories input {
    -webkit-appearance: auto;
}

.cmplz-tcf-buttons {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    font-family: inherit !important;
    gap: 20px !important;
    margin-bottom: 20px;
}

.cmplz-tcf-buttons button {
    text-transform: unset !important;
    font-size: 16px !important;
    height: 48px !important;
    width: 100% !important;
    margin: 0 !important;
}

#cmplz-tcf-selectall {
    background-color: #333333 !important;
    color: #ffffff !important;
    border: 1px solid #333333 !important;
}

#cmplz-tcf-deselectall {
    background-color: #f7f7f7 !important;
    color: #73757e !important;
    border: 1px solid #f7f7f7 !important;
}

.cmplz-tcf-checkbox-container {
    position: relative !important;
}

.cmplz-tcf-toggle,
.cmplz-tcf-toggle-vendor {
    position: absolute !important;
    top: 0 !important;
    left: -webkit-calc(50% - 15px) !important;
    left: calc(50% - 15px) !important;
}

@media (max-width: 768px) {
    .cmplz-tcf-buttons button {
        font-size: 14px !important;
        height: 38px !important;
    }

    .cmplz-tcf-checkbox-container {
        padding-right: 15px;
    }

    .cmplz-tcf-toggle,
    .cmplz-tcf-toggle-vendor {
        left: -webkit-calc(100% - 15px) !important;
        left: calc(100% - 15px) !important;
    }
}

@media (max-width: 576px) {
    .cmplz-tcf-buttons {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .cmplz-document .faq__title {
        margin-bottom: 20px;
    }
}

#cmplz-document a:focus,
.editor-styles-wrapper .cmplz-unlinked-mode a:focus {
    border: unset !important;
    padding: 0px !important;
}

.features {
    margin: 70px 0 30px;
    color: rgba(142, 142, 142, 1);
}

.features-section .features-items__wrapper {
    background: rgba(212, 141, 4, 0.09);
    padding: 50px 0;
}


.features__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
}

.features__item {
    width: 240px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.features__item-image {
    margin-bottom: 28px;
    height: 89px;
    width: 89px;
    aspect-ratio: 1;
}

.features__item-image svg,
.features__item-image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.features__item-title {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    color: #000;

}

.features__item-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0;
    text-align: center;
    color: #000;
}

@media (max-width: 539px) {
    .features__items {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

/*Trstpuilot widget*/

.footer .tp-widget-wrapper {
    display: inline-block;
}

.footer .tp-widget-wrapper_mob {
    display: none;
}

.footer .tp-widget-wrapper .tp-widget-logo .tp-logo__text {
    fill: #fff;
}

.tp-widget-logo {
    display: block;
    margin-bottom: 7px;
    width: 106px;
}

.tp-widget-stars {
    display: block;
    margin: 0;
    width: 162px;
}

#tp-widget-stars svg .tp-star:not(:last-child) .tp-star__canvas {
    fill: #00b67a;
}

#tp-widget-stars svg .tp-star:last-child .tp-star__canvas {
    fill: #dcdce6;
}

#tp-widget-stars svg .tp-star .tp-star__canvas--half {
    fill: #00b67a;
}

@media (max-width: 993px) {
    .tp-widget-wrapper {
    }
}

@media (max-width: 768px) {
    .tp-widget-logo {
        margin-bottom: 0;
        margin-right: 10px;
        width: auto;
    }

    .tp-widget-wrapper {
        max-width: 122px;
        margin: auto;
    }

    .tp-widget-logo svg {
        position: relative !important;
    }

    .tp-widget-logo > div {

        height: auto !important;
        width: auto !important;
        padding: initial !important;
        padding-bottom: 0 !important;
    }

    .tp-widget-stars {
        display: block;
        margin: 0;
        width: 100%;
    }

    .footer .tp-widget-wrapper_pc {
        display: none;
    }

    .footer .tp-widget-wrapper_mob {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .footer .tp-widget-wrapper_mob .tp-widget-stars {
        margin: 0;
    }
}

@media (max-width: 450px) {
    .tp-widget-logo {
        width: 86px;
    }

    .tp-widget-stars {
        width: 102px;
    }
}

.swiper-recommendations-slider .swiper-wrapper {
    height: auto !important;
}

.tp-widget-wrapper-prod {
    margin-top: 18px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.tp-widget-trustscore {
    color: #000;
    font-size: 18px;
    margin-right: 15px;
    text-decoration: underline;
}

.tp-widget-stars-prod {
    width: 110px;
    margin-right: 15px;
}

.tp-widget-logo-prod {
    width: 95px;
}

.woocommerce__mcg-reviews__list {
    margin-bottom: 40px;
}

.woocommerce__mcg-reviews__form-wrapper {
    /* position: absolute; */
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 100;
    top: 0;
    left: 0;
    display: none;
    overflow-y: auto;
}

.woocommerce__mcg-reviews__form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 770px;
    width: 100%;
    -ms-grid-column-align: center;
    justify-self: center;
    position: relative !important;
    /* top: 50%;
    left: 50%;*/
    margin-top: 40px;
    margin-bottom: 40px;
    overflow-y: auto;
}

.woocommerce__mcg-reviews-btns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}


.woocommerce__mcg-review-close {
    position: relative;
}

.close-icon {
    cursor: pointer;
    position: absolute;
    left: -webkit-calc(100% + 14px);
    left: calc(100% + 14px);
    bottom: -webkit-calc(100% + 14px);
    bottom: calc(100% + 14px);
}

.woocommerce__mcg-reviews__form {
    padding: 40px;
}

.woocommerce__mcg-review-form-item {
    width: 100%;
}

.woocommerce__mcg-review-form-item input {
    width: 100%;
}

.avatar__input-file {
    display: none;
}

.avatar {
    margin-bottom: 30px;
}

.avatar__input {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}


.file__input {
    position: relative;
}

@media (max-width: 993px) {
    .woocommerce__mcg-reviews__form-wrapper {
        padding: 16px;
    }

    .woocommerce__mcg-reviews__form {
        /* max-width: calc(100vw - 32px); */
        max-width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .footer-pay {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .tp-widget-wrapper {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .footer-bottom__link.footer-socials {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }

    .footer-pay-row.footer-payment-system {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
    }
}

@media (max-width: 768px) {
    .footer-pay {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .woocommerce__mcg-reviews__form {
        padding: 40px 16px;
    }

    .close-icon {
        left: -webkit-calc(100% - 10px);
        left: calc(100% - 10px);
    }

    .avatar-dec span {
        font-size: 14px;
    }
}

@media (max-width: 476px) {


    .mcg-review-item__review,
    .mcg-review-item__images {
        margin-left: 0 !important;
    }
}

.mcg-reviews__top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.mcg-reviews_info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.mcg-reviews__date {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
}


.mcg-reviews_info span {
    margin-bottom: 5px;
}

.mcg-reviews__date div:not(:last-child) {
    margin-bottom: 5px;
}

.mcg-review-item__verified-badge {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: end;
    -ms-flex-align: end;
    align-items: end;
}

.review-disclaimer {
    font-size: 10px;
    font-style: italic;
}


.section-default__header {
    margin-bottom: 35px;
    text-align: center;
}

.section-default-title,
.category-block__wrap .category__title span,
.default-page .default-page__header h1 span {
    font-family: "BebasNeue", sans-serif;
    font-size: 54px;
    color: #000000;
    line-height: 1.4;
    text-transform: uppercase;
    position: relative;
    padding: 0 40px;
    font-weight: 700;
    display: inline-block;
}

.section-default-title:before,
.section-default-title:after,
.category-block__wrap .category__title span:before,
.category-block__wrap .category__title span:after,
.default-page .default-page__header h1 span:before,
.default-page .default-page__header h1 span:after,
.woocommerce__mcg-reviews__form .woocommerce__mcg-review__title-block span:after,
.woocommerce__mcg-reviews__form .woocommerce__mcg-review__title-block span:before {
    content: "";
    height: 15px;
    width: 15px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    top: 47%;
    left: 10px;
    background: #0B0B0BFF

}

.section-default-title:after,
.category-block__wrap .category__title span:after,
.default-page .default-page__header h1 span:after,
.woocommerce__mcg-reviews__form .woocommerce__mcg-review__title-block span:after {
    content: "";
    right: 10px;
    left: auto;
}


.default-page .default-page__header {
    margin: 40px 0;
}

.default-page .default-page__body address,
.default-page .default-page__body dl,
.default-page .default-page__body fieldset,
.default-page .default-page__body figure,
.default-page .default-page__body ol,
.default-page .default-page__body p,
.default-page .default-page__body pre,
.default-page .default-page__body ul,
.accordion-content p {
    margin: 0 0 20px 0;
}


.default-page .default-page__body * + address,
.default-page .default-page__body * + dl,
.default-page .default-page__body * + fieldset,
.default-page .default-page__body * + figure,
.default-page .default-page__body * + ol,
.default-page .default-page__body * + p,
.accordion-content * + p,
.default-page .default-page__body * + pre,
.default-page .default-page__body * + ul {
    margin-top: 20px;
}

.default-page .default-page__body h1,
.default-page .default-page__body h2,
.default-page .default-page__body h3,
.default-page .default-page__body h4,
.default-page .default-page__body h5,
.default-page .default-page__body h6 {
    margin: 0 0 20px 0;
}

.default-page .default-page__body * + h1,
.default-page .default-page__body * + h2,
.default-page .default-page__body * + h3,
.default-page .default-page__body * + h4,
.default-page .default-page__body * + h5,
.default-page .default-page__body * + h6 {
    margin-top: 40px;
}


.default-page .default-page__body {
    line-height: 1.4;
    margin: 40px 0;
    font-size: 16px;
}

.default-page .default-page__body ul {
    padding-left: 30px;
    list-style: disc;
}

.default-page .default-page__body ul li {
    display: list-item;
}

.default-page .default-page__body a {
    color: #000000;
    font-weight: 700;
    text-decoration: underline;
}

.default-page .default-page__body p.has-large-font-size {
    font-size: 22px !important;
    font-weight: 400;
}


.armbeag-big-card__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
    margin: 50px 0;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 36px;
}

.armbeag-big-card__content:last-child {
    border-bottom: none;
}

.armbeag-faq__content .faq-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
}

.armbeag-big-card__content .armbeag-block__section-title,
.armbeag-faq__content .armbeag-faq__section-title {
    color: #CB9F73FF;
    font-weight: 500;
    font-size: 21px;
    max-width: 220px;
    width: 100%;
}

.armbeag-faq__content .faq-item .faq-title {
    color: #000;
    font-weight: 400;
    font-size: 15px;
    max-width: 220px;
    width: 100%;
    font-weight: 700;
}


.woo-mini-cart__bottom-total {
    font-size: 20px;
    line-height: 1.4;
    display: block;
    margin: 20px 0 0;
    color: #000;
    text-align: center;
    font-weight: 700;
}


.form-newsletter input[type=email] {
    background-color: rgba(217, 217, 217, 0.23);
    color: #fff;
    width: 100%;
    font-size: 10px;
    line-height: 1.4;
    border: 0;
    padding: 10px 7px;

}


.form-newsletter input[type=email]:-moz-placeholder-shown {
    color: rgba(140, 140, 140, 1);
    font-size: 10px;
    padding: 10px 7px;
}


.form-newsletter input[type=email]:-ms-input-placeholder {
    color: rgba(140, 140, 140, 1);
    font-size: 10px;
    padding: 10px 7px;
}


.form-newsletter input[type=email]:placeholder-shown {
    color: rgba(140, 140, 140, 1);
    font-size: 10px;
    padding: 10px 7px;
}

.form-newsletter button[type=submit] {
    color: #fff;
    border: 1px solid #fff;
    font-weight: 700;
    font-size: 13px;
    width: 100%;
    text-align: center;
    padding: 7px 15px;
    margin-top: 20px;
    height: 33px;
    font-family: "Montserrat", sans-serif;
}

.form-newsletter .term {
    margin-top: 10px;
}

.form-newsletter .term input[name="term"] {
    display: none;
}

.form-newsletter .term a {
    color: #d48d04;
}

.footer-block__newsletter .mcg-response,
.form-newsletter .term input + label {
    font-size: 10px;
    color: #ffffff;
}

.form-newsletter .term input + label {
    position: relative;
    display: block;
    line-height: 1.5;
    cursor: pointer;


}

.form-newsletter .term input + label:before {
    content: "";
    height: 18px;
    width: 18px;
    display: inline-block;
    position: absolute;
    border: 1px solid #000;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    left: 0;
    background: #fff;
}

.form-newsletter .term input:checked + label:after {
    content: "";
    background: url("../img/icon-check.svg") 0 0 / contain no-repeat;
    position: absolute;
    top: 4px;
    left: 2px;
    height: 16px;
    width: 16px;
    display: inline;
    font-size: 12px;
    z-index: 1;
    color: #000;
}

.form-newsletter .term span {
    margin-left: 35px;
    display: block;
}


.footer-block-additional-info {
    row-gap: 65px;
    display: grid;
}

.footer-block__address a {
    font-size: 12px;
    color: #8c8c8c;
    line-height: 27px;
}


.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 20px;
    background: #f5f5f5;
    cursor: pointer;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
    position: relative;
}

.accordion-header:hover {
    background: #ebebeb;
}

.accordion-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.accordion-icon {
    font-size: 24px;
    font-weight: 300;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.accordion-item.active .accordion-icon {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.accordion-content {
    display: none;
    padding: 20px;
    background: #fff;
}

.accordion-header:after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    background: url("../img/icon-chevron-down.svg") no-repeat center center;
    display: inline-block;
    height: 25px;
    width: 25px;
    background-size: 25px;
}

.accordion-item.active .accordion-header:after {
    content: "";
    background: url("../img/icon-chevron-up.svg") no-repeat center center;
    background-size: 25px;
}

.mob-happy-help,
.mob-menu_about__wrapper {
    display: none;

}

.mob-happy-help {
    margin: 20px 0;
}

.mob-happy-help .contacts {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 25px;

}

.mob-happy-help a,
.mob-happy-help .mob-happy-help__label {
    font-size: 10px;
    color: #fff;
}

.mob-happy-help .mob-happy-help__label {
    font-weight: bold;
    margin-bottom: 15px;
}

.mob-happy-help .contacts .contact-page {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.mob-menu_about__wrapper {
    border-top: 1px solid rgba(73, 71, 71, 1);
    border-bottom: 1px solid rgba(73, 71, 71, 1);
    padding: 25px 0;
}

.mob-menu_about__wrapper .footer-navigation__menu {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px;
}

.mob-menu_about__wrapper .footer-navigation__menu li {
    text-align: center;
}

.mob-menu_about__wrapper .footer-navigation__menu a {
    font-size: 10px;
    color: #fff;
}

.footer-middle .mob-accordion__wrapper {
    display: none;
}

.desktop-search-form {
    width: 100%;
    display: none;
    border-top: 1px solid #dedede;
    padding: 20px 100px;
    background: #fff;
    z-index: -1;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    position: absolute;
}

.desktop-search-form .btn-close {
    height: 20px;
    width: 20px;

    position: absolute;
    right: 0;
    z-index: 2;
    cursor: pointer;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.desktop-search-form.active {
    display: block;
    height: auto;
}

.desktop-search-form form {
    position: relative;
}

.desktop-search-form input[type=text] {
    font-size: 26px;
    line-height: 2;
    -webkit-border-radius: 0;
    border-radius: 0;
    font-family: "Roboto Condensed", sans-serif;
    color: #707070;
    width: 100%;
    padding: 0 23px 0 0;
    background: transparent;
    border: none;
}

.desktop-search-form .tip {
    color: #aaa;
    font-size: 12px;
    font-weight: 400;
    opacity: 0;
    visibility: hidden;
    display: inline-block;

}

.mcg-popup__gift-subscribe .mcg-popup-widget {
    display: none;
}

.mcg-popup__gift-subscribe .mcg-popup__wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .3);
    display: none;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #000;
    z-index: 1102;
    overflow-y: scroll;
    opacity: 0;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    padding: 15px;
}

.mcg-popup__gift-subscribe .mcg-popup__wrapper.show {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
}

.mcg-popup__gift-subscribe .mcg-popup__close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: auto;
    background: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    z-index: 1;
}

.mcg-popup__gift-subscribe .mcg-popup__close svg {
    height: 12px;
    width: 12px;
}

.mcg-popup__gift-subscribe .mcg-popup__close_mob {
    display: none;
}

.mcg-popup__gift-subscribe .mcg-popup__logo {
    text-align: center;
    margin-bottom: 35px;
}

.mcg-popup__gift-subscribe .mcg-popup__logo img {
    max-height: 66px;
}

.mcg-popup__gift-subscribe .mcg-popup__body {
    background: #fff;
    max-width: 997px;
    width: 100%;
    text-align: center;
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.mcg-popup__gift-subscribe .mcg-popup__title {
    font-size: 51px;
    font-family: "BebasNeue", sans-serif;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 8px;
}

.mcg-popup__gift-subscribe .mcg-popup__description {
    font-size: 19px;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 24px;
    color: #000;
    max-width: 452px;
    margin-left: auto;
    margin-right: auto;
}

.mcg-popup__gift-subscribe .mcg-popup-form input[type=email] {
    height: 66px;
    border: 1px solid rgb(140, 140, 140);
    background: transparent;
    width: 100%;
    padding: 12px;
    font-size: 22px;
    color: rgb(140, 140, 140);
}

.mcg-popup__gift-subscribe .mcg-popup-form input[type=email]::-webkit-input-placeholder {
    font-size: 22px;
    line-height: 1;
    font-weight: 500;
}

.mcg-popup__gift-subscribe .mcg-popup-form input[type=email]::-moz-placeholder {
    font-size: 22px;
    line-height: 1;
    font-weight: 500;
}

.mcg-popup__gift-subscribe .mcg-popup-form input[type=email]:-ms-input-placeholder {
    font-size: 22px;
    line-height: 1;
    font-weight: 500;
}

.mcg-popup__gift-subscribe .mcg-popup-form input[type=email]::-ms-input-placeholder {
    font-size: 22px;
    line-height: 1;
    font-weight: 500;
}

.mcg-popup__gift-subscribe .mcg-popup-form input[type=email]::placeholder {
    font-size: 22px;
    line-height: 1;
    font-weight: 500;
}

.mcg-popup__gift-subscribe .mcg-popup-form {
    width: 100%;
}

.mcg-popup__gift-subscribe .mcg-popup-form .term {
    text-align: left;
    margin-bottom: 33px;
}

.mcg-popup__gift-subscribe .mcg-popup-form .term span {
    margin-left: 35px;
    display: block;
}

.mcg-popup__gift-subscribe .mcg-popup__decline {
    font-size: 19px;
    font-weight: 500;
    line-height: 150%;
    color: rgba(149, 149, 149, 1);
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    cursor: pointer;
    position: absolute;
    bottom: 24px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin: auto;
}

.mcg-popup__gift-subscribe .mcg-popup-form input[type=submit] {
    background: #000;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    width: 100%;
    height: 66px;
    cursor: pointer;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.mcg-popup__gift-subscribe .mcg-popup-form input[type=submit]:hover {
    -webkit-box-shadow: 0px 3px 6px #fff;
    box-shadow: 0px 3px 6px #fff;
}

.mcg-popup__gift-subscribe .mcg-popup-form .form__field,
.mcg-popup__gift-subscribe .mcg-popup-form .btn_block {
    margin-bottom: 20px;
}

.mcg-popup__gift-subscribe .mcg-popup-form .term a {
    color: #CB9F73FF;
    font-weight: 700;
}

.mcg-popup__gift-subscribe .mcg-popup-form .term label {
    display: block;
    font-size: 15px;
    line-height: 1.5;
    position: relative;
    cursor: pointer;
    color: #000;
}

.mcg-popup__gift-subscribe .mcg-popup-form input + label:before {
    content: "";
    height: 24px;
    width: 24px;
    display: inline-block;
    position: absolute;
    border: 1px solid #000;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    left: 0;
}

.mcg-popup__gift-subscribe .mcg-popup-form input[name="term"] {
    display: none;
}

.mcg-popup__gift-subscribe .mcg-popup-form input:checked + label:after {
    content: "";
    background: url('../img/icon-check.svg') 0 0/contain no-repeat;
    position: absolute;
    top: 4px;
    left: 2px;
    width: 24px;
    height: 24px;
    display: inline;
    font-size: 12px;
    z-index: 1;
    color: #000;
}

.mcg-popup__gift-subscribe .mcg-popup-widget {
    position: fixed;
    bottom: 40px;
    left: 40px;
    z-index: 4;
    cursor: pointer;
}

.mcg-popup__gift-subscribe .mcg-popup-widget__icon {
    background: #000;
    border: 1px solid #000;
    height: 45px;
    width: 45px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: relative;
    cursor: pointer;
}

.mcg-popup__gift-subscribe .mcg-popup-widget__icon svg {
    width: 25px;
    height: 28px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.mcg-popup__gift-subscribe .mcg-popup-widget__icon:hover svg {
    -webkit-transform: rotate(-45deg) scale(1.15);
    -ms-transform: rotate(-45deg) scale(1.15);
    transform: rotate(-45deg) scale(1.15);
}

.mcg-popup__gift-subscribe .mcg-popup-widget:before {
    content: "";
    border: 1px solid #777777;
    background: #fff;
    height: 45px;
    width: 45px;
    display: inline-block;
    position: absolute;
    top: 0;
    z-index: -1;
    -webkit-animation: waveAnimationBefore 4s infinite;
    animation: waveAnimationBefore 4s infinite;
}

.mcg-popup__gift-subscribe .mcg-popup-widget:after {
    content: "";
    border: 1px solid #777777;
    background: #fff;
    height: 45px;
    width: 45px;
    display: inline-block;
    -webkit-animation: waveAnimationAfter 4s infinite;
    animation: waveAnimationAfter 4s infinite;
    top: 0;
    position: absolute;
    z-index: -1;
}

.mcg-popup__gift-subscribe .mcg-popup-widget .decor {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: waveAnimationDecor 4s infinite;
    animation: waveAnimationDecor 4s infinite;
}

.mcg-popup__gift-subscribe .mcg-popup-widget .decor svg {
    width: 22px;
}

.mcg-popup__gift-subscribe .mcg-popup-widget .close {
    width: 13.5px;
    height: 13.5px;
    position: absolute;
    top: -13.5px;
    right: -13.5px;
}

.mcg-popup__gift-subscribe .mcg-popup-widget .close svg {
    width: 12px;
}

@-webkit-keyframes waveAnimationDecor {
    0%, 100% {
        -webkit-transform: translate(-1px, -3px);
        transform: translate(-1px, -3px);
    }
    50% {
        -webkit-transform: translate(-20px, -3px);
        transform: translate(-20px, -3px);
    }
}

@keyframes waveAnimationDecor {
    0%, 100% {
        -webkit-transform: translate(-1px, -3px);
        transform: translate(-1px, -3px);
    }
    50% {
        -webkit-transform: translate(-20px, -3px);
        transform: translate(-20px, -3px);
    }
}

@-webkit-keyframes waveAnimationBefore {
    0%, 100% {
        -webkit-transform: rotate(45deg) translate(0, 0);
        transform: rotate(45deg) translate(0, 0);
    }
    50% {
        -webkit-transform: rotate(45deg) translate(8px, -8px);
        transform: rotate(45deg) translate(8px, -8px);
    }
}

@keyframes waveAnimationBefore {
    0%, 100% {
        -webkit-transform: rotate(45deg) translate(0, 0);
        transform: rotate(45deg) translate(0, 0);
    }
    50% {
        -webkit-transform: rotate(45deg) translate(8px, -8px);
        transform: rotate(45deg) translate(8px, -8px);
    }
}

@-webkit-keyframes waveAnimationAfter {
    0%, 100% {
        -webkit-transform: rotate(45deg) translate(0, 0);
        transform: rotate(45deg) translate(0, 0);
    }
    50% {
        -webkit-transform: rotate(45deg) translate(-8px, 8px);
        transform: rotate(45deg) translate(-8px, 8px);
    }
}

@keyframes waveAnimationAfter {
    0%, 100% {
        -webkit-transform: rotate(45deg) translate(0, 0);
        transform: rotate(45deg) translate(0, 0);
    }
    50% {
        -webkit-transform: rotate(45deg) translate(-8px, 8px);
        transform: rotate(45deg) translate(-8px, 8px);
    }
}

.mcg-popup__gift-subscribe .mcg-popup__image {
    width: 339px;
}

.mcg-popup__gift-subscribe .mcg-popup__image img {
    height: 100%;
    width: 100%;
}

.mcg-popup__gift-subscribe .mcg-popup__main {
    max-width: 658px;
    width: 100%;
    padding: 24px 40px 40px 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
}

.select2-dropdown {
    border: 1px solid #e5e5e5 !important;
}


.custom-page-contacts .wpcf7 {
    max-width: 584px;
    width: 100%;
}

.cf7-form-wrap .field-group {
    margin-bottom: 24px;
}

.cf7-form-wrap label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    letter-spacing: 0.01em;
}

.cf7-form-wrap .wpcf7-form-control.wpcf7-text,
.cf7-form-wrap .wpcf7-form-control.wpcf7-tel,
.cf7-form-wrap .wpcf7-form-control.wpcf7-email,
.cf7-form-wrap .wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    border: 1px solid #ccc;
    -webkit-border-radius: 0;
    border-radius: 0;
    padding: 18px 16px;
    font-size: 19px;
    color: #333;
    background: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    -webkit-transition: border-color 0.2s ease;
    -o-transition: border-color 0.2s ease;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.cf7-form-wrap .wpcf7-form-control.wpcf7-text:focus,
.cf7-form-wrap .wpcf7-form-control.wpcf7-tel:focus,
.cf7-form-wrap .wpcf7-form-control.wpcf7-email:focus,
.cf7-form-wrap .wpcf7-form-control.wpcf7-textarea:focus {
    border-color: #111;
}

.cf7-form-wrap .wpcf7-form-control.wpcf7-textarea {
    height: 200px;
    resize: vertical;
}

.cf7-form-wrap input::-webkit-input-placeholder, .cf7-form-wrap textarea::-webkit-input-placeholder {
    color: #aaa;
    font-size: 19px;
    font-weight: 500;
}

.cf7-form-wrap input::-moz-placeholder, .cf7-form-wrap textarea::-moz-placeholder {
    color: #aaa;
    font-size: 19px;
    font-weight: 500;
}

.cf7-form-wrap input:-ms-input-placeholder, .cf7-form-wrap textarea:-ms-input-placeholder {
    color: #aaa;
    font-size: 19px;
    font-weight: 500;
}

.cf7-form-wrap input::-ms-input-placeholder, .cf7-form-wrap textarea::-ms-input-placeholder {
    color: #aaa;
    font-size: 19px;
    font-weight: 500;
}

.cf7-form-wrap input::placeholder,
.cf7-form-wrap textarea::placeholder {
    color: #aaa;
    font-size: 19px;
    font-weight: 500;
}

.cf7-form-wrap .wpcf7-submit {
    background: #111;
    color: #fff;
    border: none;
    padding: 16px 36px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    -webkit-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
    transition: background 0.2s ease;
    font-family: inherit;
    width: 321px;
}

.cf7-form-wrap .wpcf7-submit:hover {
    background: #333;
}

.wpcf7-form .field-group:not(.field-group__comment) {
    width: 80%;
}

.custom-page-contacts .store-information {
    max-width: 400px;
    width: 100%;
}

.custom-page-contacts .store-information__title-block {
    color: #000;
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "BebasNeue", sans-serif;
    margin-bottom: 25px;
}

.wpcf7-spinner {
    display: block;
    margin: 0 149px;
}

.footer-delivery svg {
    width: auto;
    height: 24px;
}

.footer-delivery svg:not(:last-child) {
    margin-right: 5px;
}




/* MCG Reviews System - Styles */

/* ==========================================
   BODY MODAL STATE
   ========================================== */

body.modal-open {
    overflow: hidden;
}

/* ==========================================
   REVIEW FORM STYLES
   ========================================== */

.woocommerce__mcg-reviews__form-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    padding: 20px;
    overflow-y: auto;
}

.woocommerce__mcg-reviews__form {
    background: #fff;
    max-width: 1156px;
    margin: 50px auto;
    padding: 60px 40px;
    position: relative;
}

.woocommerce__mcg-review-close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    z-index: 10;
}

.woocommerce__mcg-review-close .close-icon {
    width: 25px;
    height: 25px;
    left: auto;
    right: 0;
    bottom: auto;
}

.woocommerce__mcg-review__title-block {
    font-family: "BebasNeue", sans-serif;
    margin-bottom: 35px;
    font-size: 54px;
    text-align: center;
    color: #000;
    font-weight: 700;
}

.woocommerce__mcg-review__title-block span {
    padding: 0 40px;
    position: relative;
}

.woocommerce__mcg-reviews__form .avatar__input-label {
    margin-right: 16px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(224, 224, 224, 1);
    width: 121px;
    height: 121px;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    flex: 0 0 auto;
}

.woocommerce__mcg-reviews__form label {
    display: block;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    color: #000;
    margin-bottom: 10px;
}

.woocommerce__mcg-reviews__form .file label {
    margin-bottom: 0;
}


.woocommerce__mcg-reviews__form input[type="text"],
.woocommerce__mcg-reviews__form input[type="email"],
.woocommerce__mcg-reviews__form #billing_country {
    font-family: inherit;
    line-height: 1.6;
    outline: 0;
    padding: 17px 10px;
    border: 1px solid #e7e7e7;
    border-radius: 0;
    width: 100%;
}


.woocommerce__mcg-reviews__form textarea {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 0;
    padding: 8px 10px;
    border: 1px solid #d7d7d7;
    font-family: inherit;
}

.woocommerce__mcg-reviews__form .form-block {
    margin-bottom: 30px;
}

.woocommerce__mcg-reviews__form .form-block.rating {
    margin: 15px 0 50px 0;
}

.form-block__flex {
    display: flex;
    gap: 30px;
}

.form-block__flex > div {
    flex: 1;
}

.form-block__review__name,
.form-block__review__email {
    flex: 1;
}

/* Avatar Upload */
.avatar {
    margin-bottom: 20px;
}

.avatar__input {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar__input-file {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.avatar__input-label {
    cursor: pointer;
}

.avatar__input-label img {
    height: auto;
    max-width: 100%;
}

.woocommerce__mcg-reviews__form-wrapper .avatar-dec h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 700;
}

.woocommerce__mcg-reviews__form-wrapper .avatar-dec span {
    font-size: 20px;
    color: #959595FF;
    font-weight: 700;

}

/* Rating Stars */
.mcg-review__rating {
    display: flex;
    gap: 5px;
}

.mcg-review__rating svg {
    width: 20px;
    height: 20px;
    cursor: pointer;
    color: #b6b6b6;
    transition: fill 0.2s ease;
}

.mcg-review__rating svg.active {
    color: #cb9f73;
}

.mcg-review__rating svg:hover {
    color: #cb9f73;
    opacity: 0.7;
}

/* File Upload */
.woocommerce__mcg-reviews__form .file {
    position: relative;
    font-size: 1.0625rem;
    margin-bottom: 20px;
}

.woocommerce__mcg-reviews__form .file__input {
    font-size: 13px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #666;
    padding: 0.9375rem 1.0625rem;
    border: 1px solid #e7e7e7;
}

.woocommerce__mcg-reviews__form .file__input--file {
    position: absolute;
    opacity: 0;
}

.file__input--label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    cursor: pointer;
}

.woocommerce__mcg-reviews__form .file__input--label span {
    background-color: #000;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.18);
    padding: 15px 15px;
    border: none;
    margin: 0;
    color: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 6px;
}

.woocommerce__mcg-reviews__form .filesList {
    margin-bottom: 10px;
}

.woocommerce__mcg-reviews__form .file-block {
    border-radius: 10px;
    background-color: rgba(144, 163, 203, 0.2);
    margin: 5px;
    color: initial;
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    font-size: 13px;
}

.woocommerce__mcg-reviews__form .file-block .name {
    padding-right: 10px;
}

.file-delete {
    display: flex;
    width: 24px;
    color: initial;
    background-color: transparent;
    font-size: large;
    justify-content: center;
    margin-right: 3px;
    cursor: pointer;
}

.file-delete:hover {
    background-color: rgba(255, 0, 0, 0.26);
    border-radius: 10px;
}


/* Buttons */
.woocommerce__mcg-reviews__form .woocommerce__mcg-reviews-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.woocommerce__mcg-reviews__form .btn-submit {
    background: #000;
    color: #fff;

    padding: 10px 20px;
    box-shadow: none;
    outline: none;
    border: none;
    cursor: pointer;

}

.woocommerce__mcg-reviews__form .btn-submit:disabled {
    background: #d1d1d1;
    cursor: not-allowed;
}

.woocommerce__mcg-reviews__form .woocommerce__mcg-reviews-btns .close-btn {
    padding: 10px 20px;
    background: #f5f5f5;
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

.woocommerce__mcg-reviews__form .woocommerce__mcg-reviews-btns .close-btn,
.woocommerce__mcg-reviews__form .btn-submit {
    font-size: 17px;
    font-weight: 700;
    width: 138px;
    height: 51px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.reviews-section {
    width: 100%;
    margin: 50px 0;
    background-color: #ffffff;
    overflow: hidden;
}


.reviews-section .reviews-header {

}

.reviews-section .reviews-icon {
    font-size: 24px;
    color: #000000;
    line-height: 1;
}

.reviews-section .reviews-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #000000;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
}

/* Slider Wrapper */
.reviews-section .reviews-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Swiper должен занимать всё свободное место внутри flex-обёртки.
   Без этого он сжимается до ~0px и Swiper считает ширину слайда 0.333px */
.reviews-section .reviews-slider-wrapper .swiper-reviews-slider {
    flex: 1;
    min-width: 0;
}


/* Review Card */
.reviews-section .review-card {
    background: #ffffff;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #F8F6F3;
    padding: 20px;
    position: relative;
    height: 100%;
}

.reviews-section .review-card > *:not(:last-child) {
    margin-bottom: 15px;
}

.reviews-section .review-card:before {
    content: "";
    height: 3px;
    width: 100%;
    background-color: #CB9F73FF;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}


.reviews-section .review-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Top Border */
.reviews-section .review-top-border {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37 0%, #C9A961 100%);
}

/* Review Header */
.reviews-section .review-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviews-section .reviewer-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
}


.reviews-section .reviewer-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
}


.reviews-section .avatar-initials {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    width: 56px;
    font-weight: 700;
    background: #666;
    color: #fff;
    border-radius: 50%;
    float: left;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.reviews-section .reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-section .reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reviews-section .reviewer-name {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
}

.reviews-section .reviewer-location {
    font-size: 13px;
    font-weight: 500;
    color: #8C8C8C;
    line-height: 1.2;
}

.reviews-section .reviewer-verified {
    position: relative;
    color: #8C8C8C;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding-left: 15px;
}

.reviews-section .reviewer-verified svg {
    margin-right: 5px;
}

.reviews-section .reviewer-verified:before {
    content: "";
    height: 4px;
    width: 4px;
    border-radius: 50%;
    display: inline-block;
    background: #8C8C8C;
    position: absolute;
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
}

.reviewer-loc__block {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.reviews-section .star-ratings {
    margin-top: 5px;
}


.reviews-section .star {
    color: #b6b6b6;
    font-size: 16px;
    line-height: 1;
}


/* Review Text */
.reviews-section .review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #232323FF;

}

/* Review Image */
.reviews-section .review-image {
    width: 100%;
    aspect-ratio: 1.6 / 1;
    overflow: hidden;
}

.reviews-section .review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reviews-section .review-title {
    font-size: 15px;
    font-weight: 600;
}


.reviews-section .star-ratings,
.single-product-rating .star-ratings {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.reviews-section .star-rating__inner,
.single-product-rating .star-ratings .star-rating__inner {
    position: relative;
    display: inline-block;
    line-height: 1;
}

.reviews-slider-wrapper .reviews-section .star-rating__inner {
    font-size: 14px;
}

.reviews-statistic .reviews-section .star-rating__inner {
    font-size: 19px;
}

.single-product-rating .star-ratings .star-rating__inner {
    font-size: 22px;
}

/* Серые звезды (фон) */
.reviews-section .star-rating__stars,
.single-product-rating .star-ratings .star-rating__stars {
    color: #b6b6b6;
    letter-spacing: 2px;
}

.reviews-section .star-rating__stars .star,
.single-product-rating .star-ratings .star-rating__stars .star {
    display: inline-block;
}

.reviews-section .star-rating__filled,
.single-product-rating .star-ratings .star-rating__filled {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    color: rgba(203, 159, 115, 1);
    white-space: nowrap;
    letter-spacing: 2px;
}

.reviews-section .star-rating__filled::before,
.single-product-rating .star-ratings .star-rating__filled:before {
    content: '★★★★★';
}

.reviews-section .star-rating__value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}


/* Upload Progress */
.woocommerce__mcg-reviews__form.upload {
    overflow: hidden;
    position: relative;
}

.woocommerce__mcg-reviews__form.upload:before {
    content: "";
    position: absolute;
    top: -15px;
    bottom: -15px;
    left: -30px;
    right: -30px;
    background: #cecece;
    opacity: 0.4;
    z-index: 1;
}

.percentComplete {
    display: none;
}

.woocommerce__mcg-reviews__form.upload .percentComplete {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 60px;
    width: 60px;
    background: #000;
    z-index: 2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transform: translate(-50%, -50%);
}

/* Alert Messages */
.mcg-review__respond {
    margin: 20px auto 0 auto;
    padding: 10px 15px;
    border-radius: 3px;
    text-align: center;
}

.mcg-review__alert-success {
    background: #1cc286;
    color: #fff;
}

.mcg-review__alert-error {
    background: red;
    color: #fff;
}

/* Add Review Button */
.woocommerce__mcg-reviews__add-new {
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    background: #000;
    color: #fff;
    padding: 3px 20px;
    border-radius: 3px;
    font-weight: 700;
    cursor: pointer;
    width: fit-content;
    margin: 20px auto;
    display: flex;
}

/* Country Select */
.woocommerce__mcg-review #billing_country {
    width: 100%;
    font-family: inherit;
    line-height: 1.6;
    outline: 0;
    padding: 8px 10px;
    border: 1px solid #e7e7e7;
    border-radius: 0;
    box-shadow: none;
    -webkit-appearance: none;
}

.woocommerce__mcg-review .form-row {
    padding: 0 !important;
    margin: 0 !important;
}

/* reCAPTCHA Badge */
.grecaptcha-badge {
    display: none !important;
}

.woocommerce__mcg-reviews__form input,
.woocommerce__mcg-reviews__form select,
.woocommerce__mcg-reviews__form textarea {
    font-size: 16px;
}


/* ==========================================
   NO REVIEWS MESSAGE
   ========================================== */

.product-not-reviews .no-reviews-message {
    text-align: center;
    padding: 0 0 20px 0;
    color: #666;
}

.product-not-reviews .no-reviews-message {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    color: #000;
}

.product-not-reviews .inner {
    position: relative;
    padding: 50px 0;
}

.product-not-reviews .inner,
.product-not-reviews .inner:before,
.product-not-reviews .inner:after {
    background: #f8f6f394;
}

.product-not-reviews .inner:before {
    content: "";
    position: absolute;
    left: -100%;
    right: 100%;
    top: 0;
    bottom: 0;
}

.product-not-reviews .inner:after {
    content: "";
    position: absolute;
    left: 100%;
    right: -100%;
    top: 0;
    bottom: 0;
}

.woocommerce__mcg-reviews__form .form-row {
    padding: 0 !important;
    margin: 0 !important;
}










/* ========================================
   RESPONSIVE STYLES
   Breakpoints: 1220 | 993 | 768 | 576 | 480
   ======================================== */

/* ----------------------------------------
   DESKTOP GALLERY — min-width: 993px
   ---------------------------------------- */
@media screen and (min-width: 993px) {


    .switcher-mob-menu .open {
        display: none;
    }

    .woo-product-swiper-gallery .swiper {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .woo-product-swiper-gallery .swiper .gallery-mainSlider {
        width: -webkit-calc(100% - 80px);
        width: calc(100% - 80px);
        position: relative;
        overflow: hidden;
    }

    .woo-product-swiper-gallery .swiper .gallery-mainSlider,
    .woo-product-swiper-gallery .swiper .gallery-mainSlider img {
        max-height: 450px;
        -o-object-fit: contain;
        object-fit: contain;
    }

    .woo-product-swiper-gallery .swiper .gallery-thumbsSlider {
        width: 70px;
    }


}


/* ----------------------------------------
   TABLET — max-width: 1220px
   ---------------------------------------- */
@media screen and (max-width: 1220px) {
    .container {
        padding: 0 20px;
    }


    .reviews-section .reviews-title {
        font-size: 36px;
    }
}

/* ----------------------------------------
   TABLET SMALL — max-width: 993px
   ---------------------------------------- */
@media screen and (max-width: 993px) {
    body.home .header {
        border-bottom: 1px solid rgba(238, 238, 238, 1);
    }

    .desktop__logo, .header-navbar-options .navigation__search {
        display: none;
    }

    .mobile__logo {
        display: inline-block;
    }

    .navigation__logo {
        margin-top: unset;
    }

    .navigation__wrap {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-bottom: 0;
    }

    .navigation__wrap .open-menu {
        margin: 0;
    }

    .site-main.openedd_mob-menu {
        position: relative;
        z-index: -1;
    }

    .header-center .menu,
    .navigation__button button:first-child {
        display: none;
    }

    .open-menu,
    .offcanvas-menu__block form button,
    .mob-menu__list {
        display: block;
    }

    .open-menu {
        margin: 10px auto 0;
    }

    .open-menu[aria-labelledby="Open menu"] {
        display: none;
    }

    .offcanvas-menu__block form {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .offcanvas-menu__block form input {
        font-size: 18px;
        line-height: 2;
        padding: 0 0 5px 28px;
        border-bottom: 1px solid #eee;
    }

    .offcanvas-menu__block form input::-webkit-input-placeholder {
        font-size: 13px;
    }

    .offcanvas-menu__block form input::-moz-placeholder {
        font-size: 13px;
    }

    .offcanvas-menu__block form input:-ms-input-placeholder {
        font-size: 13px;
    }

    .offcanvas-menu__block form input::-ms-input-placeholder {
        font-size: 13px;
    }

    .offcanvas-menu__block form input::placeholder {
        font-size: 13px;
    }

    .offcanvas-menu__block form > span {
        display: block;
        width: 17px;
        position: absolute;
        top: 45%;
        -webkit-transform: translateY(-45%);
        -ms-transform: translateY(-45%);
        transform: translateY(-45%);
    }

    .offcanvas-menu__block form > button {
        display: none !important;
    }

    .modal-cart__block .widget_shopping_cart_content {
        height: 100%;
    }


    .modal-cart__block .modal-cart__sum {
        height: auto;
        margin-top: 0;
    }

    .archive__spacial-cat__mobile {
        display: block;
    }

    .category-block .category-list li span,
    .offcanvas-menu__block > span {
        display: none;
    }

    .category-filter__wrap .widget-content {
        position: relative;
        margin: 0;
        padding: 0;
        display: none;
        -webkit-transition: height 0.2s ease;
        -o-transition: height 0.2s ease;
        transition: height 0.2s ease;
    }

    .category-filter__wrap .widget:last-child .nm-widget-title {
        margin-bottom: -1px;
        border-bottom: 1px solid #eee;
    }

    .footer-navigation__logo {
        display: none;
    }

    .footer-navigation__wrap {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .footer-advantages {
        padding: 35px 0 55px;
    }

    .footer-advantages__grid {
        -ms-grid-columns: (1fr) [ 1 ];
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 40px;
    }

    .footer-bottom__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer-bottom__text {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        margin-top: 25px;
    }

    .armbeag-big-card__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .armbeag-faq__content .faq-item .faq-title {
        max-width: 170px;
    }

    .features-section .features__items {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 16px;
    }

    .features-section .features__items .features__item {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 -webkit-calc(50% - 8px);
        -ms-flex: 1 1 calc(50% - 8px);
        flex: 1 1 calc(50% - 8px);
    }

    .armbeag-big-card__content .armbeag-block__section-title,
    .armbeag-faq__content .armbeag-faq__section-title {
        max-width: 100%;
        width: 100%;
    }

    .armbeag-big-card__content {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        gap: 30px;
        margin: 25px 0;
    }

    .mcg-popup__gift-subscribe .mcg-popup__body {
        max-width: 720px;
    }

    .custom-page-contacts .store-information {
        max-width: 100%;
        margin-top: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 50px;
    }
}


/* ----------------------------------------
   MOBILE LARGE — max-width: 768px
   ---------------------------------------- */
@media screen and (max-width: 768px) {


    .section-default-title,
    .category-block__wrap .category__title span,
    .default-page .default-page__header h1 span {
        font-size: 35px;
    }

    .cmplz-cookiebanner .cmplz-title {
        font-size: 29px !important;
    }

    .cf7-form-wrap .wpcf7-submit {
        font-size: 15px;
    }

    .cf7-form-wrap input::-webkit-input-placeholder, .cf7-form-wrap textarea::-webkit-input-placeholder {
        font-size: 14px;
    }

    .cf7-form-wrap input::-moz-placeholder, .cf7-form-wrap textarea::-moz-placeholder {
        font-size: 14px;
    }

    .cf7-form-wrap input:-ms-input-placeholder, .cf7-form-wrap textarea:-ms-input-placeholder {
        font-size: 14px;
    }

    .cf7-form-wrap input::-ms-input-placeholder, .cf7-form-wrap textarea::-ms-input-placeholder {
        font-size: 14px;
    }

    .cf7-form-wrap input::placeholder,
    .cf7-form-wrap textarea::placeholder,
    .cf7-form-wrap .wpcf7-form-control.wpcf7-text,
    .cf7-form-wrap .wpcf7-form-control.wpcf7-tel,
    .cf7-form-wrap .wpcf7-form-control.wpcf7-email,
    .cf7-form-wrap .wpcf7-form-control.wpcf7-textarea, {
        font-size: 14px;
    }
    
    .wpcf7-spinner {
        margin: 0 auto;
    }


    .buy-picture__card--content .buy-picture__card--title {
        margin-bottom: 11px !important;
        font-size: 47px !important;
    }

    .buy-picture__card--content .buy-picture--btn-link {
        width: 227px !important;
        font-size: 20px !important;
        height: 53px !important;
    }

    .section-recommendations {
        padding: 40px 0;
    }

    .reviews-section .reviews-title {
        font-size: 28px;
        height: 32px;
    }

    .reviews-section .reviews-icon,
    .footer-middle .footer-block-title,
    .footer-middle .accordion-header,
    .armbeag-big-card__content .armbeag-block__section-title,
    .armbeag-faq__content .armbeag-faq__section-title {
        font-size: 18px;
    }

    .features-section .features__item-title,
    .features-section .features__item-text {
        font-size: 13px;
    }

    .reviews-section .review-text,
    .reviews-section .reviewer-name,
    .reviews-section .reviewer-location,
    .reviews-section .review-title {
        font-size: 11px;
    }

    .header-top {
        padding: 3px 0;
    }

    .header-top .navigation__delivery {
        font-size: 8px;
    }

    .header-top .navigation__delivery img {
        margin-right: 3px;
        width: 16px;
        height: 9px;
    }

    .navigation-cart .navigation-cart__numb {
        font-size: 9px;
        top: -11px;
        right: -5px;
        min-width: 15px;
        min-height: 15px;
    }

    /*.header-navbar-options svg,
    .switcher-mob-menu svg {
        color: #c4c2c2;
    }*/
    .section-default-title:before, .section-default-title:after,
    .category-block__wrap .category__title span:before,
    .category-block__wrap .category__title span:after,
    .default-page .default-page__header h1 span:before,
    .default-page .default-page__header h1 span:after {
        content: "";
        height: 10px;
        width: 10px;
    }

    .section-default-title:before,
    .section-default-title:after,
    .category-block__wrap .category__title span:before,
    .category-block__wrap .category__title span:after,
    .default-page .default-page__header h1 span:before,
    .default-page .default-page__header h1 span:after,
    .woocommerce__mcg-reviews__form .woocommerce__mcg-review__title-block span:after,
    .woocommerce__mcg-reviews__form .woocommerce__mcg-review__title-block span:before {
        top: 44%;
    }

    .section-default-title:before,
    .category-block__wrap .category__title span:before,
    .default-page .default-page__header h1 span:before,
    .woocommerce__mcg-reviews__form .woocommerce__mcg-review__title-block span:before {
        left: 2px;
    }

    .section-default-title:after,
    .category-block__wrap .category__title span:after,
    .default-page .default-page__header h1 span:after,
    .woocommerce__mcg-reviews__form .woocommerce__mcg-review__title-block span:after {
        right: 2px;
    }


    .navigation__logo {
        max-width: 108px;
    }

    .navigation__button {
        max-width: -webkit-max-content;
        max-width: -moz-max-content;
        max-width: max-content;
    }

    .navigation__wrap .open-menu {
        display: block;
    }

    #main-header > .open-menu {
        display: none;
    }

    .open-menu {
        margin: 0;
    }

    .offcanvas-menu__block {
        top: 100%;
    }


    .mob-menu_about__wrapper,
    .mob-happy-help {
        display: block;
    }


    .mob-menu__list li a {
        font-weight: 500;
    }

    .mob-menu__list .icon-menu-item {
        height: 36px;
        width: 36px;
        margin-right: 6px;
    }


    .reviews-section .reviews-header {
        margin-bottom: 20px;
        gap: 12px;
    }


    .reviews-section .reviews-slider-wrapper {
        gap: 16px;
    }


    /* General */
    section .title,
    .about-wrap__left h2,
    .title {
        font-size: 28px;
    }

    .promocod-modal .nm-shop-notice {
        margin: 11px 0 0;
        padding: 0;
        font-size: 14px;
    }

    .woocommerce-loop-product__title {
        text-align: center;
    }

    .recommendations-price {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .list-product__grid .recommendations-price {
        font-size: 12px;
    }

    .recommendations-card:hover .recommendations-link {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        opacity: 1;
    }

    .section-return-conditions .about-content__title {
        max-width: 100%;
    }

    /* Category filter */
    .category-filter__wrap .nm-widget-title {
        position: relative;
        font-size: 16px;
        color: #888;
        margin-bottom: 0;
        padding: 14px 0;
        border-top: 1px solid #eee;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .category-filter__wrap .nm-widget-title::after {
        position: absolute;
        top: 16px;
        right: 0;
        z-index: 100;
        display: block;
        font-size: 13px;
        font-weight: 400;
        line-height: 14px;
        content: "\e114";
        width: 14px;
        height: 14px;
        text-align: right;
    }


    /* Spoiler */
    .spoiler-trigger {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        text-decoration: none;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .spoiler-trigger .plus {
        display: block;
    }

    .spoiler-trigger.active {
        margin-bottom: 18px;
    }

    .spoiler-trigger.active .plus {
        display: none;
    }

    .spoiler-trigger.active .minus {
        display: block;
    }


    /* Modal cart */
    .modal-cart.active {
        z-index: 1002 !important;
    }

    .modal-cart__block {
        z-index: 1003 !important;
    }

    /* Footer */
    .footer-navigation {
        padding: 48px 0;
    }

    .footer-navigation__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0;
    }

    .footer-navigation__nav {
        width: 100%;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        padding-bottom: 18px;
    }

    .footer-navigation__nav:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .footer-navigation__nav .footer-menu-title {
        margin-top: 18px;
        margin-bottom: 0;
    }

    .footer-bottom__link {
        position: static;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }

    .footer-pay {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer-pay-row {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }

    .form-newsletter input[type=email]:-moz-placeholder-shown {
        font-size: 13px;
        padding: 10px 9px;
    }

    .form-newsletter input[type=email]:-ms-input-placeholder {
        font-size: 13px;
        padding: 10px 9px;
    }

    .form-newsletter input[type=email]:placeholder-shown {
        font-size: 13px;
        padding: 10px 9px;
    }

    .form-newsletter input[type=email] {
        font-size: 13px;
    }

    .form-newsletter button[type=submit] {
        font-size: 16px;
        padding: 9px 15px;
    }

    .mob-menu_about__wrapper .footer-navigation__menu a {
        font-size: 9px;
    }

    /* Popup size */
    .popup-size-wrapper .popup-size {
        width: 90%;
        margin: 0 auto;
        z-index: 100;
        max-height: -webkit-fit-content;
        max-height: -moz-fit-content;
        max-height: fit-content;
        min-height: -webkit-calc(100vh - 88px);
        min-height: calc(100vh - 88px);
    }

    .popup-size-wrapper .popup-labels span {
        font-size: 14px;
    }

    .popup-size-wrapper .popup-size-measurement .popup-size__description h2 {
        font-size: 15px;
    }

    .popup-size-wrapper .popup-size-measurement-title, {
        font-size: 14px !important;
        margin-bottom: 10px !important;
    }

    .popup-size-wrapper .popup-size-table th,
    .popup-size-wrapper .popup-size-table td {
        padding: 12px 0 !important;
    }

    .popup-size-measurement-content {
        padding: 10px 20px !important;
    }

    .popup-size__description {
        padding-bottom: 10px !important;
    }

    .popup-size.popup__inner {
        min-height: unset !important;
    }

    .switcher-body span,
    .switcher-body ul,
    .switcher-body p {
        font-size: 12px !important;
    }

    .swiper-custom-arrow.swiper-button-next,
    .swiper-custom-arrow.swiper-button-prev {
        top: 70%;
        opacity: 1;
    }


    .reviews-section .review-image {
        max-height: 200px;
    }


    .footer-top .footer-navigation__nav,
    .footer-top .footer-block-additional-info {
        display: none;
    }

    .footer-middle .accordion-item {
        border: none;
        -webkit-border-radius: 0;
        border-radius: 0;
        margin-bottom: 0;
    }

    .footer-middle .accordion-header {
        background: transparent;
        color: #fff;
        font-family: "BebasNeue", sans-serif;
        line-height: 18px;
        padding: 10px 15px 9px 0;
        border-bottom: 1px solid #494747FF;
    }

    .footer-middle .accordion-content {
        background: transparent;
        padding: 20px 0;
    }

    .footer-bottom__text {
        font-size: 10px;
        margin-top: 0;
    }

    .footer-middle .mob-accordion__wrapper {
        display: block;
        margin-bottom: 30px;
    }

    .footer-middle .accordion-header:after {
        content: "";
        position: absolute;
        top: 47%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 0;
        background: url('../img/icon-chevron-down-gray.svg') no-repeat center center;
        display: inline-block;
        height: 11px;
        width: 7.52px;
        background-size: 11px;
    }

    .accordion-item.active .accordion-header:after {
        content: "";
        background: url('../img/icon-chevron-up-gray.svg') no-repeat center center;
        background-size: 11px;
    }

    .footer-middle .mob-accordion__wrapper .footer-block-title {
        border-bottom: 1px solid #494747FF;
        margin-bottom: 0;
        padding-bottom: 4px;
    }

    .header-logo {
        height: 28px;
    }

    .header-navbar-options .navigation-cart__icon svg {
        width: 19px;
        height: 19px;
    }

    .switcher-mob-menu svg {
        width: 25px;
        height: 25px;
    }

    .header-center {
        padding: 10px 0;
    }

    .armbeag-faq__content .faq-item .faq-title {
        max-width: 100%;
    }

    .armbeag-big-card__content .armbeag-block__section-title,
    .armbeag-faq__content .armbeag-faq__section-title {
        max-width: 100%;
        width: 100%;
    }

    .armbeag-faq__content .faq-item {
        gap: 10px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .armbeag-big-card__content {
        gap: 30px;
    }

    .section-design-title .title span,
    .section-block-image .title {
        text-align: center;
    }


    .section-default-title, .category-block__wrap .category__title span, .default-page .default-page__header h1 span {
        padding: 0 20px;
    }

    .mcg-popup__gift-subscribe .mcg-popup__body {
        max-width: -webkit-calc(100vw - 30px);
        max-width: calc(100vw - 30px);
    }

    .mcg-popup__gift-subscribe .mcg-popup__main {
        padding: 24px;
    }

    .mcg-popup__gift-subscribe .mcg-popup-widget__icon,
    .mcg-popup__gift-subscribe .mcg-popup-widget:after,
    .mcg-popup__gift-subscribe .mcg-popup-widget:before {
        height: 50px;
        width: 50px;
    }

    .mcg-popup__gift-subscribe .mcg-popup-widget__icon svg {
        width: 25px;
        height: auto;
    }

    .mcg-popup__gift-subscribe .mcg-popup-widget .close {
        width: 15px;
        height: 15px;
    }

    .mcg-popup__gift-subscribe .mcg-popup-widget .close svg {
        width: 100%;
        height: auto;
    }

    .mcg-popup__gift-subscribe .mcg-popup-widget .decor {
        top: -4px;
        left: -6px;
    }

    .mcg-popup__gift-subscribe .mcg-popup__title {
        font-size: 30px;
    }

    .mcg-popup__gift-subscribe .mcg-popup__description {
        font-size: 16px;
    }

    .mcg-popup__gift-subscribe .mcg-popup__description ul {
        margin-top: 10px;
    }

    .mcg-popup__gift-subscribe .mcg-popup__description ul > li {
        width: 78px;
        text-align: left;
    }

    .mcg-popup__gift-subscribe .mcg-popup__description ul > li:before {
        height: 10px;
        width: 10px;
        left: 2px;
        top: 8px;
    }

    .mcg-popup__gift-subscribe .mcg-popup-form input[type=email],
    .mcg-popup__gift-subscribe .mcg-popup-form input[type=submit] {
        height: 48px;
    }

    .mcg-popup__gift-subscribe .mcg-popup-form input[type=email]::-webkit-input-placeholder {
        font-size: 16px;
    }

    .mcg-popup__gift-subscribe .mcg-popup-form input[type=email]::-moz-placeholder {
        font-size: 16px;
    }

    .mcg-popup__gift-subscribe .mcg-popup-form input[type=email]:-ms-input-placeholder {
        font-size: 16px;
    }

    .mcg-popup__gift-subscribe .mcg-popup-form input[type=email]::-ms-input-placeholder {
        font-size: 16px;
    }

    .mcg-popup__gift-subscribe .mcg-popup-form input[type=email]::placeholder {
        font-size: 16px;
    }

    .mcg-popup__gift-subscribe .mcg-popup-form input[type=submit] {
        font-size: 16px;
    }

    .cmplz-cookiebanner .cmplz-message {
        margin-bottom: 50px !important;
    }


    .cmplz-cookiebanner .cmplz-buttons .cmplz-btn {
        font-size: 24px !important;
        height: 61px !important;
        line-height: 1.5;
    }

    .cf7-form-wrap .wpcf7-form-control.wpcf7-text,
    .cf7-form-wrap .wpcf7-form-control.wpcf7-tel,
    .cf7-form-wrap .wpcf7-form-control.wpcf7-email,
    .cf7-form-wrap .wpcf7-form-control.wpcf7-textarea {
        padding: 13px 16px;
    }

    .cf7-form-wrap .wpcf7-form-control.wpcf7-textarea {
        height: 120px;

    }

    .cf7-form-wrap .wpcf7-submit {
        padding: 16px 20px;
        width: 100%;
    }

    .wpcf7-form .field-group:not(.field-group__comment) {
        width: 100%;
    }

    .default-page .default-page__body p.has-large-font-size {
        font-size: 18px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 640px) {

    .woocommerce__mcg-reviews__form-wrapper .avatar-dec h3 {
        font-size: 15px;
    }

    .woocommerce__mcg-reviews__form-wrapper .avatar-dec span,
    .woocommerce__mcg-reviews__form input,
    .woocommerce__mcg-reviews__form select,
    .woocommerce__mcg-reviews__form textarea,
    .woocommerce__mcg-reviews__form label,
    .woocommerce__mcg-reviews__form .woocommerce__mcg-reviews-btns .close-btn,
    .woocommerce__mcg-reviews__form .btn-submit {
        font-size: 13px;
    }


    .woocommerce__mcg-review__title-block {
        margin-bottom: 15px;
        font-size: 35px;
    }

    .woocommerce__mcg-reviews__form .woocommerce__mcg-review__title-block span:after,
    .woocommerce__mcg-reviews__form .woocommerce__mcg-review__title-block span:before {
        height: 10px;
        width: 10px;
    }

    .woocommerce__mcg-review__title-block span {
        padding: 0 20px;
    }

    .woocommerce__mcg-review-close .close-icon {
        width: 15px;
        height: 15px;
    }

    .form-block__flex {
        flex-direction: column;
        gap: 20px;
    }

    .woocommerce__mcg-reviews__form {
        padding: 20px 20px;
    }

    .woocommerce__mcg-reviews__form .avatar__input-label {
        width: 70px;
        height: 70px;
        margin-right: 0;
    }

    .avatar__input-label img {
        width: 35px;
        height: 35px;
    }

    .woocommerce__mcg-reviews__form-wrapper .avatar-dec h3 {
        margin: 0;
    }

    .woocommerce__mcg-reviews__form input[type="text"],
    .woocommerce__mcg-reviews__form input[type="email"],
    .woocommerce__mcg-reviews__form #billing_country,
    .woocommerce__mcg-reviews__form .file__input {
        padding: 10px 5px;
    }

    .woocommerce__mcg-reviews__form .form-block {
        margin-bottom: 15px;
    }

    .form-block__flex {
        gap: 15px;
    }

    .woocommerce__mcg-reviews__form .form-block.rating {
        margin: 10px 0 25px 0;
    }

    .woocommerce__mcg-reviews__form textarea {
        max-height: 100px;
    }

    .woocommerce__mcg-reviews__form .file__input--label span {
        font-size: 11px;
        padding: 5px 15px;
    }

    .woocommerce__mcg-reviews__form .woocommerce__mcg-reviews-btns .close-btn,
    .woocommerce__mcg-reviews__form .btn-submit {
        width: 120px;
        height: 35px;
    }

    .woocommerce__mcg-reviews__form .avatar__input {
        flex-direction: column;
    }
}

/* ----------------------------------------
   MOBILE SMALL — max-width: 576px
   ---------------------------------------- */
@media screen and (max-width: 576px) {
    .woocommerce-breadcrumb a,
    .woocommerce-breadcrumb span {
        font-weight: 400;
    }


    .woocommerce-loop-product__title {
        font-size: 13px;
    }

    .navigation__button {
        max-width: -webkit-max-content;
        max-width: -moz-max-content;
        max-width: max-content;
    }

    .offcanvas-menu__block, .modal-cart__block {
        width: 100%;

    }

    .modal-cart__block {
        padding: 18px;
    }

    .modal-cart__checkout {
        margin-top: 25px;
        padding: 12px 0;
        font-size: 19px;
    }


    .list-product__grid {
        grid-column-gap: 20px !important;
        grid-row-gap: 20px !important;
    }

    .category-block {
        padding: 25px 0;
    }

    .footer-pay-row {
        gap: 10px;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    /* Reviews */
    .reviews-section .reviews-header {
        gap: 8px;
    }

    .reviews-section .reviews-icon {
        font-size: 16px;
    }

    .reviews-section .reviews-title {
        font-size: 22px;
    }

    .reviews-section .reviews-slider-wrapper {
        gap: 0;
    }

    .header-logo {
        height: 45px;
    }

    .woo-mini-cart__bottom-options-order .woo-mini-cart__order-item {
        width: 100%;
    }

    .offcanvas-menu__block {
        padding: 0 18px;
    }


    .footer-bottom__text {
        font-size: 8px;
    }


    .mcg-popup__gift-subscribe .mcg-popup__description {
        font-size: 14px;
    }

    .mcg-popup__gift-subscribe .mcg-popup-form input[type=email]::-webkit-input-placeholder {
        font-size: 13px;
    }

    .mcg-popup__gift-subscribe .mcg-popup-form input[type=email]::-moz-placeholder {
        font-size: 13px;
    }

    .mcg-popup__gift-subscribe .mcg-popup-form input[type=email]:-ms-input-placeholder {
        font-size: 13px;
    }

    .mcg-popup__gift-subscribe .mcg-popup-form input[type=email]::-ms-input-placeholder {
        font-size: 13px;
    }

    .mcg-popup__gift-subscribe .mcg-popup-form input[type=email]::placeholder,
    .mcg-popup__gift-subscribe .mcg-popup-form input[type=submit],
    .mcg-popup__gift-subscribe .mcg-popup__decline {
        font-size: 13px;
    }

    .mcg-popup__gift-subscribe .mcg-popup-form .term label {
        font-size: 11px;
    }

    .mcg-popup__gift-subscribe .mcg-popup__body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .mcg-popup__gift-subscribe .mcg-popup__image {
        width: 100%;
    }

    .mcg-popup__gift-subscribe .mcg-popup__main {
        max-width: unset;
        padding: 24px;
    }

    .mcg-popup__gift-subscribe .mcg-popup__close_mob {
        display: block;
    }

    .mcg-popup__gift-subscribe .mcg-popup__close_pc {
        display: none;
    }

    .mcg-popup__gift-subscribe .mcg-popup__logo {
        display: none;
    }

    .mcg-popup__gift-subscribe .mcg-popup__close svg {
        width: 13px;
        height: 13px;
    }

    .mcg-popup__gift-subscribe .mcg-popup__image img {
        max-height: 236px;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .mcg-popup__gift-subscribe .mcg-popup-form input[type=email],
    .mcg-popup__gift-subscribe .mcg-popup-form input[type=submit] {
        height: 44px;
    }

    .mcg-popup__gift-subscribe .mcg-popup-form input + label:before,
    .mcg-popup__gift-subscribe .mcg-popup-form input:checked + label:after {
        width: 16px;
        height: 16px;
    }

    .mcg-popup__gift-subscribe .mcg-popup-form .form__field, .mcg-popup__gift-subscribe .mcg-popup-form .btn_block {
        margin-bottom: 10px;
    }

    .mcg-popup__gift-subscribe .mcg-popup-form .term span {
        margin-left: 25px;
    }

    .slider-product-item__image {
        height: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }
    
    .slider-product-item__image img {
        display: block;
        width: 360px;
        max-width: none;
        height: 360px;
        max-height: none;
        margin-left: auto;
        margin-right: auto;
    
        -o-object-fit: contain;
        object-fit: contain;
        object-position: center center;
    
        image-rendering: auto;
        transform: none;
        filter: none;
    }

    .swiper-recommendations-slider .btn-link {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        font-size: 16px;
        height: 46px;
    }

    .about-section .about-content__btn-link {
        font-size: 18px !important;
        height: 55px !important;
        margin: 23px auto 0 !important;
        display: block !important;
        width: 300px !important;
        padding: 15px;
    }

    .woo-mini-cart__bottom-options-order .woo-mini-cart__order-item {
        font-size: 9px;
        padding: 5px 2px;
    }

    .modal-cart__close {
        margin-bottom: 8px !important;
    }


    .section-recommendations .swiper-custom-arrow.swiper-button-next,
    .section-recommendations .swiper-custom-arrow.swiper-button-prev {
        top: 35%;
    }

    .form-newsletter button[type=submit] {
        font-size: 13px;
        padding: 0 15px;
    }
}

/* ----------------------------------------
   MOBILE XS — max-width: 480px
   ---------------------------------------- */
@media screen and (max-width: 480px) {

    .section-default-title, .category-block__wrap .category__title span,
    .default-page .default-page__header h1 span {
        font-size: 30px;
    }

    .about-section-title {
        text-align: center;
        display: block;
    }

    .nm-shop-notice {
        font-size: 16px;
        line-height: 1.6;
    }

    .nm-shop-notice span i {
        font-size: 22px;
        margin-right: 5px;
    }

    .woo-mini-cart__bottom-options-order img {
        max-height: 25px;
    }

    .mcg-popup__gift-subscribe .mcg-popup__description p {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .mcg-popup__gift-subscribe .mcg-popup__description span {
        display: inline-block;
        white-space: nowrap;
    }

    .slider-product-item__image {
        height: 235px;
        overflow: hidden;
    }
    
    .slider-product-item__image img {
        width: 335px;
        max-width: none;
        height: 335px;
        max-height: none;
    
        -o-object-fit: contain;
        object-fit: contain;
        object-position: center center;
    }


    .woocommerce__mcg-reviews__form-wrapper .avatar-dec h3 {
        font-size: 13px;
    }

    .woocommerce__mcg-reviews__form-wrapper .avatar-dec span,
    .woocommerce__mcg-reviews__form .file-block {
        font-size: 11px;
    }

    .woocommerce__mcg-review-close {
        top: 13px;
        right: 13px;
    }

    .woocommerce__mcg-reviews__form .woocommerce__mcg-reviews-btns .close-btn,
    .woocommerce__mcg-reviews__form .btn-submit {
        width: 100px;
        height: 25px;
        padding: 2px 10px;
    }

    .woocommerce__mcg-reviews__form .woocommerce__mcg-reviews-btns {
        align-items: center;
    }

    .woocommerce__mcg-review__title-block {
        margin-bottom: 10px;
        font-size: 25px;
    }

    .avatar__input-label {
        min-width: 50px;
        min-height: 50px;
    }

}

/* Popup checkbox validation UI cleanup */
.mcg-popup__gift-subscribe .mcg-popup-form input[name="term"][aria-invalid="true"] + label,
.mcg-popup__gift-subscribe .mcg-popup-form input[name="term"][aria-invalid="true"] + label a {
    color: #d63638;
}

.mcg-popup__gift-subscribe .mcg-popup-form input[name="term"][aria-invalid="true"] + label:before {
    border-color: #d63638;
}
/* Footer checkbox validation UI cleanup */
.footer-subscription__form input[name="term"][aria-invalid="true"] + label,
.footer-subscription__form input[name="term"][aria-invalid="true"] + label a {
    color: #d63638;
}

.footer-subscription__form input[name="term"][aria-invalid="true"] + label:before {
    border-color: #d63638;
}