.menu-nav__item--primary .type-body {
    font-size: 14px !important;
}

.wysiwyg ol {
    padding-left: 1.5rem;
}
.wysiwyg ol li {
    padding-left: 0;
}
.wysiwyg ol li:before {
    display: none;
}

.ui-autocomplete {
    display: none !important;
}

.menu-desktop .menu-nav__link--primary {
    font-weight: 400 !important
}

.btn_market svg {
    width: 130px;
    height: 28px;
}

.btn-coupon {
    width: 50%;
}

.coupon-group {
    width: 100%;
}
@media (min-width: 480px) {
    .coupon-group {
        width: 60%;
    }
}
.active-basket-coupon {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.menu-nav__link.color-alert,
.menu-mobile__link.color-alert {
    color: red;
}

h2.type-h4,
h3.type-h4 {
    text-transform: uppercase;
}

/* ---------------- Swiper ---------------- */
[id*="swiper-navigation-"] {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10;
    background: yellow;
}

@media screen and (min-width: 1024px) {
    [id*="swiper-navigation-"] {
        display: block;
    }
}

.swiper-navigation-btn {
    position: absolute;
    top: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    pointer-events: auto;
}
.swiper-navigation-btn.btn__prev {
    left: -44px;
    transform: translate(-50%, -50%);
}

.swiper-navigation-btn.btn__next {
    right: -44px;
    transform: translate(50%, -50%);
}

.swiper-navigation-btn.swiper-button-disabled {
    opacity: .1;
}

.swiper-section {
    position: relative;
    overflow: hidden;
}

.swiper-scrollbar {
    display: none;
    width: 100%;
    height: 2px;
    margin-top: 3rem;
    background-color: rgba(33, 33, 33, .1);
}
.swiper-scrollbar-drag {
    height: 100%;
    background-color: var(--color-brown);
}

.swiper__button {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.swiper__button_prev {
     left: 60px;
}

.swiper__button_next {
    right: 60px;
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    list-style: none;
    overflow-x: clip;
    padding: 0;
    z-index: 1;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.swiper-slide {
    box-sizing: border-box;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 132px;
    height: auto;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}

.swiper-pagination {
    position: absolute;
    left: 50%;
    bottom: 20px;

    display: flex;
    gap: 16px;
    text-align: center;
    -webkit-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(-50%,0,0);
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 2px solid #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: 0 0;
    opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff;
}

@media screen and (max-width: 767px) {
    .swiper__button {
        display: none;
    }
}

.product-miniature {
    height: 100%;
}

.product-miniature__container {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product__description_container {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
}

.product-miniature__bottom {
    width: 100%;
    height: 62px;

    border-top: 1px solid rgba(33, 33, 33, .1);
}

.product-miniature__bottom-container {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    justify-content: space-between;
}

.product-miniature__description {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-miniature__title {
    font-size: 14px;
    line-height: 18px;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-miniature__description p {
    font-size: 12px;
    line-height: 16px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-and-shipping {
    padding: 8px 0 6px;
}

.price {
    font-family: 'PT Serif';
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: var(--color-black);
}

.price--full {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 12px;
    color: #CFCFCF;
    text-decoration: line-through;
}

.product__add_to_basket_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.product__add_to_basket_icon svg {
    width: 24px;
    height: 24px;
}

.product-tag {
    position: absolute;
    left: 0px;
    top: 0px;
    padding: 4px 8px;

    font-family: 'Roboto';
    font-size: 16px;
    line-height: 1;

    color: #fff;
    background-color: #905337;
    z-index: 1;
}

.product-tag span {
    display: none;
}

.product-tag--element {
    top: 0;
    font-weight: 500;
}

.sale-block {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sale-block h4 {
    font-size: 18px;
    line-height: normal;
}

.sale-block p {
    padding-top: 1rem;
    line-height: inherit;
}

.sale-block img {
    max-width: 100px;
}

.sale-block--link {
    display: inline-block;
    text-decoration: underline;
    color: #905337;
}

.sale-block--link:hover {
    text-decoration: none;
}

.sale-block--text {
    line-height: normal;
    overflow: hidden;
}

.product-thumbnail .figure__container {
    padding: 4px;
}

@media screen and (min-width: 560px) {
    .swiper-slide {
        width: calc(100% / 3);
    }

    .product-tag {
        padding: 8px 12px;
        font-size: 16px;
    }

    .product-tag span {
        display: inline;
    }

    .product__add_to_basket_icon {
        width: 56px;
        height: 56px;
    }

    .product__add_to_basket_icon svg {
        width: 32px;
        height: 32px;
    }

    .product-thumbnail .figure__container {
        padding: 8px;
    }

    .product-miniature__bottom-container {
        padding-top: 4px;
    }

    .product-price-and-shipping {
        padding: 10px 0;
    }

    .price {
        font-size: 22px;
        line-height: 24px;
    }

    .price--full {
        font-size: 14px;
        line-height: 14px;
    }

    .product-miniature__title {
        font-size: 20px;
        line-height: 28px;
    }

    .product-miniature__description p {
        font-size: 14px;
        line-height: 22px;
    }
}

@media screen and (min-width: 768px) {
    .just-swiper__button_container {
        display: flex;
    }

    .swiper-slide {
        width: calc(100% / 4);
    }
}

@media screen and (max-width: 1023px) {
        .sale-block img {
        max-width: 75px;
    }

    .sale-block h4 {
        font-size: 14px;
    }

    .sale-block p {
        padding-top: 0;
        font-size: 12px;
    }
}
@media screen and (min-width: 1024px) {
    .just-swiper {
        overflow-x: hidden;
    }

    .swiper-scrollbar {
        display: block;
    }

    .swiper-slide {
        width: 100%
    }
}

.cookie-policy{
    width: 100%;
    z-index: 1000;
    position: fixed;
    bottom: 0;
}
.cookie-policy.hide-policy{
    display: none!important;
}
.cookie-policy.show-policy{
    display: block!important;
}
.cookie-policy .news-detail-common {
    margin-bottom: 0;
}

.cookie-policy-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 6px 9px;
    background-color: #f9e7da;
}

.cookie-policy-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: left;
    color: #000;
}

.cookie-policy-text a {
    color: #000;
    text-decoration: underline;
}

.cookie-policy-button {
    padding: 5px 19px 5px 19px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    color: #fff;
    background-color: #905337;
    border-radius: 50px;
    cursor: pointer;
}
