:root {
    --milk: #f4f1ec;
    --cream: #ebe4da;
    --paper: #fffdfa;
    --champagne: #d5b46e;
    --champagne-soft: #f1e3c4;
    --powder: #d7b9ad;
    --powder-dark: #9d5361;
    --olive: #23443d;
    --olive-dark: #172b28;
    --coffee: #6b5748;
    --ink: #202124;
    --muted: #68615b;
    --line: rgba(32, 33, 36, .11);
    --shadow: 0 24px 60px rgba(23, 43, 40, .15);
    --shadow-soft: 0 12px 35px rgba(23, 43, 40, .09);
    --radius: 8px;
    --radius-sm: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background: linear-gradient(135deg, #f5f2ed 0%, #e9e2d8 48%, #f8f6f2 100%);
    color: var(--ink);
    font-family: "Avenir Next Cyr", "AvenirNextCyr", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.main_wrapper {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    background: var(--paper);
    box-shadow: 0 0 80px rgba(23, 43, 40, .09);
    overflow: hidden;
}

.offer_section,
.characteristics_section,
.measurements_section,
.problems_section,
.unique_reviews_section,
.order_info2_section {
    position: relative;
    padding: 64px 18px;
}

.title,
.main_title,
.reviews_title {
    color: var(--ink);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.08;
}

.section_intro {
    max-width: 720px;
    margin-bottom: 34px;
}

.section_intro.centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section_intro .title,
.reviews_title {
    margin: 8px 0 14px;
    font-size: clamp(30px, 6vw, 48px);
}

.section_intro p {
    color: var(--muted);
    font-size: 16px;
}

.section_kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--olive);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.status_dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #3f8c68;
    box-shadow: 0 0 0 5px rgba(63, 140, 104, .14);
}

.button {
    display: inline-flex;
    min-height: 58px;
    padding: 0 28px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--olive), var(--olive-dark));
    box-shadow: 0 13px 28px rgba(63, 73, 57, .25);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:hover {
    box-shadow: 0 17px 35px rgba(63, 73, 57, .31);
    transform: translateY(-2px);
}

.button:focus-visible,
.field:focus-visible,
.thumb:focus-visible {
    outline: 3px solid rgba(157, 83, 97, .32);
    outline-offset: 3px;
}

.button_secondary {
    border: 1px solid rgba(63, 73, 57, .22);
    background: rgba(255, 255, 255, .75);
    box-shadow: none;
    color: var(--olive-dark);
}

.button_secondary:hover {
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.button_small {
    min-height: 48px;
    margin-top: 22px;
    padding: 0 22px;
    font-size: 14px;
}

/* Hero */
.hero_section {
    padding: 18px 14px 0;
    background: linear-gradient(180deg, #fffdfa 0%, #f2ebe1 100%);
}

.hero_content {
    display: grid;
    gap: 0;
    max-width: 1160px;
    margin: 0 auto;
}

.hero_copy {
    display: contents;
}

.hero_copy > .eyebrow { order: 1; }
.hero_copy > .main_title { order: 2; }
.hero_copy > .subtitle { order: 3; }
.hero_copy > .hero_badges { order: 4; }
.hero_copy > .price_block { order: 5; }
.hero_copy > .wholesale_note { order: 6; }
.hero_copy > .hero_actions { order: 7; }
.hero_image_block { order: 8; }

.hero_code {
    display: none;
}

.hero_copy .main_title {
    max-width: 720px;
    margin: 14px 0 18px;
    font-size: clamp(36px, 9vw, 60px);
}

.hero_copy .main_title em {
    color: var(--powder-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.hero_copy .subtitle,
.final_offer .subtitle {
    max-width: 630px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.hero_badges {
    display: flex;
    margin: 18px 0 14px;
    gap: 8px;
    flex-wrap: wrap;
}

.hero_badges span,
.description_points span,
.advantages_cloud span {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .67);
    color: var(--coffee);
    font-size: 13px;
    font-weight: 600;
}

.hero_badges span {
    padding: 8px 13px;
}

.price_block {
    display: flex;
    margin: 16px 0 0;
    align-items: flex-end;
    gap: 26px;
    max-width: 100%;
    flex-wrap: wrap;
    row-gap: 8px;
}

.price_item {
    display: flex;
    min-width: max-content;
    flex-direction: column;
}

.price_item > span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    white-space: nowrap;
    text-transform: uppercase;
}

.price_item .value {
    margin-top: 3px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
}

.price_item.old .value {
    color: #968b83;
    font-size: 25px;
    text-decoration: line-through;
}

.price_item.new .value {
    color: var(--powder-dark);
    font-size: 44px;
}

.wholesale_note {
    margin-top: 12px;
    color: var(--coffee);
    font-size: 13px;
    font-weight: 600;
}

.hero_actions {
    display: grid;
    margin-top: 16px;
    gap: 10px;
}

.hero_image_block {
    min-height: 520px;
    margin-top: 24px;
    border-radius: 10px;
    background: #e9e3dc;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.hero_image_block .offer_image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: 50% 32%;
}

.hero_image_block:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 65%, rgba(35, 29, 25, .21));
    pointer-events: none;
}

.image_label,
.stock_badge {
    position: absolute;
    z-index: 2;
    background: rgba(255, 253, 249, .88);
    box-shadow: 0 12px 30px rgba(40, 31, 26, .13);
    backdrop-filter: blur(10px);
}

.image_label {
    top: 18px;
    left: 18px;
    padding: 10px 15px;
    border-radius: 8px;
    color: var(--olive-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.stock_badge {
    right: 18px;
    bottom: 18px;
    display: flex;
    width: 118px;
    height: 118px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 50%;
    color: var(--olive-dark);
}

.stock_badge strong {
    font-size: 27px;
    line-height: 1;
}

.stock_badge span {
    margin-top: 5px;
    font-size: 10px;
    font-weight: 600;
}

.hero_benefits {
    display: grid;
    max-width: 1160px;
    margin: 20px auto 0;
    border: 1px solid rgba(255, 255, 255, .68);
    border-radius: 8px;
    background: rgba(255, 255, 255, .7);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.hero_benefits > div {
    display: grid;
    padding: 16px;
    grid-template-columns: 32px 1fr;
    border-bottom: 1px solid var(--line);
}

.hero_benefits > div:last-child {
    border-bottom: 0;
}

.hero_benefits > div > span {
    grid-row: span 2;
    color: var(--powder-dark);
    font-size: 22px;
}

.hero_benefits strong {
    font-size: 13px;
}

.hero_benefits small {
    color: var(--muted);
    font-size: 11px;
}

.timer_block {
    max-width: 560px;
    margin: 24px auto 0;
    padding: 18px 20px;
    text-align: center;
}

.timer_block > p {
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.timer_item {
    width: 65px;
    padding: 10px 4px 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .68);
}

.timer_item .count {
    min-height: 25px;
    color: var(--olive-dark);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.timer_item .count span {
    display: inline;
}

.timer_item .text {
    margin-top: 3px;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* Description */
.product_description_section {
    margin: 36px -14px 0;
    padding: 70px 18px;
    background: var(--paper);
}

/* Video review */
.video_review_section {
    margin: 0 -14px;
    padding: 70px 18px;
    background: linear-gradient(180deg, #fffdfa 0%, #f5efe7 100%);
}

.video_frame {
    width: min(100%, 430px);
    margin: 0 auto;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow);
}

.video_frame video {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 8px;
    background: var(--olive-dark);
    object-fit: cover;
}

.description_container {
    max-width: 1100px;
    margin: 0 auto;
}

.description_layout {
    display: grid;
    gap: 32px;
}

.description_gallery {
    min-height: 540px;
    position: relative;
}

.description_gallery img {
    display: block;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.description_main {
    width: calc(100% - 52px);
    height: 520px;
    border-radius: 10px;
    object-position: center 28%;
}

.description_detail {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42%;
    height: 210px;
    border: 8px solid var(--paper);
    border-radius: 8px;
    object-position: center 18%;
}

.description_content {
    align-self: center;
}

.quality_badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 13px;
    border-radius: 8px;
    background: rgba(213, 180, 110, .22);
    color: var(--powder-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.description_content p {
    margin-bottom: 17px;
    color: var(--muted);
}

.description_points {
    display: flex;
    margin-top: 26px;
    gap: 8px;
    flex-wrap: wrap;
}

.description_points span {
    padding: 8px 12px;
}

/* Colors and product cards */
.stress_relief_section {
    margin: 0 -14px;
    padding: 70px 18px 78px;
    background: #f4eee6;
}

.color_badges {
    display: flex;
    max-width: 900px;
    margin: -8px auto 30px;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.color_badge {
    display: inline-flex;
    padding: 8px 12px;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .72);
    color: var(--coffee);
    font-size: 12px;
    font-weight: 600;
}

.color_badge i,
.swatch {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1px solid rgba(44, 40, 37, .14);
    border-radius: 50%;
}

.white i,
.swatch.white { background: #fff; }
.cappuccino i,
.swatch.cappuccino { background: #b59b8a; }
.denim i,
.swatch.denim { background: #6788aa; }
.olive i,
.swatch.olive { background: #708d78; }
.black i,
.swatch.black { background: #202124; }

.products_list {
    display: grid;
    max-width: 1120px;
    margin: 0 auto;
    gap: 22px;
}

.product_card {
    border: 1px solid rgba(73, 61, 53, .08);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease;
}

.product_card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.main_image_container {
    height: 460px;
    background: #e8e2d8;
    overflow: hidden;
}

.main_image_container .main_img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 26%;
    transition: opacity .22s ease, transform .5s ease;
}

.product_card:hover .main_img {
    transform: scale(1.015);
}

.thumb_switcher {
    display: flex;
    padding: 10px 18px;
    justify-content: center;
    gap: 8px;
    background: #faf7f1;
}

.thumb_switcher .thumb {
    display: block;
    width: 54px;
    height: 54px;
    border: 2px solid transparent;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    opacity: .68;
    transition: .2s ease;
}

.thumb_switcher .thumb.active,
.thumb_switcher .thumb:hover {
    border-color: var(--powder-dark);
    opacity: 1;
}

.product_card_content {
    padding: 20px;
}

.product_card_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
}

.product_card_name {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
}

.product_card_header small {
    color: var(--muted);
    font-size: 11px;
}

.product_card_prices {
    flex: 0 0 auto;
    text-align: right;
}

.product_card_old_price {
    display: block;
    color: #9d938c;
    font-size: 12px;
    text-decoration: line-through;
}

.product_card_new_price {
    display: block;
    color: var(--powder-dark);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
}

.product_card_sizes {
    display: grid;
    margin: 19px 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
}

.product_card_sizes span {
    padding: 8px 5px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    color: var(--coffee);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

.product_card .button {
    width: 100%;
    min-height: 52px;
}

/* Characteristics */
.characteristics_section {
    background: var(--paper);
}

.char_table_wrapper {
    max-width: 860px;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.char_table {
    width: 100%;
    border-collapse: collapse;
}

.char_table tr:not(:last-child) {
    border-bottom: 1px solid var(--line);
}

.char_table td {
    padding: 15px 14px;
    vertical-align: top;
}

.char_label {
    width: 36%;
    background: #f8f3ec;
    color: var(--olive-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.char_value {
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
}

/* Measurements and availability */
.measurements_section {
    background: var(--olive-dark);
    color: #fff;
}

.measurements_section:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(213, 180, 110, .13), transparent 60%);
    pointer-events: none;
}

.measurements_section > * {
    position: relative;
}

.measurements_section .section_kicker {
    color: var(--champagne-soft);
}

.measurements_section .title,
.measurements_section .section_intro p {
    color: #fff;
}

.measurements_section .section_intro p {
    opacity: .72;
}

.measurement_table_wrapper {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 24px 55px rgba(17, 20, 14, .18);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.measurements_table {
    width: 100%;
    min-width: 570px;
    border-collapse: collapse;
}

.measurements_table th,
.measurements_table td {
    padding: 15px 13px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 13px;
    text-align: center;
}

.measurements_table th {
    background: rgba(255, 255, 255, .07);
    color: var(--champagne-soft);
    font-size: 11px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.measurements_table th:first-child,
.measurements_table td:first-child {
    text-align: left;
    font-weight: 700;
}

.measurements_table tbody tr:last-child td {
    border-bottom: 0;
}

.availability_block {
    max-width: 920px;
    margin: 26px auto 0;
    padding: 24px;
    border-radius: var(--radius);
    background: #fffdf9;
    box-shadow: var(--shadow);
    color: var(--ink);
}

.availability_heading {
    display: flex;
    margin-bottom: 12px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.availability_heading h3 {
    margin-top: 5px;
    font-size: 25px;
    line-height: 1.12;
}

.stock_status {
    display: inline-flex;
    flex: 0 0 auto;
    padding: 8px 11px;
    align-items: center;
    gap: 7px;
    border-radius: 8px;
    background: rgba(63, 140, 104, .13);
    color: #2f6b4f;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.stock_status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3f8c68;
}

.availability_block > p {
    color: var(--muted);
    font-size: 14px;
}

.availability_grid {
    display: grid;
    margin-top: 18px;
    gap: 8px;
}

.availability_grid > div {
    display: grid;
    padding: 12px;
    align-items: center;
    grid-template-columns: 20px 1fr;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.availability_grid .swatch {
    grid-row: span 2;
}

.availability_grid strong {
    font-size: 13px;
}

.availability_grid small {
    color: var(--muted);
    font-size: 10px;
}

.limited_note {
    margin-top: 15px;
    padding: 11px 13px;
    border-radius: 8px;
    background: rgba(213, 180, 110, .18);
    color: var(--coffee);
    font-size: 12px;
    font-weight: 600;
}

/* Benefits */
.problems_section {
    background: #f4eee6;
}

.benefits_list3 {
    display: grid;
    max-width: 1120px;
    margin: 0 auto;
    gap: 20px;
}

.benefit_item {
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.benefit_item > img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center 28%;
}

.benefit_item .text_block {
    padding: 22px;
}

.benefit_item .text_block > span,
.info_item .text_block > span {
    color: var(--powder-dark);
    font-family: Georgia, serif;
    font-size: 13px;
    font-style: italic;
}

.benefit_item h4 {
    margin: 7px 0 9px;
    font-size: 20px;
    line-height: 1.2;
}

.benefit_item p {
    color: var(--muted);
    font-size: 14px;
}

.advantages_cloud {
    display: flex;
    max-width: 960px;
    margin: 32px auto 0;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.advantages_cloud span {
    padding: 9px 13px;
    background: rgba(255, 255, 255, .72);
}

/* Reviews */
.unique_reviews_section {
    background: var(--paper);
}

.unique_reviews_list {
    display: grid;
    max-width: 1060px;
    margin: 0 auto;
    gap: 14px;
}

.review_item {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.review_stars {
    margin-bottom: 13px;
    color: var(--champagne);
    font-size: 13px;
    letter-spacing: .18em;
}

.review_text {
    color: #514a45;
    font-size: 15px;
}

.author_info {
    margin-top: 15px;
    color: var(--olive);
    font-size: 12px;
    font-weight: 700;
}

/* Delivery */
.order_info2_section {
    background: #e9e1d6;
}

.order_info_list2 {
    display: grid;
    max-width: 1080px;
    margin: 0 auto;
    gap: 14px;
}

.info_item {
    display: grid;
    min-height: 185px;
    grid-template-columns: 42% 1fr;
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.info_item > img {
    width: 100%;
    height: 100%;
    min-height: 185px;
    object-fit: cover;
}

.info_item .text_block {
    padding: 22px 17px;
    align-self: center;
}

.info_item h4 {
    margin: 5px 0 8px;
    font-size: 19px;
}

.info_item p {
    color: var(--muted);
    font-size: 13px;
}

/* Final offer and form */
.final_offer {
    padding: 18px;
    background: var(--olive-dark);
}

.final_offer_layout {
    display: grid;
    max-width: 1120px;
    margin: 0 auto;
    border-radius: 10px;
    background: #fffdf9;
    box-shadow: 0 30px 70px rgba(18, 22, 15, .23);
    overflow: hidden;
}

.final_offer_image {
    min-height: 500px;
    position: relative;
}

.final_offer_image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    object-position: center 28%;
}

.final_offer_caption {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    display: flex;
    padding: 14px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-radius: 8px;
    background: rgba(255, 253, 249, .86);
    backdrop-filter: blur(9px);
}

.final_offer_caption span {
    color: var(--muted);
    font-size: 11px;
}

.final_offer_caption strong {
    color: var(--olive-dark);
    font-size: 12px;
}

.final_offer_content {
    padding: 34px 22px;
}

.final_offer .main_title {
    margin: 12px 0 15px;
    font-size: clamp(34px, 7vw, 52px);
}

.order_form {
    display: grid;
    margin-top: 26px;
    gap: 13px;
}

.order_form label {
    display: block;
}

.order_form label > span {
    display: block;
    margin: 0 0 6px 4px;
    color: var(--coffee);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.field {
    display: block;
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-family: inherit;
    font-size: 15px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.field:focus {
    border-color: var(--powder-dark);
    box-shadow: 0 0 0 4px rgba(168, 111, 104, .09);
    outline: 0;
}

select.field {
    cursor: pointer;
}

.form_row {
    display: grid;
    gap: 13px;
}

.order_form .button {
    width: 100%;
    margin-top: 3px;
}

.form_note {
    color: var(--muted);
    font-size: 10px;
    text-align: center;
}

.phone_link {
    display: block;
    margin-top: 17px;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
    text-decoration: none;
}

.phone_link strong {
    color: var(--olive-dark);
}

/* Footer */
.footer_section {
    padding: 30px 18px;
    background: #171f1d;
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    text-align: center;
}

.footer_section strong {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 14px;
}

.footer_section p {
    margin-bottom: 9px;
}

.footer_section a {
    color: #e6d3ca;
    text-decoration: none;
}

.footer_section span {
    margin: 0 5px;
}

@media (min-width: 520px) {
    .hero_actions {
        display: flex;
    }

    .hero_actions .button {
        min-width: 190px;
    }

    .hero_benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero_benefits > div:nth-child(odd) {
        border-right: 1px solid var(--line);
    }

    .hero_benefits > div:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .product_card_sizes {
        grid-template-columns: repeat(4, 1fr);
    }

    .form_row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 720px) {
    .offer_section,
    .characteristics_section,
    .measurements_section,
    .problems_section,
    .unique_reviews_section,
    .order_info2_section {
        padding: 88px 38px;
    }

    .hero_section {
        padding-top: 28px;
        padding-bottom: 0;
    }

    .hero_benefits {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero_benefits > div {
        border-right: 1px solid var(--line);
        border-bottom: 0;
    }

    .hero_benefits > div:last-child {
        border-right: 0;
    }

    .product_description_section,
    .video_review_section,
    .stress_relief_section {
        margin-right: -38px;
        margin-left: -38px;
        padding-right: 38px;
        padding-left: 38px;
    }

    .products_list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .products_list .product_card:last-child {
        width: calc(50% - 11px);
        grid-column: 1 / -1;
        justify-self: center;
    }

    .main_image_container {
        height: 520px;
    }

    .availability_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits_list3,
    .unique_reviews_list,
    .order_info_list2 {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefit_item > img {
        height: 400px;
    }

    .info_item {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .info_item > img {
        height: 180px;
        min-height: 180px;
    }
}

@media (min-width: 940px) {
    .hero_content {
        grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
        gap: 28px;
        align-items: center;
    }

    .hero_copy {
        display: block;
        padding: 30px 18px 24px;
    }

    .hero_code {
        display: inline;
    }

    .hero_image_block {
        order: initial;
        margin-top: 0;
    }

    .hero_copy .main_title {
        font-size: clamp(44px, 4.35vw, 54px);
    }

    .hero_image_block,
    .hero_image_block .offer_image {
        min-height: 580px;
    }

    .description_layout {
        grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
        gap: 70px;
    }

    .description_gallery {
        min-height: 650px;
    }

    .description_main {
        height: 620px;
    }

    .description_detail {
        height: 250px;
    }

    .availability_grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .availability_grid > div {
        grid-template-columns: 24px 1fr;
    }

    .final_offer_layout {
        grid-template-columns: .93fr 1.07fr;
    }

    .final_offer_image,
    .final_offer_image img {
        min-height: 760px;
    }

    .final_offer_content {
        padding: 58px 54px;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .price_block {
        gap: 8px 12px;
    }

    .price_item.old .value {
        font-size: 22px;
    }

    .price_item.new .value {
        font-size: 38px;
    }
}

@media (max-width: 390px) {
    .offer_section,
    .characteristics_section,
    .measurements_section,
    .problems_section,
    .unique_reviews_section,
    .order_info2_section {
        padding-right: 14px;
        padding-left: 14px;
    }

    .hero_section {
        padding-top: 12px;
    }

    .hero_copy .main_title {
        font-size: 36px;
    }

    .hero_image_block,
    .hero_image_block .offer_image {
        min-height: 470px;
    }

    .stock_badge {
        width: 104px;
        height: 104px;
    }

    .stock_badge strong {
        font-size: 24px;
    }

    .char_table td {
        padding: 13px 10px;
    }

    .availability_heading {
        flex-direction: column;
    }

    .info_item {
        grid-template-columns: 38% 1fr;
    }

    .info_item .text_block {
        padding: 18px 13px;
    }
}

@media (max-width: 340px) {
    .price_block {
        column-gap: 8px;
    }

    .price_item.old .value {
        font-size: 20px;
    }

    .price_item.new .value {
        font-size: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *:before,
    *:after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
