body {
    font-family: "Inter", sans-serif;
    background: #F2F2F2;
}

/* UI Instruments */


:root {
    --mcolor: #FFC639;
    --mcolor_hover: #FFDB80;
    --mcolor_green: #62BB4D;
    --mcolor_blue: #0093E9;
    --mcolor_yellow: #fff3cd;
    --text-primary: #1A1A1A;
    --dark-90: #1A1A1A;
    --stroke-accent-pressed: #FFEFC9;
    --stroke-primary: #E5E5E5;
    --text-caption: #B2B2B2;
    --statuses-success: #3AB544;
    --background-primary: #F2F2F2;
    --light-100: #fff;
    --light-90: rgba(255, 255, 255, 0.9);
    --light-80: rgba(255, 255, 255, 0.8);
    --light-70: rgba(255, 255, 255, 0.7);
    --light-60: rgba(255, 255, 255, 0.6);
    --light-50: rgba(255, 255, 255, 0.5);
    --light-40: rgba(255, 255, 255, 0.4);
    --light-30: rgba(255, 255, 255, 0.3);
    --light-20: rgba(255, 255, 255, 0.2);
    --light-10: rgba(255, 255, 255, 0.1);
    --dark-100: #000;
    --dark-90: #1a1a1a;
    --dark-80: #333;
    --dark-70: #4d4d4d;
    --dark-60: #666;
    --dark-50: #808080;
    --dark-40: #999;
    --dark-30: #b2b2b2;
    --dark-20: #ccc;
    --dark-10: #e5e5e5;
    --dark-5: #f2f2f2;
    --background-primary: var(--dark-5);
    --background-secondary: var(--light-100);
    --stroke-primary: var(--dark-10);
    --text-primary: var(--dark-90);
    --accent-100: #ffc639;
    --background-accent: var(--accent-100);
    --accent-90: #ffd05c;
    --accent-80: #ffd56e;
    --accent-70: #ffdb80;
    --accent-60: #ffe092;
    --accent-50: #ffe5a4;
    --accent-40: #ffeab7;
    --accent-30: #ffefc9;
    --accent-20: #fff5db;
    --accent-10: #fffaed;
    --background-accent-hovered: var(--accent-70);
    --stroke-accent-pressed: var(--accent-30);
    --background-caption: var(--dark-10);
    --text-caption: var(--dark-30);
    --statuses-error: #dc4f4f;
    --stroke-error: var(--statuses-error);
    --stroke-accent: var(--accent-100);
    --statuses-success: #3ab544;
    --text-success: var(--statuses-success);
    --text-accent: var(--accent-100);
    --text-price-accent: var(--statuses-error);
    --text-secondary: var(--dark-70);
    --statuses-link: #4787ff;
    --text-text-link: var(--statuses-link);
    --background-tertiary: var(--dark-90);
    --text-inevrt: var(--light-100);
    --stroke-secondary: var(--light-10);
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1440px;
}

.ui_color {
    color: var(--mcolor);
}

.ui_color_red {
    color: red !important;
}

.ui_color_green {
    color: var(--mcolor_green) !important;
}

.ui_color_yellow {
    color: var(--mcolor_green) !important;
}

.ui_color_blue {
    color: var(--mcolor_blue) !important;
}


.ui_bg_red {
    background: red !important;
}

.ui_bg_green {
    background: var(--mcolor_green) !important;
}

.ui_bg_yellow {
    background: var(--mcolor_green) !important;
}

.ui_bg_blue {
    background: var(--mcolor_blue) !important;
}

a {
    text-decoration: none;
}

.ui_link {
    transition: all 0.2s;
}

.ui_link:hover {
    color: var(--mcolor);
    text-decoration: underline;
}

.clear {
    clear: both;
}

.nopadding {
    padding: 0 15px;
}

.nopadding > div {
    padding: 0;
}

.outline {
    outline: 1px solid red;
}

.ui_button {
    cursor: pointer;
    color: white;
    background: var(--mcolor);
    outline: none;
    border: none;
    transition: all 0.5s;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    /* line-height: 20px; */
    line-height: 1.4;
    color: #1A1A1A;
    padding: 8px 16px 8px 16px;
}

.ui_button:hover {
    background: var(--mcolor_hover);
}

.ui_button img {
    margin-bottom: -5px;
}


.ui_button_secondary {
    cursor: pointer;
    background: var(--background-primary);
    outline: none;
    border: none;
    transition: all 0.5s;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    /* line-height: 20px; */
    line-height: 1.4;
    color: #1A1A1A;
    padding: 8px 16px 8px 16px;
}

.ui_button_secondary:hover {
    text-decoration: underline;
}

.ui_button_secondary:active {
    text-decoration: none;
    background: var(--mcolor);
}


.ui_button_light {
    cursor: pointer;
    color: var(--mcolor);
    background: none;
    outline: none;
    border: 1px solid var(--mcolor);
    transition: all 0.5s;
}

.ui_button_light:hover {
    background: var(--mcolor);
    color: white;
}

.ui_button:focus,
.ui_button_light:focus {
    outline: none;
}



.ui_width_100 {
    width: 100%;
}

/* UI FORMS */
.dark_light {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 10;
    display: none;
}

.thanks_window {
    width: 400px;
    height: 190px;
    background: white;
    position: fixed;
    top: 20%;
    padding: 25px;
    left: 50%;
    margin-left: -200px;
    box-sizing: border-box;
    z-index: 11;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.thanks_window_title {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

.thanks_window_text {
    line-height: 1.3;
    text-align: center;
}

.window {
    width: 440px;
    position: fixed;
    left: 50%;
    margin-left: -220px;
    background: white;
    top: 5%;
    z-index: 11;
    display: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    line-height: 1.3;
}

.window_close {
    position: absolute;
    right: 10px;
    background: url(../images/icons/close.svg);
    width: 22px;
    height: 22px;
    top: 10px;
    cursor: pointer;
}


.window_close:hover {
    background-position: 0 -22px;
}

.window_title {
    text-align: center;
    padding: 15px;
    font-size: 24px;
    font-weight: bold;
}

.widow_input_wrap {
    width: 80%;
    margin-left: 10%;
    margin-bottom: 20px;
}

.widow_input {
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

.widow_input_title {
    margin-bottom: 8px;
    font-weight: bold;
}

.widow_input_title span {
    font-size: 11px;
    font-weight: 400;
}


.widow_input_st {
    margin-top: 0px;
    padding: 13px 0;
    border: none;


    font-weight: bold;
    line-height: 1.2;
    font-size: 18px;
    cursor: pointer;
    width: 100%;

}

.window_line {
    padding: 0 15px 15px 15px;
    font-size: 14px;
    text-align: center;
}

.hidden_input {
    display: none;
}

.window_info {
    text-align: center;
    font-size: 14px;
    padding-bottom: 15px;
}





/* UI content */
.content {
    line-height: 1.4;
}

/* UI content */
.content p:last-child {
    margin-bottom: 0;
}

.content p {
    margin-bottom: 25px;
}

.content ul {
    list-style: disc;
    margin-bottom: 25px;
    margin-left: 20px;
}

.content ol {
    list-style: decimal;
    margin: 10px 0;
    margin-left: 20px;
}

.content b {
    font-weight: bold;
}

.content strong {
    font-weight: bold;
}

.content i,
.content em {
    font-style: italic;
}

.content table {
    width: 100%;
    margin: 10px 0;
}

.content table tr {
    width: 100%;
}

.content table td {
    border: 1px solid grey;
    padding: 10px;
}

.content table th {
    border: 1px solid grey;
    padding: 10px;
}

.content img {
    padding: 0px;
    max-width: 100%;
    margin-bottom: 25px;
    height: auto !important;
}

.content iframe {
    border-radius: 4px !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto !important;
}

.content h1 {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 30px;
}

.content h2 {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 26px;
}

.content h3 {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 24px;
}

.content h4 {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 22px;
}

.content h5 {
    font-weight: bold;
    margin-bottom: 7px;
    font-size: 20px;
}

.content h6 {
    font-weight: bold;
    margin-bottom: 7px;
    font-size: 18px;
}

.content a {
    color: var(--mcolor);
    text-decoration: underline !important;
}

.content a {
    color: var(--mcolor_hover);
    text-decoration: underline !important;
}

.content blockquote {
    padding: 12px 15px;
    background: #fff3cd;
    margin-bottom: 20px;
    border-radius: 4px;
}

.content blockquote.green {
    background: #d4edda;
}

.content blockquote.red {
    background: #f8d7da;
}

.noshadow {
    box-shadow: none !important;
}

.ui_nobutton {
    background: none;
    border: none;
}

.ui_nobutton:focus {
    outline: none;
}



/* breadCrumbs  */
.bread li {
    float: left;
    margin-right: 10px;
    color: black;
    font-size: 14px;
}

.bread li a {
    color: black;
}

.bread li a:hover {
    color: var(--mcolor);
    text-decoration: underline;
}

/* Arrows UI  */
.arrow_left {
    background: url(../images/arrow_left.svg);
    width: 34px;
    height: 34px;
    cursor: pointer;
    float: left;
}

.arrow_right {
    background: url(../images/arrow_right.svg);
    width: 34px;
    height: 34px;
    cursor: pointer;
    float: right;
}

.arrow_left:hover {
    background-position: 0 -34px;
}

.arrow_right:hover {
    background-position: 0 -34px;
}

.header {
    margin-bottom: 24px;
}

.header_inner {
    padding: 24px;
    border-bottom: 1px solid var(--stroke-primary);
    border-left: 1px solid var(--stroke-primary);
    border-right: 1px solid var(--stroke-primary);
    border-radius: 0 0 32px 32px;
    background: var(--light-100);
}

.header_line1 {
    display: grid;
    margin-bottom: 24px;

    align-items: center;
    grid-template-columns: 189px 119px minmax(200px, 392px) 143px minmax(300px, 1fr);
    grid-gap: 24px;
}

.header_contacts_block a {
    display: block;
}

.header_contacts {
    display: flex;

}

.header_line1 > :last-child {}

.header_catalog button {
    padding: 14px 16px;
    width: 100%;
}

.header_catalog {
    position: relative;
    z-index: 20;
}

.header_catalog > a {
    display: block;
}

.catalog-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: min(820px, calc(100vw - 48px));
    padding-top: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .25s, transform .25s, visibility .25s;
}

.header_catalog--open .catalog-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.catalog-dropdown__inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    grid-gap: 16px;
    max-height: calc(100vh - 128px);
    overflow-y: auto;
    padding: 16px;
    background: var(--light-100);
    border: 1px solid var(--stroke-primary);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(26, 26, 26, .12);
}

.catalog-dropdown__aside {
    display: grid;
    grid-gap: 6px;
    align-content: start;
}

.catalog-dropdown__category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 12px;
    width: 100%;
    min-height: 52px;
    padding: 10px 12px;
    text-align: left;
    border: 0;
    border-radius: 12px;
    color: var(--text-primary);
    background: transparent;
    transition: all .25s;
}

.catalog-dropdown__category span {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
}

.catalog-dropdown__category small {
    flex: 0 0 auto;
    font-weight: 500;
    font-size: 11px;
    line-height: 1.3;
    color: var(--text-caption);
}

.catalog-dropdown__category:hover,
.catalog-dropdown__category.is-active {
    background: var(--background-primary);
}

.catalog-dropdown__content {
    min-height: 360px;
    padding: 8px;
}

.catalog-dropdown__panel {
    display: none;
}

.catalog-dropdown__panel.is-active {
    display: block;
}

.catalog-dropdown__panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    grid-gap: 24px;
    margin-bottom: 18px;
}

.catalog-dropdown__panel-title {
    margin-bottom: 6px;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.3;
    color: var(--text-primary);
}

.catalog-dropdown__panel-text {
    max-width: 420px;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-secondary);
}

.catalog-dropdown__all {
    flex: 0 0 auto;
    padding: 9px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.3;
    color: var(--text-primary);
    background: var(--background-accent);
    transition: all .25s;
}

.catalog-dropdown__all:hover {
    background: var(--background-accent-hovered);
}

.catalog-dropdown__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 8px;
}

.catalog-dropdown__links a {
    min-height: 44px;
    padding: 12px;
    border: 1px solid var(--stroke-primary);
    border-radius: 12px;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.35;
    color: var(--text-primary);
    background: var(--light-100);
    transition: all .25s;
}

.catalog-dropdown__links a:hover {
    border-color: var(--stroke-accent);
    background: var(--accent-10);
}

.header_search input {
    width: 100%;
    font-weight: 400;
    font-size: 12px;
    transition: all .4s;

    /* line-height: 16px; */
    line-height: 1.3;

    border-radius: 8px;
    padding: 16px;

    border: 1px solid var(--stroke-primary);
    padding-left: 48px;
    padding-right: 95px;
}

.header_search input:placeholder {
    color: var(--text-caption);
}

.header_search input:focus {
    outline: none;
    border: 1px solid #B2B2B2;
}

.header_search img {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 2;
}

.header_search {
    position: relative;
}

.header_search button {
    position: absolute;
    right: 6px;
    top: 5px;
    line-height: 1.4;
    padding: 10px 16px;
}

.header_delivery {
    display: flex;
    grid-gap: 10px
}

.header_delivery_text span {
    font-weight: 700;
    display: block;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.header_delivery_text small {
    font-weight: 400;
    font-size: 12px;

    /* line-height: 16px; */
    line-height: 1.3;
    color: var(--text-caption);
}

.tel_link {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-primary);
}



.header_contacts_block span {
    font-weight: 500;
    font-size: 12px;

    /* line-height: 16px; */
    line-height: 1.3;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--text-caption);
    transition: all .3s;
}

.header_contacts_block span:hover {
    color: var(--mcolor)
}


.whatsapp {
    color: var(--text-success);
}

.header_contacts_block a.whatsapp {
    font-weight: 500;
    margin-top: 3px;
    display: block;
    font-size: 12px;

    /* line-height: 16px; */
    line-height: 1.3;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--statuses-success);
}

.header_contacts_block a.whatsapp img {
    margin-bottom: -3px;
    margin-right: 4px;
}

.header_menu li {
    float: left;
    margin-right: 16px;
}

.header_menu a {
    font-weight: 500;
    font-size: 14px;
    display: block;
    /* line-height: 20px; */
    border-radius: 8px;
    line-height: 1.4;
    color: var(--text-primary);
    padding: 8px 16px;
    background: var(--background-primary);
}

.header_menu_worktime {
    font-weight: 400;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-caption);
}

.header_menu_worktime img {
    margin-bottom: -5px;
}

.header_cart {
    font-weight: 500;
    margin-left: auto;
    white-space: nowrap;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-primary);
    background: var(--background-primary);
    border-radius: 8px;
    padding: 8px 16px 8px 8px;
    display: flex;
    grid-gap: 8px;
    justify-content: center;
    align-items: center;
}

.header_mobile .header_cart img {
    width: 20px;
}

.header_line2 {
    display: flex;
    align-items: center;
}

.header_contacts_block span {
    cursor: pointer;
}

.header_contacts_blocks {
    margin-left: auto;
    display: flex;
    grid-gap: 24px;
}

.header_mobile {
    display: none;
    z-index: 10;
}


.header_mobile_innner {
    display: flex;
    grid-gap: 24px;
}

.header_mobile_menu span {
    background: url(../images/ico_menu.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    display: block;
}

.header_mobile_menu {
    padding: 14px;
}


.header_mobile_menu.active span {
    background-position: 0 -20px;
}

.header_mobile_catalog_button button {
    padding: 14px;
}

.header_mobile_wrapper {
    background: var(--light-100);
    padding: 24px;
    border-bottom: 1px solid var(--stroke-primary);
    border-left: 1px solid var(--stroke-primary);
    border-right: 1px solid var(--stroke-primary);
    border-radius: 0 0 32px 32px;
}

.header_mobile_opener {
    padding-top: 24px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 24px;
    display: none;
}

.header_mobile_opener_menu li a {
    display: inline-block;
}

.header_mobile_opener_menu ul li {
    display: inline-block;
    float: left;
    margin-bottom: 16px;
    margin-right: 16px;

}

.mobile-catalog {
    display: grid;
    grid-gap: 8px;
}

.mobile-catalog__title {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    color: var(--text-primary);
}

.mobile-catalog__group {
    border: 1px solid var(--stroke-primary);
    border-radius: 14px;
    overflow: hidden;
    background: var(--light-100);
}

.mobile-catalog__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 12px;
    width: 100%;
    padding: 14px;
    border: 0;
    background: var(--background-secondary);
    color: var(--text-primary);
    text-align: left;
}

.mobile-catalog__button span {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.35;
}

.mobile-catalog__button small {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    background: var(--background-primary);
    color: var(--text-caption);
}

.mobile-catalog__list {
    display: none;
    grid-template-columns: 1fr;
    grid-gap: 6px;
    padding: 8px;
}

.mobile-catalog__group.is-open .mobile-catalog__list {
    display: grid;
}

.mobile-catalog__list a {
    padding: 11px 12px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.35;
    color: var(--text-primary);
    background: var(--background-primary);
}

.mobile-catalog__list a.mobile-catalog__all {
    font-weight: 700;
    background: var(--accent-10);
}


.main_video_and_product_gall_inner {
    background: var(--background-secondary);
    padding: 16px;
    display: grid;
    grid-template-columns: 9fr 3fr;
    grid-gap: 16px;
    border-radius: 32px;
}

.main_video video {
    width: 100%;
}

.main_video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 16px;
}

.catalog_item_title {
    font-weight: 600;
    font-size: 16px;

    /* line-height: 22px; */
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.catalog_item_title a:hover {
    text-decoration: underline;
}

.catalog_item_title a {
    color: var(--text-primary);
}

.catalog_item_content {
    padding: 24px 32px;
}

.catalog_item_actual_price {
    font-weight: 700;
    font-size: 20px;

    /* line-height: 28px; */
    line-height: 1.4;
    text-align: right;
    color: var(--text-primary);
}

.sale {
    color: var(--text-price-accent);
}

.catalog_item_actual_old_price {
    font-weight: 400;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    text-decoration: line-through;
    text-align: right;
    color: var(--text-caption);
}

.catalog_item_whatsapp a {
    background: var(--background-primary);
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 500;
    display: block;
    font-size: 12px;
    text-align: center;

    /* line-height: 16px; */
    line-height: 1.3;
    cursor: pointer;
    color: var(--text-success);
}

.catalog_item_whatsapp:hover {
    font-weight: 500;
    font-size: 12px;

    /* line-height: 16px; */
    line-height: 1.3;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--text-success);
}

.catalog_item_whatsapp img {
    margin-bottom: -4px;
}

.catalog_item_button_and_price {
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
}


.catalog_item_info {
    margin-bottom: 24px;
    font-weight: 400;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--text-caption);
    position: relative;
}


.catalog_item_info span {
    position: absolute;
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.24);
    background: var(--light-100);
    font-weight: 400;
    font-size: 12px;
    display: none;

    /* line-height: 17px; */
    line-height: 1.4;
    color: var(--dark-100);
    padding: 8px 12px;
    border: 1px solid var(--stroke-primary);
    border-radius: 12px;
    width: 100%;
    left: 0;
    top: 30px;
}

.catalog_item_info:hover span {
    display: block;
}

.catalog_item_info img {
    margin-bottom: -5px;
    margin-left: 6px;
}

.catalog_item_button button {
    padding: 14px 5px;
    width: 100%;
}

.catalog_item_adventure_instock {
    border-radius: 8px;
    padding: 6px 12px 6px 6px;
    box-shadow: 0 2px 8px 0 rgba(99, 99, 99, 0.2);
    background: var(--background-secondary);
    font-weight: 600;
    font-size: 12px;

    /* line-height: 16px; */
    line-height: 1.3;
    position: absolute;
    z-index: 1;
    left: 8px;
    top: 8px;
    color: var(--text-success);
}

.catalog_item_adventure_instock img {
    margin-bottom: -3px;
}

.catalog_item {
    position: relative;
    border-radius: 20px;
    background: white;
}

.catalog_item_adventure_reyting {
    box-shadow: 0 2px 8px 0 rgba(99, 99, 99, 0.2);
    background: var(--background-secondary);
    z-index: 1;
    font-weight: 600;
    font-size: 12px;

    /* line-height: 16px; */
    line-height: 1.3;
    color: var(--text-primary);
    padding: 6px;
    position: absolute;
    right: 8px;
    top: 8px;
    border-radius: 8px;
    padding: 6px 12px 6px 6px;
}

.catalog_item_adventure_reyting img {
    margin-bottom: -4px;
    margin-right: 5px;
}

.product-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 16;
    /* чтоб был прямоугольник как у твой картинки */
    overflow: hidden;
    border-radius: 16px;
    background: #f3f4f6;
    cursor: pointer;
}

.product-card__slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-card__slides img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* или contain, если не хочешь обрезать */
    opacity: 0;
    transition: opacity 0.15s ease;
}

.product-card__slides img.is-active {
    opacity: 1;
}

/* точки под картинкой по центру (если нужны) */
.product-card__dots {
    position: absolute;
    left: 16px;
    bottom: 8px;
    border-radius: 8px;
    fill: var(--background-secondary);
    border: 1px solid var(--stroke-primary);
    display: flex;
    gap: 4px;
    padding: 2px 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
}

.product-card__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    background: #d4d4d8;
}

.product-card__dot.is-active {
    background: var(--mcolor);
}

.catalog_item_slider_mobile {
    display: grid;
    grid-template-columns: 80px 1.1fr 1fr;
    grid-gap: 16px;
}

.catalog_item_slider_mobile {
    display: none;
}

.main_video_and_product_gall {
    margin-bottom: 24px;
}

.catalog_item_slider_mobile_img img {
    width: 100%;
    display: block;
}

.catalog_item_slider_mobile_img {}

.categories_block_title a {
    font-weight: 700;
    font-size: 24px;

    /* line-height: 34px; */
    line-height: 1.4;
    color: var(--text-primary);
}

.categories_block_description {
    font-weight: 400;
    margin-bottom: 32px;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-secondary);
}


.categories_block_title {
    margin-bottom: 16px;
    position: relative;
}

.categories_block_title span {
    background: var(--background-primary);
    border-radius: 8px;
    position: absolute;
    right: 0;
    top: 0px;
    width: 34px;
    height: 34px;
    transition: all .3s;
    display: block;
    padding: 2px 7px;
}

.categories_block_title span {}


.categories_block_title a {
    transition: all .3s;
    display: block;
    padding-right: 48px;
}

.categories_block_title a:hover {
    color: var(--mcolor);
}

.categories_block_items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 8px 32px;
}


.categories_block_title a:hover span {
    background: var(--mcolor);
}

.categories_block_item a {
    padding: 8px;
    transition: all .4s;
}

.categories_block_item a:hover {
    background: var(--background-primary);
    border-radius: 12px;
}

.categories_block_item_name {
    font-weight: 600;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.categories_block_item_content {
    min-width: 0;
}

.categories_block_item a:hover .categories_block_item_name {
    text-decoration: underline;
}


.categories_block_item_description {
    font-weight: 400;
    font-size: 12px;

    /* line-height: 16px; */
    line-height: 1.3;
    color: var(--text-caption);
}

.categories_block_item a {
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-gap: 16px;
}

.categories_block {
    background: var(--background-secondary);
    border: 1px solid var(--stroke-primary);
    border-radius: 32px;
    padding: 32px;
}

.categories_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 24px;
}

.categories {
    margin-bottom: 96px;
}

.mark-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 16px;
}

.mark-box {}

.mark-box a {
    display: block;
    border: 1px solid var(--stroke-primary);
    border-radius: 12px;
    box-sizing: border-box;
    padding: 12px 8px;
    height: 100px;
    width: 100%;
    transition: all .3s;
}

.mark-box a:hover {
    background: var(--mcolor);
}

.mark-box img {
    width: 100%;
    height: 48px;
    object-fit: contain;
}



.mark-box p {
    font-weight: 600;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    text-align: center;
    color: var(--text-primary);
}

.marki_inner {
    background: white;
    padding: 32px;
    border: 1px solid var(--stroke-primary);
    border-radius: 32px;
    padding: 32px;
    box-sizing: border-box;
}

.marki {
    margin-bottom: 96px;
}

.often_buy_title {
    font-weight: 700;
    font-size: 40px;

    /* line-height: 56px; */
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.often_buy_tabs li {
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-primary);
    padding: 8px 16px;
}

.often_buy_tabs ul {
    display: flex;
}


.often_buy_tabs {
    margin-bottom: 32px;
}

.often_buy_tabs li.active {
    background: var(--mcolor);
    border-radius: 8px;
    cursor: default;
}

.often_buy_tabs_contents {}

.often_buy_tabs_content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
}

.often_buy {
    margin-bottom: 96px;
}

.reviews_header_title {
    font-weight: 700;
    font-size: 40px;

    /* line-height: 56px; */
    line-height: 1.4;
    color: var(--text-primary);
}

.reviews_header {
    display: flex;
    margin-bottom: 32px;
}

.reviews_header_tools {
    margin-left: auto;
    display: flex;
    grid-gap: 16px;
    align-items: center;
}

.reviews_header_tools_arrows button {
    height: 48px;
    width: 48px;
}

.reviews_header_tools_arrows button img {
    margin-left: -3px
}

.reviews_header_tools_arrows {
    display: flex;
    grid-gap: 8px;
}


.reviews_header_tools_view_all a {
    padding: 14px;
    height: 48px;
    display: block;
}


.reviws_content_item_info_adventures {
    position: relative;
    display: flex;
    grid-gap: 8px;
}

.reviws_content_item_info_adventures > div {
    border: 1px solid var(--stroke-primary);
    border-radius: 8px;
    padding: 3px 6px;
}

.reviws_content_item_info_adventures .catalog_item_adventure_instock {
    position: relative;
}

.reviws_content_item {
    border: 1px solid var(--stroke-primary);
    border-radius: 32px;
    padding: 8px 8px 24px;
    background: var(--background-secondary);
}


.reviws_content_item_img img {
    border-radius: 12px;
    padding: 2px;
    display: block;
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.reviws_content_item_video iframe {
    border-radius: 24px;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}

.reviws_content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}

.reviws_content_item_product {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-gap: 16px;
}

.reviws_content_item_video {
    margin-bottom: 24px;
}

.reviws_content_item_info_title {
    font-weight: 600;
    font-size: 16px;

    /* line-height: 22px; */
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.reviws_content_item_info_adventures_price {
    font-weight: 600;
    font-size: 16px;

    /* line-height: 22px; */
    line-height: 1.4;
    color: var(--text-primary);
}

.reviws_content_item_info_adventures_incstock {
    font-weight: 600;
    font-size: 12px;


    /* line-height: 16px; */
    line-height: 1.3;
    color: var(--text-success);
    padding-top: 5px !important;

}

.reviws_content_item_info_adventures_incstock img {
    margin-right: 4px;
    margin-bottom: -3px;
}

.reviws_content_item_info_adventures_reyting {
    font-weight: 600;
    font-size: 12px;
    padding-top: 5px !important;

    /* line-height: 16px; */
    line-height: 1.3;
    color: var(--text-primary);
}

.reviws_content_item_info_adventures_reyting img {

    margin-bottom: -3px;
    margin-right: 4px;
}

.reviws_content_item_img {}


.reviews .owl-stage-outer {
    overflow: unset !important;
}

.reviews_shadow_right {
    background: linear-gradient(270deg, #f2f2f2 0%, rgba(242, 242, 242, 0) 100%);
    width: 144px;
    height: 400px;
    position: absolute;
    right: 0;
    z-index: 3;
    top: 90px;
}


.reviews {
    overflow: hidden;
    position: relative;
    margin-bottom: 96px;
}

.reviews_shadow_left {
    background: linear-gradient(90deg, #f2f2f2 0%, rgba(242, 242, 242, 0) 100%);
    width: 144px;
    height: 400px;
    position: absolute;
    left: 0;
    z-index: 3;
    top: 90px;
}


.footer_contacts_and_reyting_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 24px;
    0
}

.show-more-btn {
    display: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer_contacts_and_reyting_inner > div {
    border: 1px solid var(--stroke-primary);
    border-radius: 32px;
    padding: 48px;
    background: var(--background-secondary);
    padding: 48px;
}

.footer_contacts {}

.footer_contacts_title {
    font-weight: 700;
    font-size: 40px;

    /* line-height: 56px; */
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer_contacts_description {
    font-weight: 500;
    margin-bottom: 24px;
    max-width: 472px;
    font-size: 16px;

    /* line-height: 22px; */
    line-height: 1.4;
    color: var(--text-secondary);
}

.footer_contacts_block_title {
    font-weight: 400;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-caption);
    margin-bottom: 14px;
}

.footer_contacts_blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.footer_contacts_block_tel a {
    font-weight: 700;
    font-size: 20px;

    /* line-height: 28px; */
    line-height: 1.4;
    color: var(--text-primary);
}

.footer_contacts_block_links a {
    border: 1px solid var(--stroke-primary);
    border-radius: 8px;
    padding: 6px 12px 6px 6px;
    display: inline-block;
}

.footer_contacts_block_links a img {
    margin-bottom: -4px;
    margin-right: 6px;
}

.vk {
    color: var(--text-text-link);
}

.footer_contacts_block_tel {
    margin-top: -5px;
}

.footer_reyting_logo_text span {
    font-weight: 700;
    font-size: 24px;

    /* line-height: 34px; */
    line-height: 1.4;
    color: var(--text-primary);
}

.footer_reyting_logo_text small {
    font-weight: 500;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-caption);
}

.footer_reyting_logo_text span {
    font-weight: 700;
    font-size: 24px;

    /* line-height: 34px; */
    line-height: 1.4;
    color: var(--text-primary);
}

.footer_reyting_logo_text small {
    font-weight: 500;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-caption);
}

.footer_reyting_content_sites_stat {
    font-weight: 500;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    text-align: right;
    color: var(--text-caption);
}

.footer_reyting_content_sites_item a {
    border: 1px solid var(--stroke-primary);
    border-radius: 8px;
    padding: 6px 4px 6px 6px;
    display: flex;
    grid-gap: 8px;
}

.footer_reyting_logo {
    display: flex;
    grid-gap: 8px;
}

.footer_reyting_logo_text span {
    display: block;
}

.footer_reyting_header {
    display: flex;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--stroke-primary);
}

.footer_reyting_reyt {
    margin-left: auto;
    display: flex;
    grid-gap: 12px;
}

.footer_reyting_reyt img {
    width: 32px
}

.footer_reyting_reyt span {
    font-weight: 700;
    font-size: 40px;

    /* line-height: 56px; */
    line-height: 1.4;
    color: var(--text-primary);
}

.footer_reyting_content_desc {
    font-weight: 500;
    max-width: 260px;
    font-size: 16px;

    /* line-height: 22px; */
    line-height: 1.4;
    color: var(--text-secondary);
}

.footer_reyting_content {
    display: flex;
}

.footer_reyting_content_sites {
    margin-left: auto;
}

.footer_reyting_content_sites_item {
    display: flex;
    margin-bottom: 16px;
    grid-gap: 8px;
    align-items: center;
    justify-items: center;
}

.footer_reyting_content_sites_item a {
    border: 1px solid var(--stroke-primary);
    border-radius: 8px;
    padding: 6px 4px 6px 6px;
    display: flex;
    grid-gap: 8px;
    align-items: center;
}

.footer_reyting_content_sites_item a span {
    font-weight: 400;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-primary);
}

.footer_reyting_content_sites_item a small {
    font-weight: 700;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-primary);
    border-radius: 4px;
    padding: 2px 4px;
    background: var(--background-primary);
}

.footer {
    background: var(--background-tertiary);
    border-radius: 32px 32px 0 0;
    padding: 72px 0;
}

.footer_contacts_and_reyting {
    margin-bottom: 96px;
}

.footer_menu li {
    float: left;
    margin-right: 24px;
}

.footer_menu ul li a {
    font-weight: 600;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-inevrt);
}

.footer_line1_left {
    display: flex;
    grid-gap: 40px;
    align-items: center;
}


.footer_line1_right {
    margin-left: auto;
}

.footer_line1_right .header_contacts_blocks {
    min-width: 290px;
}


.footer_line1_right a {
    color: white;
}

.footer_line1 {
    display: flex;
    grid-gap: 40px;
    align-items: center;
    border-bottom: 1px solid var(--stroke-secondary);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.footer_category_block_title {
    font-weight: 700;
    font-size: 12px;

    /* line-height: 16px; */
    line-height: 1.3;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.footer_category_block_menu li a {
    font-weight: 600;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-inevrt);
}

.footer_category_block_menu li {
    float: left;
    margin-right: 24px;
    margin-bottom: 8px;
}

.footer_line2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--stroke-secondary);
    padding-bottom: 40px;
    margin-bottom: 40px;
    grid-gap: 64px;
}

.footer_catalog {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: 32px 40px;
}

.footer_catalog .footer_category_block_title {
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
}

.footer_catalog .footer_category_block_title a {
    color: var(--text-inevrt);
}

.footer_catalog .footer_category_block_menu ul {
    display: grid;
    grid-gap: 6px;
}

.footer_catalog .footer_category_block_menu li {
    float: none;
    margin-right: 0;
    margin-bottom: 0;
}

.footer_catalog .footer_category_block_menu li a {
    font-weight: 500;
    font-size: 13px;
    color: var(--light-70);
}

.footer_catalog .footer_category_block_menu li a:hover,
.footer_catalog .footer_category_block_title a:hover {
    color: var(--text-inevrt);
}

.footer_line3 {
    display: flex;
    font-weight: 400;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-secondary);
}

.footer_line3_req {
    margin-left: auto;
}

.often_buy_tabs {
    white-space: nowrap;
}

.workspace_header {
    margin-bottom: 32px;
}

.main_h1 {
    font-weight: 700;
    font-size: 40px;

    /* line-height: 56px; */
    line-height: 1.4;
    color: var(--text-primary);
}

.catalog_items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
    margin-bottom: 32px;
}

.catalog_filters {
    background: var(--background-secondary);
    border: 1px solid var(--stroke-primary);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 18px;
    margin-bottom: 24px;
    border-radius: 32px;
    padding: 24px;
}

.catalog_title {
    font-weight: 700;
    font-size: 40px;

    /* line-height: 56px; */
    line-height: 1.4;
    color: var(--text-primary);
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--stroke-primary);
}


.brand-select {
    position: relative;
    width: 100%;
    /* подгони под свой макет */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
}

.brand-select__control {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 999px;
    border: 1px solid #e5e5e5;
    padding: 8px 40px 8px 14px;
    cursor: text;
    border: 1px solid var(--stroke-primary);
    border-radius: 8px;
    padding: 14px 14px 14px 16px;
}

.brand-select__control:focus-within {
    border-color: #ffd54a;
    /* жёлтая обводка */
    box-shadow: 0 0 0 1px #ffe58f;
}

.brand-select__input {
    border: none;
    outline: none;
    flex: 1 1 auto;
    font: inherit;
    background: transparent;

}

.brand-select__input::placeholder {
    color: #aaa;
}

.brand-select__arrow {
    position: absolute;
    right: 14px;
    width: 8px;
    height: 8px;
    border-left: 1.5px solid #999;
    border-bottom: 1.5px solid #999;
    transform: rotate(-45deg);
    pointer-events: none;
    transition: transform 0.15s ease;
    top: 19px;
}

.brand-select--open .brand-select__arrow {
    transform: rotate(135deg);
    top: 22px;
}

.brand-select__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 4px 0;
    max-height: 260px;
    overflow-y: auto;
    z-index: 100;
    display: none;
}

.brand-select--open .brand-select__dropdown {
    display: block;
}

.brand-select__section {
    padding: 4px 0;
}

.brand-select__section--featured {
    /* можно выделить фончиком если нужно */
}

.brand-select__divider {
    height: 1px;
    margin: 4px 0;
    background: #f0f0f0;
}

.brand-select__option {
    padding: 8px 16px;
    cursor: pointer;
    white-space: nowrap;
}

.brand-select__option:hover {
    background: #f7f7f7;
}

.brand-select__empty {
    display: none;
    padding: 8px 16px;
    color: #999;
}

.brand-select.disabled .brand-select__control {
    background: #f5f5f5;
    border-color: #ddd;
    color: #aaa;
    pointer-events: none;
}

.brand-select.disabled .brand-select__input {
    pointer-events: none;
    color: #aaa;
}

.brand-select.disabled .brand-select__arrow {
    opacity: .4;
}

.brand-select.disabled .brand-select__dropdown {
    display: none !important;
}

.catalog {
    margin-bottom: 96px;
}

.pagination {
    justify-content: center;
}

.mse2_pagination li a {
    background: none;
    border: none;
    color: var(--text-primary);
    border-radius: 8px;
    min-width: 44px;
    text-align: center;
    padding: 12px !important;
}

.mse2_pagination li.active a {
    color: var(--text-primary);
    background: var(--background-accent);
}

.mse2_pagination li a:hover {
    color: var(--text-primary);
    background: var(--background-caption);
}

#mainCarousel {
    width: 90%;
    margin: 0 auto 1rem auto;

    --carousel-button-color: #170724;
    --carousel-button-bg: #fff;
    --carousel-button-shadow: 0 2px 1px -1px rgb(0 0 0 / 20%),
        0 1px 1px 0 rgb(0 0 0 / 14%), 0 1px 3px 0 rgb(0 0 0 / 12%);

    --carousel-button-svg-width: 20px;
    --carousel-button-svg-height: 20px;
    --carousel-button-svg-stroke-width: 2.5;
}

#mainCarousel .carousel__slide {
    width: 100%;
    padding: 0;
    max-height: 450px;
}

#mainCarousel .carousel__slide img {
    width: 100%;
    padding: 0;
    height: 100%;
    object-fit: contain;
}


#mainCarousel .carousel__button.is-prev {
    left: -1.5rem;
}

#mainCarousel .carousel__button.is-next {
    right: -1.5rem;
}

#mainCarousel .carousel__button:focus {
    outline: none;

}

#thumbCarousel .carousel__slide {
    opacity: 0.5;
    padding: 0;
    margin: 0.25rem;
    width: 96px;
    height: 64px;
}

#thumbCarousel .carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

#thumbCarousel .carousel__slide.is-nav-selected {
    opacity: 1;
}

.carousel__slide {

    overflow-x: visible !important;
    overflow-y: visible !important;

}

.product_wrapper_inner {
    display: grid;
    grid-template-columns: 9fr 4fr;
    grid-gap: 24px;
}


.product_gall_and_adventures {
    background: white;
    border: 1px solid var(--stroke-primary);
    border-radius: 32px;
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.product_title {
    font-weight: 700;
    font-size: 24px;

    /* line-height: 34px; */
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.product_reyting {
    display: flex;
    grid-gap: 16px;
    align-items: center;
    margin-bottom: 8px;
}

.product_reyting_text {
    font-weight: 400;
    font-size: 12px;

    /* line-height: 16px; */
    line-height: 1.3;
    color: var(--text-caption);
}

.product_reyting_plaska {
    font-weight: 600;
    font-size: 12px;

    /* line-height: 16px; */
    line-height: 1.3;
    color: var(--text-primary);
    border: 1px solid var(--stroke-primary);
    border-radius: 8px;
    grid-gap: 6px;
    padding: 6px 12px 6px 6px;
}

.product_reyting_plaska img {
    margin-bottom: -4px;
    margin-right: 6px;
}

.product_adventures > div {
    padding: 6px;
    font-weight: 600;
    font-size: 12px;

    /* line-height: 16px; */
    line-height: 1.3;
    color: var(--text-primary);
}

.product_adventures {
    display: flex;
    grid-gap: 8px;
}

.product_adventures img {
    margin-right: 6px;
    margin-bottom: -4px;
}

.product_adventures_garanty {
    border-radius: 8px;
    padding: 6px 12px 6px 6px;
    background: var(--background-accent);
}

.product_adventures_freedelivery {
    border: 1px solid var(--stroke-primary);
    border-radius: 8px;
    color: var(--text-success) !important;
}

#thumbCarousel .carousel__slide {
    opacity: 0.5;
    padding: 0;
    margin: 0.25rem;
    width: 74px;
    height: 74px;
}

#thumbCarousel .carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.product_complects_item_title {
    font-weight: 600;
    font-size: 16px;

    /* line-height: 22px; */
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.product_complects_item_title span {
    font-weight: 600;
    font-size: 16px;

    /* line-height: 22px; */
    line-height: 1.4;
    color: var(--text-primary);
    border: 1px solid var(--stroke-primary);
    border-radius: 4px;
    padding: 0px 4px;
    background: var(--background-primary);
}

.product_complects_item a {
    padding: 16px;
    display: block;
    border: 1px solid var(--stroke-primary);
    border-radius: 16px;
    padding: 16px;
}


.product_complects_item {
    margin-bottom: 16px;
}


.product_complects_item.active a {
    border: 2px solid var(--stroke-accent);
}

.product_order_inner {
    border: 1px solid var(--stroke-primary);
    border-radius: 32px;
    padding: 24px;
    background: var(--background-secondary);
}


.product_stock {
    box-shadow: 0 2px 8px 0 rgba(99, 99, 99, 0.2);
    margin-bottom: 24px;
    background: var(--background-secondary);
    display: inline-block;
    padding: 6px;
    font-weight: 600;
    font-size: 12px;

    /* line-height: 16px; */
    border-radius: 8px;
    line-height: 1.3;
    color: var(--text-success);
}


.product_stock span {
    background: url(../images/ico_store_all.svg);
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-bottom: -3px;
    margin-right: 6px;
}


.product_stock.outofstore span {
    background-position: 0 -16px;
}

.product_stock.outofstore {
    line-height: 1.3;
    color: var(--text-price-accent);
}

.product_stock img {
    margin-right: 6px;
    margin-bottom: -3px;
}

.product_complects_title {
    font-weight: 400;
    font-size: 12px;

    /* line-height: 16px; */
    line-height: 1.3;
    color: var(--text-caption);
    margin-bottom: 16px;
}

.product_complects_item_description {
    font-weight: 400;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-secondary);
}

.product_complects_items {
    border-bottom: 1px solid var(--stroke-primary);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.product_prices_title {
    font-weight: 400;
    margin-bottom: 4px;
    font-size: 12px;

    /* line-height: 16px; */
    line-height: 1.3;
    color: var(--text-caption);
}

.product_prices_actual span {
    font-weight: 700;
    font-size: 32px;

    /* line-height: 45px; */
    line-height: 1.4;
    color: var(--text-primary);
}

.product_prices {
    margin-bottom: 24px;
}

.product_button_to_cart {
    margin-bottom: 16px;
}

.product_button_to_cart button {
    width: 100%;
    padding: 15px;
}

.product_wrapper {
    margin-bottom: 32px;
}

.product_content_inner {
    background: var(--background-secondary);
    border: 1px solid var(--stroke-primary);
    border-radius: 32px;
    padding: 32px;
}

.product_characteristic_item span {
    font-weight: 400;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-caption);
}

.product_characteristic_item strong {
    font-weight: 400;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-primary);
}

.product_characteristic_title {
    font-weight: 700;
    font-size: 20px;

    /* line-height: 28px; */
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 27px;
}

.product_characteristic_items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0 24px;
}

.product_characteristic_item {
    padding: 12px 0;
    border-bottom: 1px solid var(--stroke-primary);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.product_characteristic_item strong {}


.product_characteristic {
    margin-top: 64px;
}


.dop_fotogal_item img {
    width: 100%;
    border-radius: 8px;
}

.product_content {
    margin-bottom: 96px;
}

.dop_products_title {
    font-weight: 700;
    font-size: 40px;

    /* line-height: 56px; */
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.dop_products_items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
}

.dop_products {
    margin-bottom: 96px;
}

.reviews_catlog_inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}

.reviews_catlog {
    margin-bottom: 96px;
}

.content_block_inner {
    border: 1px solid var(--stroke-primary);
    border-radius: 32px;
    padding: 32px;
    background: var(--background-secondary);
}

.content_block {
    margin-bottom: 24px;
}

.delivery_block {
    border: 1px solid var(--stroke-primary);
    border-radius: 32px;
    padding: 24px;
    background: var(--background-secondary);
}

.delivery_blocks_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 24px;
}

.delivery_block_title {
    font-weight: 700;
    font-size: 24px;

    /* line-height: 34px; */
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.delivery_block_content_title {
    font-weight: 700;
    font-size: 16px;

    /* line-height: 22px; */
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.delivery_block_content {
    border-radius: 16px;
    padding: 24px;
    background: var(--background-primary);
    margin-bottom: 16px;
}

.delivery_block_content_yellow {
    background: var(--mcolor)
}

.delivery_blocks {
    margin-bottom: 96px;
}

.deivery_block_text {
    margin-bottom: 24px;
}

.contact_inner {
    background: var(--background-secondary);
    border: 1px solid var(--stroke-primary);
    border-radius: 32px;
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 24px;
}

.contact_block:first-child {
    padding-top: 0;
}

.contact_block_item_title {
    font-weight: 400;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-caption);
    margin-bottom: 8px;
}

.contact_block_item_info {
    font-weight: 700;
    font-size: 16px;

    /* line-height: 22px; */
    line-height: 1.4;
    color: var(--text-primary);
}

.contact_block_item_info a {
    color: var(--text-primary);
}

.contact_block {
    padding: 24px 0;
    border-bottom: 1px solid var(--stroke-primary);
}

.contact_block_col2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 32px;
}

.contact_block_whatspp a {
    display: flex;
    grid-gap: 8px;
}

.contact_block_whatspp a .contact_block_whatspp_img img {
    width: 22px;
}

.contact_block_whatspp {
    margin-bottom: 16px;
}

.contact_block_whatspp_link {
    font-weight: 700;
    font-size: 16px;

    /* line-height: 22px; */
    line-height: 1.4;
    color: var(--text-primary);
}

.contact_block_whatspp_description {
    font-weight: 400;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-caption);
}

.contact_block_item {}

.contact_block_item_mb16 {
    margin-bottom: 16px;
}

.contact_block_socials {
    margin-top: 24px;
}

.contact_block_socials {
    display: flex;
    grid-gap: 16px;
}

.contact {
    margin-bottom: 96px;
}

.contact_block_item_info_nonstrong {
    font-weight: 400
}

.cart_item {
    display: grid;
    grid-template-columns: 110px 1fr;
    grid-gap: 24px;
    border-bottom: 1px solid var(--stroke-primary);
    padding: 16px 0;

}

.cart_item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.cart {
    border: 1px solid var(--stroke-primary);
    margin-bottom: 24px;
    border-radius: 32px;
    background: var(--background-secondary);
    padding: 32px;
}

.cart_oform_inner {
    display: grid;
    grid-template-columns: 9fr 4fr;
    grid-gap: 24px;
}

.cart_item_img img {
    width: 100%;
}

.cart_item_content_title a {
    font-weight: 600;
    font-size: 16px;

    /* line-height: 22px; */
    line-height: 1.4;
    color: var(--text-primary);
    display: block;
}

.cart_item_content_article {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 16px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-caption);
}

.cart_item_content_title {
    margin-bottom: 8px;
}

.cart_item_content_price {
    font-weight: 700;
    font-size: 20px;

    /* line-height: 28px; */
    line-height: 1.4;
    color: var(--text-primary);
}

.cart_item_content {
    display: flex;
}

.cart_item_content_product_del {
    margin-left: auto;
    font-weight: 400;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-caption);
}

.cart_item_content_product_del button {
    background: none;
    border: none;
    color: var(--text-caption);
    transition: all .4s;
}

.cart_item_content_product_del button:hover {
    color: red;
}

.oform_bg_title {
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 20px;

    /* line-height: 28px; */
    line-height: 1.4;
    color: var(--text-primary);
}

.oform_bg {
    background: var(--background-secondary);
    border: 1px solid var(--stroke-primary);
    border-radius: 32px;
    padding: 32px;
}

.cart_oform_left {}

.cart_oform {
    margin-bottom: 96px;
}

.label_checbox_content span {
    font-weight: 400;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    display: block;
    color: var(--text-secondary);
}

.label_checbox_content small {
    font-weight: 400;
    font-size: 12px;

    /* line-height: 16px; */
    line-height: 1.3;
    color: var(--text-caption);
}

.label_checbox label {
    grid-gap: 12px;
    display: flex;
}

.label_checbox_input input {
    width: 16px;
    height: 16px;
    margin-bottom: -5px;
    margin-top: 2px;
}

.label_checbox label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
}

.label_checbox_input {
    flex: 0 0 auto;
    margin-top: 2px;
    /* чтобы чекбокс визуально попадал по первой строке */
}

.label_checbox_input input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    border: 2px solid #D7D7D7;
    /* серый контур в выключенном состоянии */
    background: #fff;
    display: grid;
    place-content: center;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
    position: relative;
}

/* галочка */
.label_checbox_input input[type="checkbox"]::after {
    content: "";
    width: 10px;
    height: 6px;
    border-left: 3px solid transparent;
    border-bottom: 3px solid transparent;
    transform: rotate(-45deg);
    margin-top: -3px;
}

/* checked = желтый фон + черная галочка */
.label_checbox_input input[type="checkbox"]:checked {
    background: #FFC83D;
    /* подбери под макет (можно #FFCC00) */
    border-color: #FFC83D;
}

.label_checbox_input input[type="checkbox"]:checked::after {
    border-left-color: #111;
    border-bottom-color: #111;
}

/* hover/focus */
.label_checbox_input input[type="checkbox"]:hover {
    border-color: #BDBDBD;
}

.label_checbox_input input[type="checkbox"]:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 200, 61, .35);
}

/* текстовая часть — опционально */
.label_checbox_content span {
    display: block;
    font-weight: 600;
}

.label_checbox_content small {
    display: block;
    color: #9a9a9a;
    margin-top: 4px;
    line-height: 1.3;
}

.mb24 {
    margin-bottom: 24px;
}

.form_line_2_col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 24px;
}

.label_input_title {
    font-weight: 400;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.label_input_input input {
    border: 1px solid var(--dark-10);
    border-radius: 8px;
    padding: 16px;
    width: 100%;
    transition: all .3s;
}

.oform_block_delivery_items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
    margin-bottom: 16px;
}

.oform_block {
    border-bottom: 1px solid var(--stroke-primary);
    margin-bottom: 32px;
    padding-bottom: 16px;
}

.oform_block:last-child {
    border-bottom: 0px solid var(--stroke-primary);
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.oform_block_delivery_alert {
    font-weight: 400;
    margin-bottom: 24px;
    font-size: 12px;
    border-radius: 8px;
    padding: 8px 16px;
    background: var(--background-primary);
    /* line-height: 16px; */
    line-height: 1.3;
    color: var(--text-secondary);
}

.oform_block_delivery_select {
    font-weight: 400;
    margin-bottom: 16px;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-secondary);
}

.oform_block_delivery_select strong {
    font-weight: bold;
}


.oform_block_map {
    margin-bottom: 24px;
}


.oform_block_map img {
    width: 100%;
}

.label_checbox_content_without_small {
    margin-top: 7px;
}

.oform_final {
    background: var(--background-secondary);
    border: 1px solid var(--stroke-primary);
    border-radius: 32px;
    padding: 24px;
    position: sticky;
    top: 16px;
}

.oform_final_summ_more_item span {
    font-weight: 400;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-caption);
}

.oform_final_summ_more_item strong {
    font-weight: 700;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    text-align: right;
    color: var(--text-primary);
    margin-left: auto;
}

.oform_final_summ_more_item {
    display: flex;
}

.oform_final_summ_more {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--stroke-primary);
}

.promocode1 {
    border: 1px solid var(--stroke-primary);
    border-radius: 8px;
    padding: 6px 6px 6px 14px;
}

.promocode1 {
    font-weight: 400;
    font-size: 12px;

    /* line-height: 16px; */
    line-height: 1.3;
    color: var(--text-caption);
}

.oform_final_promocode {
    margin-bottom: 24px;
}

.oform_final_total_summ_title {
    font-weight: 400;
    font-size: 12px;

    /* line-height: 16px; */
    line-height: 1.3;
    color: var(--text-caption);
    margin-bottom: 4px;
}

.oform_final_total_summ_digit {
    font-weight: 700;
    font-size: 32px;

    /* line-height: 45px; */
    line-height: 1.4;
    color: var(--text-primary);
}

.oform_final_total_summ {
    margin-bottom: 16px;
}

.oform_final_politic {
    font-weight: 400;
    font-size: 12px;

    /* line-height: 16px; */
    line-height: 1.3;
    color: var(--text-caption);
    margin-bottom: 24px;
}

.oform_final_politic a {
    color: var(--text-caption);
}

.oform_final_order_button button {
    width: 100%;
    padding: 14px;
}

.label_input_input input:focus {
    border: 1px solid #B2B2B2;
    outline: none;
}

.window_order {
    border-radius: 32px;
    z-index: 100;
    display: none;
    width: 640px;
    background: var(--light-100);
    position: fixed;
    top: 10px;
    padding: 24px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow-y: auto;
}

.window_order_product_title {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;

    /* line-height: 22px; */
    line-height: 1.4;
    color: var(--text-primary);
}

.window_order_product_article {
    font-weight: 400;
    margin-bottom: 16px;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-caption);
}

.window_order_product_price {
    font-weight: 700;
    font-size: 20px;

    /* line-height: 28px; */
    line-height: 1.4;
    color: var(--text-primary);
}


.window_order_product {
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 94px 1fr;
    grid-gap: 16px;
}

.window_order_title {
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 24px;

    /* line-height: 34px; */
    line-height: 1.4;
    color: var(--text-primary);
}

.window_order_cart_stat {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 4px;

    /* line-height: 20px; */
    line-height: 1.4;
    color: var(--text-caption);
}

.window_order_garant {
    background: rgba(58, 181, 68, 0.05);
    padding: 16px;
    display: grid;
    grid-template-columns: 22px 1fr;
    grid-gap: 16px;
    margin-bottom: 24px;
    border-radius: 16px;
}

.window_order_garant_title {
    font-weight: 600;
    font-size: 16px;

    /* line-height: 22px; */
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.window_order_garant_description {
    font-weight: 400;
    font-size: 12px;

    /* line-height: 16px; */
    line-height: 1.3;
    color: var(--text-secondary);
}


.window_order_order_form_title {
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 20px;

    /* line-height: 28px; */
    line-height: 1.4;
    color: var(--text-primary);
}

.window_order_order_form_politic {
    font-weight: 400;
    font-size: 12px;

    /* line-height: 16px; */
    line-height: 1.3;
    color: var(--text-caption);
}

.window_order_order_form_politic a {
    color: var(--text-caption);
    text-decoration: underline;
}

.window_order_order_delivery {
    font-weight: 400;
    margin-bottom: 24px;
    font-size: 20px;

    /* line-height: 28px; */
    line-height: 1.4;
    color: var(--text-primary);
}

.window_order_order_delivery span {
    font-weight: 700;
    font-size: 20px !important;

    /* line-height: 28px; */
    line-height: 1.4;
    color: var(--text-price-accent) !important;
}


.window_order_order_delivery small {
    font-weight: 400;
    font-size: 14px;

    /* line-height: 20px; */
    line-height: 1.4;
    text-decoration: line-through;
    color: var(--text-caption);
}

.window_order_order_form {
    margin-bottom: 24px;
    border: 1px solid var(--stroke-primary);
    border-radius: 16px;
    padding: 24px;
}

.window_order_order_form_whtasapp {
    margin-bottom: 16px;
}

.window_order_order_window_buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    grid-gap: 16px;
}

.window_order_close {
    position: absolute;
    cursor: pointer;
    right: 24px;
    top: 25px;
}

.window_order_close:hover {
    opacity: .7;
}

.window_order_product_img img {
    width: 100%;
}

.window_order_order_form_pay_radios > div:first-child {
    margin-bottom: 12px;
}

.window_order_order_form_pay_radios {
    margin-bottom: 24px;
}

.window_order_order_form_phone_and_button {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 16px;
    margin-bottom: 24px;
}

.window_order_order_form_button button {
    width: 100%;
    padding: 17px;
    margin-top: 27px;
}
