@charset "utf-8";
/***
    The new CSS reset - version 1.8.5 (last updated 14.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/

/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" attribute is exclud, because otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
    cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
    list-style: none;
}

/* For images to not be able to exceed their container */
img {
    max-inline-size: 100%;
    max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
    -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
    white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
    -webkit-appearance: revert;
    appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
    all: revert;
}

/* reset default text opacity of input placeholder */
::placeholder {
    color: unset;
}

/* remove default dot (•) sign */
::marker {
    content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
    display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
    -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
    all: revert;
}

h1,
h2,
h3,
h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

h1 span,
h2 span,
h3 span,
h4 span {
    font-family: 'Roboto', sans-serif;
}

body {
    background: #EAEAEA;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #333;
    cursor: default;
}

.main_wrapper {
    margin: 0 auto;
    width: 100%;
    background: #EAEAEA;
    max-width: 480px;
    position: relative;
}

.container {
    padding: 0 20px;
    width: 100%;
}

header {
    width: 100%;
    display: flex;
    align-content: center;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 480px;
    margin: 0 auto;
    transition: 0.5s;
    transform: translate(0, -100%);
}

header.active {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    transform: translate(0, 0);
    transition: 0.5s;
    z-index: 101;
    box-shadow: 0px 4px 6px rgb(0 0 0 / 10%);
}

.header_top {
    width: 100%;
    height: 60px;
    transition: 0.5s;
    display: flex;
    align-content: center;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background: #262626;
}

header.active .header-top {
    box-shadow: 0px 4px 6px rgb(0 0 0 / 20%);
}

a.header_top_logo {
    width: 78px;
    height: 44px;
    transition: 0.6s;
    display: block;
}

.header_top .container {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: space-between;
}

a.header_top_logo img {
    width: 100%;
}


.header_top_timer_block {
    color: white;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.header_top_timer_block p {
    width: 90px;
    font-size: 12px;
    line-height: 16px;
}



.header_top_timer {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.timer_item .text {
    margin: 0 0 4px;
    font-size: 9px;
    line-height: 12px;
    text-transform: uppercase;
}

.timer_item .count {
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    position: relative;
    width: 100%;
}

.timer_item .count:before {
    display: block;
    content: ':';
    width: 10px;
    line-height: 24px;
    position: absolute;
    top: 0;
    right: -5px;
}

.timer_item {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 60px;
    text-align: center;
    position: relative;
}

.count.seconds:before {
    display: none;
}

.header_bottom {
    width: 100%;
    border-bottom: 3px solid #f3f3f3;
    background: white;
}

ul.header_bottom_tabs {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

ul.header_bottom_tabs li a {
    padding: 10px 10px;
    display: block;
    margin-bottom: -3px;
}

ul.header_bottom_tabs li a.active {
    border-bottom: 3px solid #00796B;
    font-weight: bold;
}

h1.offer_title {
    text-align: center;
    padding: 20px 0;
}

h1.offer_title .text {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    font-size: 44px;
    line-height: 40px;
    text-transform: uppercase;
}

h1.offer_title .text span {
    display: block;
    font-size: 36px;
    color: #00796B;
    text-transform: initial;
}

.offer_top {
    text-align: center;
}

.offer_die_block .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.offer_die_green {
    padding: 6px 10px;
    background: #00796B;
    margin-right: 10px;
    border-radius: 20px;
    color: #FFFFFF;
    /* font-weight: bold; */
    font-size: 13px;
}

.offer_die_orange {
    padding: 6px 10px;
    background: #00796B;
    margin-right: 10px;
    border-radius: 20px;
    color: white;
    /* font-weight: bold; */
    font-size: 13px;
    text-transform: uppercase;
}

.offer_rating_star_block {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    margin: 0 auto 10px;
}

.offer_rating_star {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

.offer_rating_star svg {
    width: 18px;
    margin: 0 0 0 4px;
}

.offer_rating_text {
    margin: 0 0 0 10px;
    font-size: 14px;
}

.offer_rating .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.offer_rating {
    padding: 10px 0 0 0;
}

.offer_trust_strip {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 8px;
    margin: 0 auto 15px;
}

.offer_trust_item {
    flex: 1 1 0;
    text-align: center;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    background: #00796B;
    border: 1px solid #00695C;
    border-radius: 12px;
    padding: 8px 6px;
    box-shadow: 0 2px 6px rgba(31, 46, 61, 0.1);
}

.offer_bottom {
    padding: 0px 0;
    position: relative;
    font-size: 0;
}

.offer_bottom_single img {
    width: 100%;
    border-radius: 0px;
    box-shadow: 0 4px 12px rgba(31, 46, 61, 0.14);
}

.offer_bottom .swiper-pagination {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 5;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 27, 37, 0.38);
    border-radius: 20px;
    padding: 4px 8px;
    backdrop-filter: blur(1px);
}

.swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    opacity: 1;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.swiper-pagination-bullet-active {
    background: #00796B;
    border-color: #00796B;
}

.offer_pitch {
    margin: 14px 10px 18px;
    padding: 12px;
    border-radius: 12px;
    background: #262626;
    border: 1px solid #333333;
    box-shadow: 0 4px 12px rgba(31, 46, 61, 0.1);
}

.offer_pitch h3 {
    margin: 0 0 8px;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
}

.offer_pitch p {
    margin: 0;
    color: #EEEEEE;
    font-size: 16px;
    line-height: 1.45;
    text-wrap: balance;
    text-align: center;
}

.temporary_block {
    display: flex;
    flex-direction: row;
    align-content: flex-start;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 0 20px 0;
}

.temporary_block_color {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    width: 50%;
}

.temporary_block_size {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    width: 50%;
}

.temporary_block h3 {
    font-size: 24px;
}

.temporary_color {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.temporary_color span {
    width: 28px;
    height: 28px;
    display: block;
    margin: 10px 10px 0 0;
    border-radius: 8px;
}

.temporary_size {
    margin: 10px 0 0 0;
}

.benefit_block {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 12px 6px;
    margin-top: 6px;
    background: #262626;
    border-radius: 14px 14px 0 0;
    box-shadow: 0 4px 12px rgba(31, 46, 61, 0.14);
}

.benefit {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    border: none;
    border-radius: 18px;
    overflow: hidden;
}

.benefit_left {
    background: #00796B;
    color: #fff;
    padding: 4px 10px;
    font-weight: 700;
}

.benefit_right {
    padding: 4px 10px;
    font-weight: bold;
    color: #262626;
    background: #FFFFFF;
}

.price_block {
    padding: 6px 12px 12px;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    background: #262626;
    border-radius: 0 0 14px 14px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(31, 46, 61, 0.14);
}

.price_left {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 50%;
}

.price_left-old {
    font-size: 34px;
    text-decoration: line-through;
    color: #BBBBBB;
    line-height: 1;
}

.price_left-new {
    font-size: 48px;
    color: #f63a3e;
    font-weight: bold;
    line-height: 1;
}

.price_right {
    width: 50%;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.price_right_die {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

.price_right_die svg {
    width: 44px;
    height: 44px;
    border-radius: 44px;
    background: #00796B;
    padding: 5px;
}

.price_right_die p {
    text-wrap: balance;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 0 10px;
    max-width: 160px;
    color: #FFFFFF; /* brief: white text on the dark block */
}

/* price layout: benefit badge above right delivery block */
.price_block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "left benefit"
        "left right";
    column-gap: 10px;
    row-gap: 8px;
    align-items: center;
}

.price_block>.price_left {
    grid-area: left;
    width: 100%;
    padding-top: 8px; /* the old price sat against the block's top edge (2026-09-22) */
}

.price_block>.benefit_block {
    grid-area: benefit;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    justify-content: center;
}

.price_block>.price_right {
    grid-area: right;
    width: 100%;
}

.btn {
    width: 100%;
    display: block;
    padding: 20px 0;
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    border-radius: 70px;
}

div:has(> a.btn.btn_order) {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 20px;
}

.quick-order-cta {
    margin: 0px 20px 22px;
    padding: 14px 12px 16px;
    border-radius: 14px;
    background: #262626;
    box-shadow: 0 4px 12px rgba(31, 46, 61, 0.14);
    text-align: center;
}

.quick-order-cta__title {
    margin: 0 0 6px;
    color: #FFFFFF;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}

.quick-order-cta__text {
    margin: 0 0 12px;
    color: #EEEEEE;
    font-size: 15px;
    line-height: 1.35;
}

.quick-order-cta__button-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

a.btn.btn_order {
    width: clamp(300px, 86%, 420px);
    min-width: 300px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    max-width: 420px;
    padding: 8px 0 36px;
    border: 2px solid #9E1F1F;
    background: #C62828;
    color: #fff;
    box-shadow: 0 6px 14px rgba(31, 46, 61, 0.24);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

a.btn.btn_order:hover {
    background: #A32222;
    box-shadow: 0 8px 16px rgba(31, 46, 61, 0.28);
}

a.btn.btn_order:active {
    transform: translateY(1px);
    box-shadow: 0 3px 8px rgba(31, 46, 61, 0.22);
}

/* Test effect: zipper teeth + moving slider */
a.btn.btn_order::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 74%;
    height: 8px;
    border-radius: 8px;
    background:
        repeating-linear-gradient(90deg,
            rgba(236, 242, 248, 0.95) 0 6px,
            rgba(130, 148, 166, 0.95) 6px 9px) center / 100% 6px no-repeat,
        linear-gradient(90deg, rgba(64, 83, 101, 0.8), rgba(87, 110, 132, 0.8)) center / 100% 1px no-repeat;
    opacity: 0.9;
    pointer-events: none;
}

a.btn.btn_order::after {
    content: "";
    position: absolute;
    top: calc(74% - 5px);
    left: 12%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fff3d6 0 28%, #f3c785 29% 60%, #b7772f 61% 100%);
    border: 1px solid rgba(137, 87, 33, 0.9);
    box-shadow: 0 2px 6px rgba(57, 33, 12, 0.35);
    animation: btn-zipper-slider 2s linear infinite alternate;
    pointer-events: none;
}

@keyframes btn-zipper-slider {
    0% {
        left: 12%;
    }

    100% {
        left: calc(88% - 18px);
    }
}

ul.step_list {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
}

ul.step_list li {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 20px 0;
}

ul.step_list li img {
    width: 70px;
    height: 70px;
    border-radius: 50px;
}

.step_text {
    display: flex;
    margin: 0 0 0 20px;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
}

.step_text span {
    font-weight: bold;
    display: block;
}

.step_text p {
    margin: 5px 0 0 0;
}

h2 .text {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    font-size: 25px;
    line-height: 31px;
    padding: 0 0 20px 0;
    text-transform: uppercase;
}

h2 .text span {
    display: block;
    font-size: 30px;
    color: #00796B;
}

.description li {
    padding: 8px 16px 8px 50px;
    position: relative;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    color: black;
    /*background: url(../images/offer__tick_icon.png) 16px 45% no-repeat;*/
    background-size: 24px;
    border-radius: 25px;
    display: inline-block;
    text-wrap: balance;
    margin: 5px 0;
}

.description li:nth-child(odd) {
    /*background: #ededed url(../images/offer__tick_icon.png) 16px 45% no-repeat;*/
    background-size: 24px;
}

ul.feature-list {
    margin: 0 0 20px;
    padding: 20px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

ul.feature-list li {
    position: relative;
    padding: 10px 14px 10px 46px;
    border-radius: 14px;
    background: #262626;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}

ul.feature-list li::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 22px;
    height: 22px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #00796B;
    box-shadow: 0 2px 6px rgba(31, 46, 61, 0.2);
}

ul.feature-list li::after {
    content: "✓";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-55%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

section.faq-section {
    margin: 20px 0 20px;
}

section.faq-section h2 {
    text-align: center;
}

section.faq-section h2 .text {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 14px;
    padding: 0;
    width: auto;
    max-width: 100%;
    font-size: clamp(20px, 6vw, 30px);
    line-height: 1.2;
    color: #000000;
    text-wrap: balance;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 16px;
}

.faq-item {
    background: #262626;
    border: 1px solid #333333;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(31, 46, 61, 0.1);
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    color: #FFFFFF;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    cursor: pointer;
}

.faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: #00796B;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 16px;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: none;
    border-top-color: #444444;
    padding: 10px 16px 14px;
}

.faq-answer p {
    margin: 0;
    color: #EEEEEE;
    font-size: 16px;
    line-height: 1.45;
}

section.description ul {
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
}

.feature_overview {
    margin: 0 0 22px;
    padding: 12px;
    background: #262626;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(31, 46, 61, 0.12);
}

.feature_overview img {
    width: 100%;
    border-radius: 10px;
    margin: 0 0 10px;
}

.feature_overview h3 {
    margin: 0 0 10px;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
}

.feature_overview p {
    margin: 0;
    color: #EEEEEE;
    font-size: 16px;
    line-height: 1.45;
    text-wrap: balance;
    text-align: center;
}

.feature_overview ul {
    margin: 0;
    gap: 8px;
}

.feature_overview li {
    position: relative;
    width: 100%;
    padding: 9px 12px 9px 38px;
    border-radius: 10px;
    background: #333333;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
}

.feature_overview li::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #00796B;
}

.text_block p {
    margin: 20px 0;
    font-size: 18px;
    text-wrap: balance;
}

.text_block img {
    border-radius: 8px;
}

section.description {
    padding: 0 0 20px 0;
}


.characteristic_item:nth-child(odd) {
    background: #ededed;
    border-radius: 8px;
}

.characteristic_item .text {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 700;
    text-wrap: balance;
}

.characteristics_list2 {
    padding: 0 0 20px 0;
}

section.order_form {
    padding: 20px 0;
    background: #00796B;
}

.order_form form {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.order_form form h2 .text {
    color: white;
}

.order_form form input {
    width: 100%;
    height: 60px;
    background: white;
    margin: 0 0 20px 0;
    max-width: 80%;
    border-radius: 70px;
    padding: 0 20px;
}

.order_form form button {
    width: 100%;
    height: 60px;
    background: #C62828;
    max-width: 80%;
    padding: 0 20px;
    color: white;
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    border-radius: 70px;
}

section.order_form {
    padding: 20px 0;
    background: #9b9b9b;
}

.order_form form {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.order_form form h2 .text {
    color: white;
}

.order_form form input {
    width: 100%;
    height: 60px;
    background: white;
    margin: 0 0 20px 0;
    max-width: 80%;
    border-radius: 70px;
    padding: 0 20px;
}

.order_form form button {
    width: 100%;
    height: 60px;
    background: #00796B;
    max-width: 80%;
    padding: 0 20px;
    color: white;
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    border-radius: 70px;
}

section.feedback {
    padding: 24px 0 10px;
}

section.feedback h2 {
    text-align: center;
}

section.feedback h2 .text {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: auto;
    max-width: 100%;
    font-size: clamp(20px, 6vw, 30px);
    line-height: 1.2;
    white-space: nowrap;
    color: #000000;
    padding-bottom: 14px;
}

section.feedback h2 .text span {
    display: inline-flex;
    font-size: 1.05em;
    line-height: 1;
    margin: 0;
    color: #00796B;
}

.btn_feedback {
    color: #00796B;
    border: 3px solid #00796B;
}

.feedback_item {
    margin: 20px 0 0 0;
    border-radius: 12px;
    background: #262626;
    border: 1px solid #333333;
    box-shadow: 0 4px 12px rgba(31, 46, 61, 0.12);
    padding: 16px;
}

.feedback_item_rating_star_block {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.feedback_item_rating_star {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

.feedback_item_rating_text {
    margin: 0 0 0 10px;
    font-size: 14px;
    color: #EEEEEE;
}

.feedback_item_rating_star svg {
    width: 18px;
    margin: 0 0 0 4px;
}

h4.feedback_item_name {
    font-size: 20px;
    line-height: 1.25;
    color: #FFFFFF;
}

span.feedback_item_date {
    padding: 8px 0;
    display: block;
    color: #BBBBBB;
    font-size: 14px;
    font-weight: 600;
}

.feedback_item_text {
    padding: 14px 0;
    font-size: 16px;
    line-height: 1.4;
    color: #EEEEEE;
}

/* Chat-like layout inside each review slide */
.feedback-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    margin-bottom: 0;
    font-size: 16px;
    box-sizing: border-box;
    padding: 0 8px;
}

.feedback-swiper {
    margin-top: 6px;
    padding: 12px 8px;
    background: #262626;
    border: 1px solid #333333;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(31, 46, 61, 0.12);
}

.feedback-swiper .feedback_item {
    position: relative;
    margin: 0;
    max-width: 94%;
}

.feedback-swiper .feedback_item:first-child {
    align-self: flex-start;
}

.feedback-swiper .feedback_item:first-child::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 16px;
    width: 14px;
    height: 14px;
    background: #262626;
    border-left: 1px solid #333333;
    border-bottom: 1px solid #333333;
    transform: rotate(45deg);
}

.feedback-swiper .feedback_item:first-child .feedback_item_name {
    margin: 0;
    padding-right: 110px;
    line-height: 1.25;
}

.feedback-swiper .feedback_item:first-child .feedback_item_date {
    position: absolute;
    top: 20px;
    right: 16px;
    padding: 0;
    margin: 0;
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #BBBBBB;
    white-space: nowrap;
}

.feedback-swiper .feedback_item:last-child {
    align-self: flex-end;
    background: #333333;
    border-color: #444444;
}

.feedback-swiper .feedback_item:last-child::before {
    content: "";
    position: absolute;
    right: -7px;
    top: 16px;
    width: 14px;
    height: 14px;
    background: #333333;
    border-right: 1px solid #444444;
    border-top: 1px solid #444444;
    transform: rotate(45deg);
}

@media (max-width: 440px) {
    .feedback-swiper {
        padding: 10px 6px;
        border-radius: 12px;
    }

    .feedback-swiper .swiper-slide {
        padding: 0 6px;
    }
}

footer {
    background: #262626;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    color: white;
    font-size: 14px;
    margin: 0 0 104px 0;
}

.footer_top .container,
.footer_bottom .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    text-align: center;
}

.footer_top,
.footer_bottom {
    width: 100%;
}

.footer_top a.header_top_logo {
    margin: 30px 0;
}

footer p {
    margin: 5px;
}

.footer_bottom {
    padding: 20px 0;
}

.footer_bottom a {
    margin: 0 0 10px 0;
    text-decoration: underline;
}

main {
    margin: 102px 0 0 0;
    padding-bottom: 130px;
}

.body_modal_new_feedback {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /* opacity: 0; */
    z-index: 101;
    background: rgb(32 34 45 / 70%);
    width: 100%;
    height: 100dvh;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.body_modal_good_feedback {
    display: none;
}


.modal_bottom {
    position: fixed;
    bottom: 0;
    max-width: 480px;
    width: 100%;
    background: #EAEAEA;
    border-top: 1px solid #cccccc;
    border-radius: 14px 14px 0 0;
    z-index: 101;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    box-shadow: 0 -6px 14px rgba(31, 46, 61, 0.18);
    left: 50%;
    transform: translate(-50%, 0);
    height: 104px;
}

a.modal_bottom_button {
    width: 100%;
    background: #C62828;
    max-width: 60%;
    padding: 18px 14px;
    color: white;
    font-size: 22px;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    border-radius: 70px;
    display: block;
    border: 2px solid #9E1F1F;
    box-shadow: 0 4px 10px rgba(31, 46, 61, 0.2);
}

.price_and_sale_block {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: center;
}

.price_and_sale_block_top {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
}

.old_price {
    text-decoration: line-through;
    font-size: 18px;
    color: #777777;
}

.sale_block {
    font-size: 20px;
    padding: 3px 8px;
    background: #00796B;
    border-radius: 8px;
    color: white;
    margin: 0 0 0 10px;
}

.price_new {
    font-size: 28px;
    color: #f63a3e;
    font-weight: 700;
}


.up {
    position: fixed;
    bottom: 124px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: #00796B;
    border: 2px solid #00695C;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 6px 14px rgba(31, 46, 61, 0.24);
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
    z-index: 120;
}

.up:hover {
    background: #00695C;
    transform: translateY(-2px);
}

.up .icon {
    width: 100%;
    height: 100%;
}

.up .icon path {
    fill: #EAEAEA;
}

h4.feedback_item_name span {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    background: #00796B;
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    padding: 6px 10px 3px 10px;
    border-radius: 20px;
    margin: 0 10px 0 0;
}

.feedback_item_text.feedback_item_text_company {
    padding: 0 0;
}

.modal_feedback {
    /* margin: 50% auto 0 auto; */
    width: 100%;
    background: #EAEAEA;
    max-width: 480px;
    border-radius: 8px;
    padding: 20px;
}

.modal_feedback_top {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 20px 0;
}

svg.close {
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: 0.6s all;
}

svg.close:hover {
    transform: rotate(180deg);
}

.modal_feedback_top h3 {
    font-size: 30px;
}

.modal_feedback_bottom input {
    width: 100%;
    height: 60px;
    background: #ededed;
    margin: 0 0 20px 0;
    max-width: 80%;
    border-radius: 70px;
    padding: 0 20px;
    font-weight: 600;
}

.modal_feedback_bottom textarea {
    width: 100%;
    height: 100px;
    background: #ededed;
    margin: 0 0 20px 0;
    max-width: 80%;
    border-radius: 30px;
    padding: 20px 20px;
    font-weight: 600;
}

.modal_feedback_bottom {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.modal_feedback_bottom button {
    width: 100%;
    height: 60px;
    background: #C62828;
    max-width: 80%;
    padding: 0 20px;
    color: white;
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    border-radius: 70px;
    margin: 20px 0 0 0;
    cursor: pointer;
    transition: 0.6s all;
}

.modal_feedback_bottom button:hover {
    opacity: 0.5;
}

.input-file {
    position: relative;
    display: inline-block;
    padding: 20px 0;
    width: 80%;
}

.input-file-btn {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    font-size: 14px;
    vertical-align: middle;
    color: rgb(255 255 255);
    text-align: center;
    border-radius: 20px;
    background-color: #00796B;
    line-height: 22px;
    height: 40px;
    padding: 10px 20px;
    box-sizing: border-box;
    border: none;
    margin: 0;
    transition: background-color 0.2s;
}

.input-file-text {
    padding: 0 10px;
    line-height: 40px;
    display: inline-block;
}

.input-file input[type=file] {
    position: absolute;
    z-index: -1;
    opacity: 0;
    display: block;
    width: 0;
    height: 0;
}

/* Focus */
.input-file input[type=file]:focus+.input-file-btn {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

/* Hover/active */
.input-file:hover .input-file-btn {
    background-color: #c16d0a;
}

.input-file:active .input-file-btn {
    background-color: #2E703A;
}

/* Disabled */
.input-file input[type=file]:disabled+.input-file-btn {
    background-color: #fff;
}

.modal_rating {
    width: 80%;
}

.body_modal_good_feedback {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /* opacity: 0; */
    z-index: 101;
    background: rgb(32 34 45 / 70%);
    width: 100%;
    height: 100dvh;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 18px;
    text-align: center;
}

.btn-up_hide {
    display: none;
}

.btn-up_hiding {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}

section.characteristic h2 .text {
    padding: 20px 0;
}

.swiper-slide {
    margin-bottom: 0px;
    font-size: 0;
}

.feedback_item_img img {
    width: 100%;
    max-width: 170px;
    border-radius: 8px;
}

.video_block {
    overflow: hidden;
    position: relative;
    height: auto;
    padding: 10px 0 20px;
    margin: 0 20px;
}

#video h2 {
    margin: 0 0 12px;
    font-size: 26px;
    line-height: 1.2;
    text-align: center;
    color: #000000;
    font-weight: 700;
}

#video p {
    margin: 0 0 14px;
    padding: 0 8px;
    font-size: 17px;
    line-height: 1.45;
    text-align: center;
    color: #444444;
    text-wrap: balance;
}

#video video {
    display: block;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(31, 46, 61, 0.18);
}

.video_block img {
    width: 100%;
    margin: 0 0 -6px 0;
}

.video_block iframe {
    border-radius: 8px;
    border: none;
}

.video_block .youtube {
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 440px) {
    .container {
        padding: 0 10px;
    }

    .price_block {
        grid-template-columns: 33% 67%;
        grid-template-areas:
            "left benefit"
            "left right";
        column-gap: 8px;
        row-gap: 6px;
        align-items: start;
    }

    .price_block>.price_left {
        justify-self: start;
        align-self: start;
        text-align: left;
        align-items: center;
    }

    .price_block>.price_right {
        justify-self: start;
        align-self: start;
    }

    .price_right_die {
        justify-content: flex-start;
        gap: 8px;
    }

    .price_right_die svg {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
    }

    .header_top_timer_block p {
        font-size: 10px;
        line-height: 12px;
        width: 70px;
    }

    ul.header_bottom_tabs li a {
        padding: 10px 5px;
        font-size: 14px;
    }

    h1.offer_title .text {
        font-size: 36px;
        line-height: 1.2;
    }

    h2 .text {
        font-size: 36px;
        line-height: 1.2;
    }

    .offer_trust_item {
        font-size: 12px;
        padding: 7px 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 34px;
    }

    #video h2 {
        font-size: 24px;
    }

    #video p {
        font-size: 15px;
    }

    h4.feedback_item_name {
        font-size: 18px;
    }

    .feedback_item_text {
        font-size: 16px;
    }

    section.feedback h2 .text span {
        font-size: 28px;
    }

    span.feedback_item_date {
        font-size: 14px;
    }

    .text_block p {
        font-size: 16px;
    }

    .feature_overview h3 {
        font-size: 20px;
    }

    .feature_overview p {
        font-size: 15px;
    }

    .feature_overview li {
        font-size: 14px;
    }

    .faq-question {
        font-size: 16px;
        padding: 12px 14px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .characteristic_item .text {
        font-size: 14px;
    }

    .btn {
        font-size: 18px;
    }

    .quick-order-cta__title {
        font-size: 20px;
    }

    .quick-order-cta__text {
        font-size: 14px;
    }

    a.modal_bottom_button {
        font-size: 16px;
        padding: 14px 10px;
    }

    .price_new {
        font-size: 24px;
    }

    .old_price {
        font-size: 16px;
    }

    .sale_block {
        font-size: 18px;
        padding: 2px 6px;
    }

    .price_left-new {
        font-size: 36px;
    }

    .price_left-old {
        font-size: 26px;
    }

    h4.feedback_item_name span {
        font-size: 16px;
    }

    .modal_bottom {
        padding: 10px;
        height: 80px;
    }

    footer {
        margin: 0 0 80px 0;
    }

    main {
        padding-bottom: 100px;
    }
}

.swiper-wrapper {
    height: auto !important;
}

/* Uzbek prices: seven digits in a column drawn for two. The amount sits over the currency,
   the way template_v1 and the department's price-display module draw it (2026-09-22). */
.price_left-old { white-space: nowrap; font-size: 18px; }
.price_left-new { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.price_left-new .price-amount { font-size: 30px; white-space: nowrap; }
.price_left-new .price-currency { font-size: 16px; font-weight: 700; margin-top: 2px; }
.benefit_right { white-space: nowrap; font-size: 15px; }
.modal_bottom .old_price, .modal_bottom .price_new { white-space: nowrap; }
