* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,
body {
    width: 100%;
    min-width: 320px;
    color: #1b1b1b;
    background: #fff;
    font:
        500 16px/120% "Involve",
        Verdana;
    cursor: default;
}

html {
    height: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    height: auto !important;
    min-height: 100%;
    height: 100%;
    position: relative;
}

html,
body,
div,
applet,
object,
iframe,
blockquote,
pre,
abbr,
acronym,
address,
big,
select,
input,
textarea,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
dd,
dl,
dt,
fieldset,
form,
label,
legend,
caption,
h1,
.m_head,
h2,
h3,
h4,
h5 {
    font:
        500 16px/120% "Involve",
        Verdana;
    margin: 0;
    padding: 0;
    border: 0;
}

a img,
:link img,
:visited img {
    border: 0;
}

p {
    padding: 0px;
    margin: 0px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td {
    vertical-align: top;
}

a {
    cursor: pointer;
    outline: none;
    color: #1b1b1b;
    text-decoration: none;
    font:
        500 16px/120% "Involve",
        Verdana;
}

a:hover {
    text-decoration: none;
}

.cl:after,
.s_top:after {
    content: "";
    display: block;
    clear: both;
}

.hand {
    cursor: pointer;
}

.display_none {
    display: none;
}

input,
select,
textarea,
button {
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: unset;
    border: unset;
}

textarea {
    outline: none;
    resize: none;
    overflow: auto;
}

ul {
    list-style: none;
}

/* site styles */
footer,
.header,
section {
    max-width: 2000px;
    padding: 0 40px;
    margin: 0 auto;
}

body {
    padding-top: 104px;
}
body.no_scroll {
    overflow: hidden;
}

section {
    margin-top: 150px;
}

.btn,
.btn_2 {
    display: block;
    width: 100%;
    height: 64px;
    border-radius: 15px;
    background: #007aff;
    font-size: 24px;
    line-height: 64px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}
.btn:hover,
.btn_2:hover {
    box-shadow: 0px 4px 6px rgba(0, 122, 255, 0.4);
}

.btn_2 {
    background: #fff;
    color: #1b1b1b;
}
.btn_2:hover {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
}

strong {
    font-weight: 600;
}

h1,
.m_head,
h2 {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
}

h2 {
    color: #000;
}

h3 {
    font-size: 48px;
}

header {
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
    height: 104px;
    padding: 20px 0;
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 5;
}

.header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.burger {
    display: none;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 15px;
    background: #007aff url(../images/lines_3x.svg) center/24px no-repeat;
    cursor: pointer;
}
.burger.opened {
    background: #007aff url(../images/close.svg) center/24px no-repeat;
}
.burger:hover {
    opacity: 0.7;
}

.logo,
.f_logo {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 21px;
    font-weight: 700;
}
.logo:before,
.f_logo:before {
    display: block;
    content: "";
    width: 85px;
    height: 46px;
    background: url(../images/logo.svg) center/cover no-repeat;
}

.h_space {
    display: none;
    flex-grow: 1;
}

.h_cat_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 178px;
    height: 64px;
    border-radius: 15px;
    background: #007aff;
    font-size: 24px;
    color: #fff;
    user-select: none;
    cursor: pointer;
    transition: 0.3s;
    margin-left: 46px;
}
.h_cat_btn.mob {
    display: none;
    width: 100%;
}
.h_cat_btn.mob:before {
    display: none;
}
.h_cat_btn:hover {
    box-shadow: 0px 4px 6px rgba(0, 122, 255, 0.4);
}
.h_cat_btn:before {
    display: block;
    content: "";
    width: 24px;
    height: 24px;
    background: url(../images/lines_3x.svg) center/cover no-repeat;
    transition: 0.3s;
}
.h_cat_btn.opened:before {
    background: url(../images/close.svg) center/cover no-repeat;
}

.hc_popup {
    width: calc(100% - 80px);
    height: 0;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    left: 40px;
    top: 100px;
    transition: 0.3s;
    opacity: 0;
}
.hc_popup.opened {
    opacity: 1;
    height: unset;
}

.hcp_items {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    background: #f4f3f9;
    padding: 15px;
    border-radius: 15px;
}

.hcp_item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    padding: 15px;
    background: #fff;
    border-radius: 15px;
    transition: 0.3s;
}
.hcp_item:hover {
    opacity: 0.7;
}

.hcp_top {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}
.hcp_top img {
    display: block;
}

.hcp_text {
    font-size: 32px;
    line-height: 120%;
    font-weight: 600;
}

.h_search_block {
    flex-grow: 1;
    height: 64px;
    border-radius: 15px;
    border: 1px solid #007aff;
    background: #f4f3f9;
    position: relative;
}

.h_search {
    display: block;
    width: 100%;
    height: 62px;
    background: unset;
    padding: 0 80px 0 30px;
    font-size: 20px;
    font-weight: 700;
}

.hs_btn {
    width: 80px;
    height: 60px;
    background: url(../images/search.svg) center/24px no-repeat;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.3s;
}
.hs_btn:hover {
    opacity: 0.7;
}

.h_links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: 10px;
}
.h_links > li:nth-child(1) > a:before {
    background: url(../images/hl_1.svg) center/cover no-repeat;
}
.h_links > li:nth-child(2) > a:before {
    background: url(../images/hl_2.svg) center/cover no-repeat;
}
.h_links > li:nth-child(3) > a:before {
    background: url(../images/hl_3.svg) center/cover no-repeat;
}
.h_links > li > a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 54px;
    font-size: 16px;
    transition: 0.2s;
}
.h_links > li > a:hover {
    filter: invert(32%) sepia(37%) saturate(4722%) hue-rotate(200deg)
        brightness(101%) contrast(106%);
}
.h_links > li > a:before {
    display: block;
    content: "";
    width: 32px;
    height: 32px;
}

.h_tel {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    transition: 0.3s;
    margin-left: 118px;
    cursor: pointer;
}
.h_tel:hover {
    opacity: 0.7;
}
.h_tel:after {
    display: block;
    content: "";
    width: 12px;
    height: 6px;
    background: url(../images/chev_12x6.svg) center/cover no-repeat;
}

.ht_popup {
    height: 0;
    padding: 0;
    opacity: 0;
    position: absolute;
    background: #f4f3f9;
    border-radius: 15px;
    right: 30px;
    top: 85px;
    box-shadow: 0 0 3px #999;
    overflow: hidden;
    transition: 0.3s;
}
.ht_popup.opened {
    height: unset;
    padding: 20px;
    opacity: 1;
}

.htp_tel {
    display: none;
    flex-shrink: 0;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    transition: 0.3s;
    cursor: pointer;
}
.htp_tel:after {
    display: block;
    content: "";
    width: 12px;
    height: 6px;
    background: url(../images/chev_12x6.svg) center/cover no-repeat;
    transform: rotate(180deg);
}

.htp_btn {
    padding: 0 10px;
}

.h_search_btn_mob {
    display: none;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 15px;
    background: #f4f3f9 url(../images/search.svg) center/24px no-repeat;
    cursor: pointer;
    transition: 0.3s;
}
.h_search_btn_mob:hover {
    opacity: 0.7;
}
.h_search_btn_mob.opened {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f3f9;
}
.h_search_btn_mob.opened:after {
    display: block;
    content: "";
    width: 24px;
    height: 24px;
    background: url(../images/close.svg) center/cover no-repeat;
    filter: invert(47%) sepia(37%) saturate(4722%) hue-rotate(200deg)
        brightness(90%) contrast(106%);
}

.shops {
    margin-top: 0;
}

.shops_content {
    display: flex;
    flex-direction: column;
    padding: 50px 40px 15px;
    border-radius: 15px;
    background: #007aff;
}

.sc_img {
    max-width: 830px;
    width: 100%;
    align-self: flex-end;
}

.sc_text {
    font-size: 20px;
    line-height: 120%;
    font-weight: 700;
    color: #fff;
    margin-top: 20px;
}

.sc_btn {
    background: #fff;
    color: #1b1b1b;
    margin-top: 60px;
}

.shops_bot {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    margin-top: 20px;
}

.sb_item {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    background: #f4f3f9;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
}
.sb_item:hover {
    opacity: 0.7;
}
.sb_item > span {
    font-size: 1.6vw;
    line-height: 130%;
    font-weight: 600;
    padding-bottom: 10px;
    padding-left: 10px;
}
.sb_item:nth-child(1) {
    flex-direction: column;
}
.sb_item:nth-child(1) > img {
    align-self: flex-end;
}
.sb_item:nth-child(2) {
    align-items: flex-end;
}
.sb_item:nth-child(2) > img {
    width: 140px;
    flex-shrink: 0;
}
.sb_item:nth-child(3) {
    flex-direction: column;
}
.sb_item:nth-child(3) > img {
    align-self: flex-end;
    padding: 10px 10px 0 0;
}
.sb_item:nth-child(4) > span {
    align-self: flex-end;
}

.brands {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 70px 20px 30px;
    background: #f4f3f9;
    border-radius: 15px;
}

.b_logo {
    height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.b_name {
    font-size: 32px;
    text-align: center;
    font-weight: 400;
}

.good_cards_block {
    margin-top: 60px;
}

.good_cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px 20px;
}

.good_card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* пример фиксированной высоты, подберите под дизайн */
    height: 550px;
    border: 1px solid #d1d1d1;
    border-radius: 15px;
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.gc_fav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff url(../images/fav.svg) center/30px no-repeat;
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 20px;
    right: 20px;
}
.gc_fav.selected {
    background: #fff url(../images/fav_f.svg) center/30px no-repeat;
}

.gc_link {
    transition: 0.3s;
}
.gc_link:hover .gc_img > img {
    transform: scale(1.1);
}
.gc_link:hover .gc_name {
    color: #007aff;
}

.gc_img {
    width: 100%;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #a9d2ff;
    margin-bottom: 10px;
}
.gc_img > img {
    transition: 0.3s;
    width: 100%;
    height: 100%;
}

.gc_name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* оставляем отступы и размер, как нужно */
    font-size: 28px;
    line-height: 120%;
    padding: 0 20px;
    margin-bottom: 10px;
}

.gc_bot {
    padding: 0 20px;
    margin-top: 10px;
}

.gc_price {
    font-size: 32px;
    font-weight: 600;
    color: #007aff;
}
.gc_price.np {
    color: #1b1b1b;
}
.gc_price.np > del {
    /* display: none;*/
}
.gc_price > del {
    display: inline-block;
    vertical-align: top;
    font-size: 24px;
    line-height: 120%;
    font-weight: 600;
    color: #1b1b1b;
    margin-left: 7px;
}

.gc_btn {
    margin-top: 15px;
}

.why_we {
    background: #f4f3f9;
    border-radius: 15px;
    padding-top: 70px;
    padding-bottom: 50px;
}

.ww_items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 50px;
    margin-top: 50px;
}

.ww_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    background: #fff;
    border-radius: 15px;
    padding: 30px 5px 50px;
}

.wwi_img {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 50%;
    background: #007aff;
    overflow: hidden;
}

.wwi_text {
    font-size: 36px;
    line-height: 120%;
    text-align: center;
}

.order_items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 13px;
    margin-top: 50px;
}

.order_item {
    background: #007aff;
    border-radius: 15px;
    padding: 50px 25px 30px;
}

.oi_img {
    display: flex;
    width: 100%;
    height: 260px;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.oi_text {
    font-size: 32px;
    color: #fff;
    text-align: center;
}

.faq_items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.faq_item {
    background: #f4f3f9;
    border-radius: 15px;
    padding: 35px 40px;
}
.faq_item.opened .fi_head:after {
    transform: rotate(45deg);
}
.faq_item.opened .fi_popup {
    height: unset;
    padding-top: 30px;
}

.fi_head {
    font-size: 48px;
    padding-right: 80px;
    cursor: pointer;
    position: relative;
}
.fi_head:after {
    display: block;
    content: "";
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: url(../images/faq_cross.svg) center/cover no-repeat;
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.3s;
}

.fi_popup {
    height: 0;
    overflow: hidden;
    transition: 0.3s;
}
.fi_popup > p {
    font-size: 32px;
    line-height: 120%;
    font-weight: 400;
    margin-bottom: 15px;
}
.fi_popup > p:last-child {
    margin-bottom: 0;
}

.form_block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-top: 50px;
}

.contact_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact_form h3 {
    margin-bottom: 35px;
}

.cf_input {
    width: 100%;
    height: 75px;
    border-radius: 15px;
    background: #f4f3f9;
    padding: 0 30px;
    font-size: 20px;
}

.cf_submit {
    height: 86px;
}

.fb_img {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #a9d2ff;
    border-radius: 15px;
    padding: 20px;
}
.fb_img.mob {
    display: none;
    height: 190px;
    padding: 20px;
}
.fb_img.mob > img {
    height: 100%;
}

footer {
    margin-top: 150px;
}

.footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    background: #f4f3f9;
    border-radius: 15px;
    padding: 30px 20px;
}

.f_logo {
    align-items: flex-start;
}

.f_menu_col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.f_menu_col > li {
    font-size: 24px;
    line-height: 120%;
    font-weight: 600;
}
.f_menu_col > li > a {
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    transition: 0.3s;
}
.f_menu_col > li > a:hover {
    color: #007aff;
}

.f_tel {
    font-weight: 700;
    white-space: nowrap;
}

.cat_wrap {
    margin-top: 20px;
}

.cat {
    background: #f4f3f9;
    border-radius: 15px;
    padding: 40px;
}
.cat h1,
.cat .m_head,
.cat h2 {
    color: #1b1b1b;
}

.cat_items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-top: 30px;
}

.cat_item {
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    transition: 0.3s;
}
.cat_item.ladder {
    flex-direction: row;
    align-items: flex-end;
    position: relative;
}
.cat_item.ladder .ci_name {
    padding-right: 290px;
}
.cat_item.ladder > img {
    position: absolute;
    bottom: 0;
    right: 10px;
}
.cat_item:hover {
    opacity: 0.7;
}

.ci_img {
    align-self: flex-end;
}

.ci_name {
    font-size: 40px;
    line-height: 120%;
    font-weight: 600;
}

.crumbs_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.crumbs > li {
    display: inline-block;
    vertical-align: baseline;
    font-size: 32px;
    line-height: 120%;
    margin: 0 50px 20px 0;
    position: relative;
    opacity: 0.5;
}
.crumbs > li.big {
    font-size: 40px;
    font-weight: 600;
    opacity: unset;
}
.crumbs > li:after {
    display: block;
    content: "";
    width: 14px;
    height: 24px;
    background: url(../images/chev_crumbs.svg) center/cover no-repeat;
    position: absolute;
    top: 9px;
    right: -35px;
}
.crumbs > li:first-child {
    opacity: 1;
}
.crumbs > li:last-child {
    margin-right: 0;
}
.crumbs > li:last-child:after {
    display: none;
}
.crumbs > li > a {
    font-size: 32px;
    line-height: 120%;
    transition: 0.3s;
    position: relative;
    transition: 0.3s;
}
.crumbs > li > a:hover {
    text-decoration: underline;
}

.goods_page_wrap {
    margin-top: 75px;
}

.goods_page {
    display: flex;
    gap: 60px;
    overflow: hidden;
}
.goods_page h3 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.filter_btn {
    display: none;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}
.filter_btn > span {
    border-bottom: 1px dotted #1b1b1b;
}
.filter_btn:hover {
    opacity: 0.7;
}
.filter_btn:before {
    display: block;
    content: "";
    width: 24px;
    height: 25px;
    background: url(../images/filter.svg) center/cover no-repeat;
}

.filter {
    width: 394px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-shrink: 0;
    background: #f4f3f9;
    border-radius: 15px;
    padding: 30px 20px;
}
.ft_top_mob {
    display: none;
    justify-content: space-between;
    align-items: center;
}

.ft_close {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 15px;
    background: #007aff url(../images/close.svg) center/24px no-repeat;
    cursor: pointer;
}
.ft_close:hover {
    opacity: 0.7;
}

.ft_item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ft_name {
    font-size: 24px;
    font-weight: 700;
}

.ft_inputs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}
.ft_inputs > input {
    display: block;
    width: 100%;
    height: 55px;
    background: #fff;
    border: 1px solid #8e8e8e;
    border-radius: 20px;
    text-align: center;
    font-size: 24px;
    padding: 0 5px;
    overflow: hidden;
}
.ft_inputs > input:focus {
    border: 1px solid #007aff;
}

.ft_checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ft_checks.short .niceCheck:nth-child(n + 8) {
    display: none;
}

.niceCheck {
    display: inline-block;
    vertical-align: middle;
    width: fit-content;
    min-height: 26px;
    padding-left: 36px;
    cursor: pointer;
    position: relative;
}
.niceCheck > input {
    display: none;
}
.niceCheck > span {
    display: block;
    font-size: 20px;
    line-height: 120%;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}
.niceCheck > span:before {
    box-sizing: border-box;
    content: "";
    height: 26px;
    width: 26px;
    border: 1px solid #007aff;
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 0;
}
.niceCheck input:checked + span::before {
    background: #007aff;
}

.ft_cheks_show_all {
    height: 32px;
    background: #fff;
    border: 1px solid #a9d2ff;
    border-radius: 15px;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    color: #007aff;
    cursor: pointer;
    transition: 0.3s;
}
.ft_cheks_show_all:hover {
    opacity: 0.7;
}

.ft_reset {
    background: #fff;
    color: #1b1b1b;
    margin-top: 10px;
}

.gp_block {
    flex-grow: 1;
}
.gp_block .brands {
    margin: 0 0 60px;
    grid-template-columns: repeat(7, 1fr);
}
.gp_block .brands .brand {
    justify-content: space-between;
    padding: 45px 15px 10px;
    cursor: pointer;
}
.gp_block .brands .brand.selected {
    background: #007aff;
}
.gp_block .brands .brand.selected .b_name {
    color: #fff;
}
.gp_block .brands .brand .b_logo {
    max-height: 84px;
}
.gp_block .brands .brand .b_logo > img {
    max-height: 100%;
}
.gp_block .brands .brand .b_name {
    font-size: 20px;
}

.gp_cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px;
}
.gp_cards.short .gp_card:nth-child(n + 13) {
    display: none;
}

.gp_card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 426px;
    border: 1px solid #d1d1d1;
    border-radius: 15px;
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.gc_img > img {
    width: auto;
    height: 100%;
    max-width: 100%;
}

.gp_link {
    transition: 0.3s;
}
.gp_link:hover .gp_img > img {
    transform: scale(1.1);
}
.gp_link:hover .gp_name {
    color: #007aff;
}

.gp_fav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff url(../images/fav.svg) center/30px no-repeat;
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 20px;
    right: 20px;
}
.gp_fav.selected {
    background: #fff url(../images/fav_f.svg) center/30px no-repeat;
}

.gp_img {
    width: 100%;
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    overflow: hidden;
    margin-bottom: 10px;
}
.gp_img > img {
    transition: 0.3s;
    height: 100%;
    width: auto;
    object-fit: cover;
}

.gp_name {
    display: block;
    font-size: 20px;
    line-height: 120%;
    padding: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.gp_bot {
    padding: 0 10px;
    margin-top: 10px;
}

.gp_price {
    font-size: 24px;
    font-weight: 600;
    color: #007aff;
}
.gp_price.np {
    color: #1b1b1b;
}
.gp_price.np > del {
    display: none;
}
.gp_price > del {
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    line-height: 120%;
    font-weight: 600;
    color: #1b1b1b;
    margin-left: 7px;
}

.gp_btn {
    height: 38px !important;
    font-size: 20px;
    line-height: 38px !important;
    margin-top: 10px;
}

.gp_show_more {
    margin-top: 40px;
}

.listing {
    display: flex;
    justify-content: center;
    gap: 13px;
    margin-top: 20px;
}
.listing > li.empty {
    width: 64px;
    height: 58px;
    border-bottom: 8px dotted #8e8e8e;
}
.listing > li > a {
    display: block;
    width: 70px;
    height: 64px;
    border: 1px solid #8e8e8e;
    border-radius: 15px;
    font-size: 24px;
    line-height: 62px;
    text-align: center;
    transition: 0.3s;
}
.listing > li > a:hover {
    color: #007aff;
    border: 1px solid #007aff;
}

.seen_before {
    background: #f4f3f9;
    border-radius: 15px;
    padding: 30px;
}

.sb_cards {
    margin-top: 40px;
    grid-template-columns: repeat(5, 1fr);
}

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

.good_wrap {
    margin-top: 50px;
}

.good_top {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.good_slider {
    position: relative;
    width: 850px;
    min-width: 600px;
    height: 640px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.mySwiper {
    width: 20%;
    height: 100%;
}
.mySwiper .swiper-slide {
    width: 100%;
    border-radius: 15px;
    background: #a9d2ff;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.4;
}
.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.mySwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ► растягиваем независимо от пропорций, без пустых “фоновых” зон */
    display: block;
}

.mySwiper2 {
    width: 80%;
    height: 100%;
    border-radius: 15px;
    background: #a9d2ff;
    overflow: hidden;
}

.g_info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
    background: #f4f3f9;
    border-radius: 15px;
    padding: 30px;
}

.gi_top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.gi_btns {
    display: flex;
    gap: 20px;
}

.gi_add,
.gi_fav {
    width: 120px;
    height: 120px;
    background: #fff url(../images/add.svg) center/61px no-repeat;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
}
.gi_add:hover,
.gi_fav:hover {
    opacity: 0.7;
}

.gi_fav {
    background: #fff url(../images/fav.svg) center/58px no-repeat;
}
.gi_fav.selected {
    background-image: url(../images/fav_f.svg);
}

.gi_brand {
    width: 290px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background: #fff;
    border-radius: 15px;
}

.gi_buy_block {
    display: flex;
    gap: 20px;
}

.gi_price {
    flex: 2;
    height: 120px;
    background: #fff;
    border-radius: 15px;
    text-align: center;
    font-size: 48px;
    line-height: 120px;
    font-weight: 600;
}

.gi_buy {
    flex: 1;
    height: 120px;
    line-height: 120px;
}

.gi_bot {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
}

.gib_head {
    font-size: 32px;
    font-weight: 600;
}

.gib_colls {
    display: flex;
    gap: 80px;
    margin-top: 50px;
}

.gib_coll {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}
.gib_coll:nth-child(2) {
    flex: 2;
}

.gib_item > div {
    font-size: 20px;
    font-weight: 600;
    opacity: 0.5;
}
.gib_item > div.gibi_stat {
    opacity: 1;
    margin-top: 5px;
}

.g_description_wrap {
    margin-top: 100px;
}

.tabs__nav {
    display: flex;
    gap: 40px;
}

.tabs__btn {
    font-size: 40px;
    font-weight: 600;
    opacity: 0.5;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.tabs__btn.active {
    opacity: 1;
    /* transform: scale(1.1); */
}
.tabs__btn.active:after {
    display: block;
    content: "";
    width: 70px;
    height: 4px;
    border-radius: 15px;
    background: #1b1b1b;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
}

.tabs__content {
    margin-top: 30px;
    background: #f4f3f9;
    padding: 30px 40px;
    border-radius: 15px;
}

.tabs__pane {
    display: none;
    flex-direction: column;
    gap: 20px;
}
.tabs__pane h5 {
    font-size: 32px;
    line-height: 140%;
    font-weight: 700;
}
.tabs__pane p {
    font-size: 32px;
    line-height: 140%;
}
.tabs__pane p:last-child {
    margin-bottom: none;
}

.tabs__pane.active {
    display: flex;
}

.t_list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 18px;
}
.t_list > li {
    padding-left: 28px;
    font-size: 32px;
    line-height: 140%;
    position: relative;
}
.t_list > li:before {
    display: block;
    content: "";
    width: 11px;
    height: 11px;
    background: #1b1b1b;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 13px;
}

.chars {
    display: flex;
    flex-direction: column;
}

.char_line {
    display: flex;
    gap: 30px;
    padding: 20px 10px;
}
.char_line:nth-child(odd) {
    background: #fff;
    border-radius: 10px;
}
.char_line > div {
    width: 40%;
    font-size: 32px;
}
.char_line > div:nth-child(1) {
    width: calc(60% - 30px);
}

.favorites_wrap {
    margin-top: 15px;
}

.service_wrap {
    margin-top: 40px;
}

.s_top {
    margin-top: 50px;
}
.s_top p {
    font-size: 20px;
    line-height: 130%;
}

.st_block_1,
.st_block_2 {
    float: left;
    width: calc(50% - 10px);
    background: #f4f3f9;
    border-radius: 15px;
    padding: 15px 20px;
}

.stb_head {
    font-size: 20px;
    line-height: 130%;
    font-weight: 700;
}

.st_block_2 {
    background: unset;
}

.st_img_block {
    float: right;
    width: calc(50% - 10px);
}

.serv_img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    border: 4px solid #007aff;
    border-radius: 15px;
    background: #fff;
    margin-bottom: 20px;
}
.serv_img.serv_2 {
    height: unset;
    padding: 0;
    overflow: hidden;
    background: unset;
    border: unset;
}
.serv_img.serv_2 > img {
    height: unset;
    border-radius: 15px;
}
.serv_img.serv_3 {
    padding: 23px 10px;
}

.st_list_num {
    padding-left: 24px;
}
.st_list_num > li {
    font-size: 20px;
    line-height: 130%;
}

.s_gallery_block {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    margin-top: 20px;
}

.price {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.p_line {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}
.p_line.x3 {
    grid-template-columns: 1fr 2fr 1fr;
}
.p_line.x1 {
    grid-template-columns: repeat(1, 1fr);
}
.p_line.head > div {
    font-weight: 600;
}
.p_line > div {
    font-size: 32px;
    font-weight: 400;
    padding: 18px 40px;
    background: #f4f3f9;
    border-radius: 15px;
}
.p_line > div > span {
    display: inline-block;
}

.price_info {
    text-align: right;
    font-size: 20px;
    padding-right: 30px;
    margin-top: 5px;
}

.s_info_blue {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}
.s_info_blue.right {
    gap: 20px;
    justify-content: flex-end;
}
.s_info_blue.right .sib_text {
    max-width: 445px;
}

.sib_mob {
    display: none;
    margin-top: 0;
}

.sib_excl {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #cce4ff url(../images/excl_5x19.svg) center/5px no-repeat;
    border-radius: 7px;
}

.sib_text {
    flex-grow: 1;
    padding: 15px 20px;
    background: #cce4ff;
    border-radius: 15px;
    font-size: 20px;
    line-height: 110%;
    color: #007aff;
}

.stages_2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-top: 50px;
}

.stage_2 {
    background: #007aff;
    border-radius: 15px;
    padding: 15px 20px;
    color: #fff;
}
.stage_2.gray {
    background: #f4f3f9;
    color: #007aff;
}
.stage_2.gray .s2_list > li:before,
.stage_2.gray .st_list > li:before {
    background: #007aff;
}

.s2_list,
.st_list {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
}
.s2_list > li,
.st_list > li {
    padding-left: 18px;
    font-size: 20px;
    line-height: 140%;
    position: relative;
}
.s2_list > li:before,
.st_list > li:before {
    display: block;
    content: "";
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 12px;
}

.s2_head {
    font-size: 32px;
    font-weight: 600;
}

.st_list {
    margin-bottom: 20px;
}
.st_list > li:before {
    background: #1b1b1b;
}

.gray_block,
.blue_block {
    background: #f4f3f9;
    border-radius: 15px;
    padding: 30px 40px;
    font-size: 32px;
    font-weight: 600;
    margin-top: 20px;
}

.blue_block {
    background: #007aff;
    color: #fff;
}

.bb_head {
    font-size: 32px;
    font-weight: 700;
}

.bb_list > li {
    font-size: 20px;
    line-height: 140%;
    font-weight: 700;
    color: #fff;
}

.modal {
    display: none;
    width: 100%;
    height: 100dvh;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
}
.modal.opened {
    display: flex;
}

.m_content {
    max-width: 1600px;
    width: calc(100% - 80px);
    max-height: 90dvh;
    overflow: auto;
    background: #fff;
    border-radius: 15px;
    padding: 45px;
    position: relative;
}
.m_content h2 {
    padding-right: 330px;
}

.m_call {
    position: absolute;
    top: 74px;
    right: 40px;
}
.m_call > span {
    display: none;
    font-size: 13px;
    font-weight: 700;
}
.m_call > a {
    font-size: 36px;
    font-weight: 700;
    color: #007aff;
}
.m_call h3 {
    display: none;
    font-size: 13px;
    font-weight: 500;
    margin-top: 7px;
}

.m_close {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    z-index: 3;
    right: 15px;
    top: 15px;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s;
}
.m_close:hover {
    opacity: 1;
}
.m_close:before {
    display: block;
    content: "";
    width: 25px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}
.m_close:after {
    display: block;
    content: "";
    width: 25px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0) rotate(45deg);
}

.m_block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

img {
    max-width: 100%;
    height: auto;
}
.sort {
    display: flex;
    align-items: center;
    gap: 25px;
}
.sort h4 {
    font-size: 30px;
    font-weight: 600;
}
.sort_btns {
    display: flex;
    align-items: center;
    gap: 8px;
}
.sort_btn {
    background: #f4f3f9;
    color: #000;
}
.sort_btn_1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 178px;
    height: 64px;
    border-radius: 15px;
    font-size: 24px;
    user-select: none;
    cursor: pointer;
    transition: 0.3s;
}
.sort_btn_2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 178px;
    height: 64px;
    border-radius: 15px;
    font-size: 24px;
    user-select: none;
    cursor: pointer;
    transition: 0.3s;
    background: #f4f3f9;
    color: #000;
}
.sort_btn_active {
    background: #007aff;
    color: #fff;
}

/* MEDIA QUERIES*/
@media only screen and (min-width: 1920px) {
    .sb_item > span {
        font-size: 32px;
    }
} /*+1920*/
@media only screen and (max-width: 1550px) {
    .h_cat_btn {
        margin-left: unset;
    }
    .h_tel {
        margin-left: unset;
    }
    .h_search {
        padding: 0 60px 0 25px;
    }
    .hs_btn {
        width: 60px;
    }
    .hcp_3 > span:nth-child(1) {
        width: unset;
    }
    .hcp_text {
        font-size: 25px;
    }
    .ww_items {
        grid-gap: 20px;
    }
    .wwi_text {
        font-size: 30px;
    }
    .filter {
        width: 320px;
        padding: 20px 10px;
    }
    .ft_name {
        font-size: 20px;
    }
    .ft_inputs > input {
        font-size: 20px;
    }
    .niceCheck > span {
        font-size: 16px;
    }
    .niceCheck > span:before {
        top: -2px;
    }
    .ft_reset,
    .ft_go {
        height: 50px;
        line-height: 50px;
        font-size: 16px;
    }
    .goods_page {
        gap: 20px;
    }
    .gp_cards {
        gap: 20px;
    }

    .gp_block .brands {
        grid-template-columns: repeat(6, 1fr);
    }
    .gp_block .brands .brand {
        padding: 30px 10px 10px;
    }
    .gp_block .brands .brand .b_logo {
        height: 60px;
    }
    .char_line > div {
        font-size: 24px;
    }
    .cat_item.ladder {
        align-items: flex-start;
    }
    .cat_item.ladder > img {
        width: 180px;
    }
    .price {
        gap: 10px;
    }
    .p_line {
        grid-gap: 10px;
    }
    .p_line > div {
        font-size: 24px;
        padding: 10px 20px;
    }
    .price_info {
        font-size: 16px;
        padding-right: 10px;
    }
} /*1550*/
@media only screen and (max-width: 1400px) {
    section,
    .header,
    footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    .hc_popup {
        left: 20px;
        width: calc(100% - 40px);
    }
    .brands {
        gap: 10px;
    }
    .brand {
        padding-top: 30px;
    }
    .b_logo {
        height: 100px;
        padding: 0 10px;
    }
    .b_logo > img {
        max-height: 100%;
    }
    .good_cards {
        gap: 20px 10px;
    }
    .good_card {
        padding-bottom: 10px;
        height: 444px;
    }
    .gc_img {
        height: 260px;
    }
    .gc_name {
        font-size: 20px;
        padding: 0 10px;
    }
    .gc_bot {
        padding: 0 10px;
    }
    .gc_price {
        font-size: 24px;
    }
    .gc_price > del {
        font-size: 20px;
    }
    .why_we {
        padding-top: 20px;
        padding-bottom: 10px;
    }
    .ww_items {
        margin-top: 20px;
    }
    .ww_item {
        padding: 20px 5px 20px;
        gap: 20px;
    }
    .wwi_img {
        width: 120px;
        height: 120px;
    }
    .wwi_text {
        font-size: 20px;
    }
    .order_item {
        padding: 30px 10px;
    }
    .oi_img {
        height: 180px;
    }
    .oi_text {
        font-size: 20px;
    }
    .gp_cards {
        grid-template-columns: repeat(3, 1fr);
    }
    .g_info {
        padding: 10px;
        min-width: 340px;
    }
    .gi_add,
    .gi_fav {
        width: 60px;
        height: 60px;
        background-size: 29px;
    }
    .gi_brand {
        height: 60px;
        width: fit-content;
    }
    .gi_brand > img {
        height: 100%;
    }
    .gi_price {
        height: 60px;
        font-size: 36px;
        line-height: 60px;
    }
    .gi_buy {
        height: 60px;
        line-height: 60px;
    }
    .gi_bot {
        padding: 10px;
    }
    .gib_head {
        font-size: 24px;
    }
    .gib_colls {
        margin-top: 15px;
        flex-direction: column;
        gap: 15px;
    }
    .gib_coll {
        flex: unset !important;
    }
    .gib_item > div {
        font-size: 16px;
    }
    .gib_item > div.gibi_stat {
        margin-top: 10px;
    }
    .st_block_1,
    .st_block_2,
    .st_img_block {
        float: none;
        width: 100%;
        margin-bottom: 10px;
    }
    .serv_img {
        height: 260px;
    }
    .serv_img.serv_3 {
        padding: 0 10px;
    }
    .serv_img > img {
        height: 100%;
    }
} /*1400*/
@media only screen and (max-width: 1200px) {
    section {
        margin-top: 100px;
    }
    footer {
        margin-top: 100px;
    }
    h3 {
        font-size: 30px;
    }
    header {
        height: 90px;
        padding: 15px 0;
    }
    .header {
        gap: 15px;
    }
    .burger {
        display: block;
    }
    .logo,
    .f_logo {
        font-size: 16px;
    }
    .logo:before,
    .f_logo:before {
        width: 62px;
        height: 34px;
    }
    .h_tel {
        font-size: 18px;
    }
    .h_cat_btn {
        display: none;
    }
    .h_cat_btn.mob {
        display: flex;
    }
    .h_block {
        height: 0;
        overflow: auto;
        opacity: 0;
        width: 100%;
        padding: 0 20px 20px;
        background: #fff;
        position: absolute;
        left: 0;
        top: 90px;
        transition: 0.3s;
    }
    .h_block.opened {
        height: calc(100dvh - 90px);
        opacity: 1;
    }
    .h_links {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    .h_links > li {
        width: 100%;
    }
    .h_links > li > a {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 10px;
        background: #f4f3f9;
        border-radius: 15px;
        padding: 10px;
        transition: 0.3s;
    }
    .h_links > li > a:hover {
        opacity: 0.7;
        filter: unset;
    }
    .hc_popup {
        position: static;
        width: 100%;
        margin-top: 10px;
    }
    .hcp_items {
        padding: 5px;
        gap: 10px;
    }
    .hcp_item {
        gap: 10px;
    }
    .hcp_text {
        font-size: 16px;
    }
    .shops_bot {
        grid-template-columns: repeat(2, 1fr);
    }
    .sb_item > span {
        font-size: 3vw;
    }
    .good_cards {
        grid-template-columns: repeat(3, 1fr);
    }
    .fi_head {
        font-size: 36px;
    }
    .fi_head:after {
        width: 50px;
        height: 50px;
    }
    .fi_popup > p {
        font-size: 26px;
    }
    .f_menu_col > li {
        font-size: 18px;
    }
    .f_menu_col > li > a {
        font-size: 18px;
    }
    .cat {
        padding: 20px;
    }
    .cat_item {
        min-height: unset;
        padding: 20px;
    }
    .cat_item.ladder {
        min-height: 250px;
    }
    .ci_name {
        font-size: 30px;
    }
    .goods_page {
        flex-direction: column;
        gap: 20px;
    }
    .filter {
        display: flex;
        width: 100%;
        height: 100dvh;
        padding-right: 15px;
        overflow: auto;
        background: #fff;
        position: absolute;
        z-index: 6;
        left: 0;
        top: 0;
        transition: 0.3s;
        transform: translateX(-120%);
    }
    .filter.opened {
        transform: translateX(0);
    }
    .ft_top_mob {
        display: flex;
    }
    .filter_btn {
        display: flex;
        width: fit-content;
    }
    .gp_show_more {
        margin-top: 20px;
    }
    .seen_before {
        padding: 20px;
    }
    .sb_cards {
        margin-top: 20px;
    }
    .gp_block .brands {
        margin: 0 0 30px;
    }
    .g_description_wrap {
        margin-top: 50px;
    }
    .htp_btn {
        height: 30px !important;
        font-size: 14px !important;
        line-height: 30px !important;
        border-radius: 5px;
        margin-top: 13px;
    }
    .htp_tel {
        display: flex;
        font-size: 20px;
    }
    .ht_popup {
        top: 70px;
        right: 20px;
    }
    .ht_popup.opened {
        padding: 13px 13px 20px;
    }
    .m_content h2 {
        padding-right: 230px;
    }
    .m_call > a {
        font-size: 24px;
    }
    .sort h4 {
        font-size: 20px;
    }
} /*1200*/
@media only screen and (max-width: 1024px) {
    h1,
    h2,
    .m_head {
        font-size: 38px;
    }
    .shops_content {
        padding: 45px 10px 10px;
    }
    .sc_text {
        font-size: 18px;
        margin-top: 15px;
    }
    .sc_btn {
        margin-top: 45px;
    }
    .sc_img {
        margin-bottom: 30px;
        padding: 0 10px;
    }
    .brands {
        margin-top: 30px;
        grid-template-columns: repeat(3, 1fr);
    }
    .b_name {
        font-size: 24px;
    }
    .good_cards_block {
        margin-top: 30px;
    }
    .order_items {
        margin-top: 20px;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 11px;
    }
    .faq_items {
        gap: 10px;
        margin-top: 15px;
    }
    .faq_item {
        padding: 20px;
    }
    .faq_item.opened .fi_popup {
        padding-top: 15px;
    }
    .fi_head {
        font-size: 22px;
        font-weight: 500;
        padding-right: 55px;
    }
    .fi_head:after {
        width: 32px;
        height: 32px;
    }
    .fi_popup > p {
        font-size: 16px;
    }
    .form_block {
        margin-top: 15px;
    }
    .contact_form h3 {
        margin-bottom: 15px;
    }
    .f_menu_col > li {
        font-size: 16px;
    }
    .f_menu_col > li > a {
        font-size: 16px;
    }
    .crumbs > li {
        font-size: 16px;
        margin: 0 26px 10px 0;
    }
    .crumbs > li.big {
        font-size: 28px;
    }
    .crumbs > li:after {
        width: 9px;
        height: 14px;
        right: -20px;
        top: 3px;
    }
    .crumbs > li > a {
        font-size: 16px;
    }
    .cat_items {
        margin-top: 20px;
    }
    .goods_page_wrap {
        margin-top: 25px;
    }
    .good_wrap {
        margin-top: 15px;
    }
    .good_top {
        margin-top: 25px;
        flex-direction: column;
        gap: 30px;
    }
    .good_slider {
        width: 100%;
    }
    .g_info {
        min-width: unset;
    }
    .g_description_wrap {
        margin-top: 25px;
    }
    .tabs__content {
        padding: 15px;
    }
    .tabs__nav {
        display: flex;
        gap: 20px;
    }
    .tabs__btn {
        font-size: 16px;
    }
    .tabs__btn.active:after {
        width: 40px;
    }
    .tabs__pane {
        gap: 15px;
    }
    .tabs__pane h5 {
        font-size: 14px;
        font-weight: 700;
    }
    .tabs__pane p {
        font-size: 12px;
    }
    .t_list {
        padding-left: 9px;
    }
    .t_list > li {
        font-size: 12px;
        padding-left: 13px;
    }
    .t_list > li:before {
        width: 4px;
        height: 4px;
        top: 7px;
    }
    .char_line > div {
        font-size: 18px;
    }
    .favorites_wrap {
        margin-top: 20px;
    }
    .service_wrap {
        margin-top: 20px;
    }
    .s_top {
        margin-top: 20px;
    }
    .s_top p {
        font-size: 16px;
    }
    .stb_head {
        font-size: 16px;
    }
    .st_list_num {
        padding-left: 18px;
    }
    .st_list_num > li {
        font-size: 16px;
    }
    .st_block_2 {
        padding: 0;
    }
    .price {
        margin-top: 30px;
    }
    .s_info_blue {
        gap: 20px;
        margin-top: 20px;
    }
    .stages_2 {
        margin-top: 25px;
        grid-gap: 10px;
    }
    .stage_2 {
        border-radius: 7px;
    }
    .s2_list,
    .st_list {
        padding-left: 8px;
    }
    .s2_list > li,
    .st_list > li {
        padding-left: 14px;
        font-size: 14px;
    }
    .s2_list > li:before,
    .st_list > li:before {
        width: 5px;
        height: 5px;
        top: 7px;
    }
    .s2_head {
        font-size: 24px;
    }
    .gray_block,
    .blue_block {
        border-radius: 7px;
        padding: 15px 20px;
        font-size: 16px;
    }
    .bb_head {
        font-size: 20px;
    }
    .bb_list > li {
        font-size: 14px;
    }
} /*1024*/
@media only screen and (max-width: 768px) {
    h1,
    h2,
    .m_head {
        font-size: 28px;
    }
    h3 {
        font-size: 22px;
    }
    section {
        margin-top: 60px;
    }
    footer {
        margin-top: 60px;
    }
    .btn,
    .btn_2 {
        height: 60px;
        line-height: 60px;
        font-size: 20px;
    }
    .h_space {
        display: block;
    }
    .h_search_block {
        display: block;
        border: none;
        position: absolute;
        z-index: 2;
        width: 0;
        overflow: hidden;
        right: 20px;
        top: 90px;
        transition: 0.3s;
    }
    .h_search_block.opened {
        width: calc(100% - 40px);
    }
    .h_tel {
        width: 60px;
        height: 60px;
        border-radius: 15px;
        background: #f4f3f9 url(../images/tel.svg) center/24px no-repeat;
    }
    .h_tel > span,
    .h_tel:after {
        display: none;
    }
    .h_search_btn_mob {
        display: flex;
    }
    .h_search {
        font-size: 16px;
    }
    .sc_text {
        font-size: 14px;
    }
    .sc_btn {
        height: 55px;
        line-height: 55px;
    }
    .good_cards {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
    .good_cards.best .good_card:nth-child(n + 5) {
        display: none;
    }
    .gc_img {
        margin-bottom: 5px;
    }
    .gc_bot {
        margin-top: 5px;
    }
    .ww_items {
        grid-template-columns: repeat(2, 1fr);
    }
    .order_item {
        padding: 5px 10px 15px;
    }
    .oi_img {
        height: 120px;
        padding: 20px 10px;
    }
    .oi_img img {
        max-height: 100%;
    }
    .oi_text {
        font-size: 14px;
    }
    .form_block {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
    .fb_img {
        display: none;
    }
    .fb_img.mob {
        display: flex;
    }
    .contact_form {
        gap: 10px;
    }
    .contact_form h3 {
        margin-bottom: 10px;
    }
    .cf_input {
        height: 60px;
        font-size: 14px;
    }
    .cf_submit {
        height: 60px;
        font-size: 16px;
    }
    .footer {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 40px;
    }
    .f_menu_col {
        gap: 5px;
    }
    .f_menu_col > li {
        font-size: 24px;
    }
    .f_menu_col > li:first-child {
        margin-bottom: 7px;
    }
    .f_menu_col > li > a {
        font-size: 16px;
    }
    .f_logo {
        font-size: 21px;
        margin: 0 auto !important;
    }
    .f_logo:before {
        width: 85px;
        height: 46px;
    }
    .ci_name {
        font-size: 24px;
    }
    .cat_wrap {
        margin-top: 35px;
    }
    .cat {
        background: #fff;
        padding: 0;
    }
    .cat_items {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 10px;
    }
    .cat_item {
        background: #f4f3f9;
        border-radius: 20px;
        gap: 20px;
    }
    .cat_item.ladder {
        align-items: center;
        min-height: 200px;
    }
    .cat_item.ladder > img {
        width: 140px;
    }
    .gp_cards {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
    .gp_card {
        height: 282px;
    }
    .gp_fav {
        width: 30px;
        height: 30px;
        top: 10px;
        right: 10px;
        background-size: 16px;
    }
    .gp_img {
        height: 140px;
    }
    .gp_img > img {
        max-height: 100%;
    }
    .gp_name {
        font-size: 12px;
    }
    .gp_price {
        font-size: 20px;
    }
    .gp_price > del {
        font-size: 14px;
        margin-left: 5px;
    }
    .listing {
        gap: 10px;
        margin-top: 10px;
    }
    .listing > li.empty {
        width: 52px;
        height: 54px;
        border-bottom: 6px dotted #8e8e8e;
    }
    .listing > li > a {
        width: 52px;
        height: 60px;
        font-size: 20px;
        line-height: 58px;
    }
    .seen_before_wrap {
        margin-top: 30px;
    }
    .seen_before {
        padding: 0;
        background: unset;
    }
    .gp_block .brands {
        grid-template-columns: repeat(4, 1fr);
    }
    .good_slider {
        flex-direction: column;
        min-width: unset;
        height: unset;
    }
    .mySwiper2 {
        width: 100%;
        height: unset;
        order: 1;
    }
    .mySwiper2 .swiper-slide {
        height: unset;
    }
    .mySwiper2 .swiper-button-next,
    .mySwiper2 .swiper-button-prev {
        transform: scale(0.7);
        transform-origin: center;
    }
    .mySwiper2 .swiper-button-prev {
        left: 5px;
    }
    .mySwiper2 .swiper-button-next {
        right: 5px;
    }
    .mySwiper {
        display: none;
        width: 100%; /* теперь полностью по ширине .good_slider (на mobile это обычно 100%) */
        height: 300px; /* «коридор» в 300px, чтобы 5 мини-слайдов удобно разместились */
        order: 2; /* чтобы он шёл после большого слайдера в колонке */
    }
    .mySwiper .swiper-slide {
        width: 100%;
        height: auto !important; /* Swiper задаст инлайн-высоту, основанную на контейнере (300px) */
        padding: 0; /* убираем лишние паддинги */
    }
    .mySwiper .swiper-slide img {
        width: 100%;
        height: 100%;
        display: none;
    }
    .tabs__content {
        padding: 10px;
        margin-top: 17px;
    }
    .tabs__btn[data-tab="3"] {
        display: none;
    }
    .char_line > div {
        font-size: 14px;
    }
    .stb_head {
        font-size: 14px;
    }
    .st_list_num > li {
        font-size: 14px;
    }
    .s_gallery_block {
        grid-gap: 5px;
    }
    .price {
        gap: 5px;
    }
    .p_line {
        grid-gap: 5px;
    }
    .p_line > div {
        font-size: 14px;
        padding: 10px;
        border-radius: 7px;
    }
    .price_info {
        font-size: 14px;
        padding-right: 0;
    }
    .sib_excl {
        width: 30px;
        height: 30px;
        background-size: 4px;
    }
    .sib_text {
        font-size: 14px;
        padding: 7px 10px;
        border-radius: 7px;
    }
    .ht_popup {
        top: 90px;
    }
    .m_content {
        width: calc(100% - 40px);
        padding: 10px 7px;
        border-radius: 6px;
    }
    .m_content h2 {
        padding-right: 35px;
    }
    .m_content .form_block {
        margin-top: 5px;
    }
    .modal h3 {
        display: none;
    }
    .m_call {
        position: static;
        margin-top: 5px;
    }
    .m_call > span {
        display: block;
    }
    .m_call > a {
        font-size: 13px;
    }
    .m_call h3 {
        display: block;
    }
    .s_info_blue {
        display: none;
    }
    .sib_mob {
        display: block;
    }
    .sib_mob .s_info_blue {
        display: flex;
    }
    .crumbs_wrap {
        flex-direction: column;
        gap: 30px;
        align-items: start;
    }
    .sort {
        gap: 10px;
    }
    .sort h4 {
        font-size: 16px;
    }
    .sort_btn_1 {
        font-size: 14px;
        width: 87px;
        height: 40px;
    }
    .sort_btn_2 {
        font-size: 14px;
        width: 105px;
        height: 40px;
    }
} /*768*/
@media only screen and (max-width: 600px) {
    h3 {
        font-size: 16px;
    }
    .hcp_items {
        grid-template-columns: repeat(1, 1fr);
    }
    .hcp_item img {
        max-width: 240px;
    }
    .shops_bot {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    .sb_item > span {
        font-size: 6.5vw;
    }
    .sb_item:nth-child(2) > img {
        width: 100px;
    }
    .sb_item:nth-child(4) > img {
        width: 110px;
    }
    .brands {
        grid-template-columns: repeat(2, 1fr);
    }
    .brand {
        gap: 10px;
        padding: 30px 15px 20px;
    }
    .b_name {
        font-size: 18px;
    }
    .good_card {
        padding-bottom: 10px;
        height: 380px;
    }
    .gc_fav {
        width: 40px;
        height: 40px;
        background-size: 24px !important;
    }
    .gc_img {
        height: 230px;
    }
    .gc_name {
        font-size: 16px;
    }
    .gc_price {
        font-size: 20px;
    }
    .gc_price > del {
        font-size: 16px;
    }
    .fi_head {
        font-size: 16px;
    }
    .fi_popup > p {
        font-size: 12px;
    }
    .s_gallery_block {
        grid-template-columns: repeat(2, 1fr);
    }
    .stages_2 {
        grid-template-columns: repeat(1, 1fr);
    }
} /*600*/
@media only screen and (max-width: 480px) {
    body {
        padding-top: 90px;
    }
    .logo,
    .f_logo {
        margin-right: -20px;
    }
    .burger,
    .h_tel,
    .h_search_btn_mob {
        width: 40px;
        height: 40px;
    }
    .good_cards {
        grid-template-columns: repeat(1, 1fr);
    }
    .ww_items {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    .wwi_img {
        width: 150px;
        height: 150px;
    }
    .sb_cards .fav_cards {
        grid-template-columns: repeat(1, 1fr);
    }
    .gp_block .brands {
        grid-template-columns: repeat(3, 1fr);
    }
    .g_info {
        gap: 15px;
    }
    .gi_btns {
        gap: 10px;
    }
    .gi_brand {
        padding: 10px;
    }
    .gi_buy_block {
        flex-direction: column;
    }
    .gi_price {
        font-size: 24px;
    }
    .cat_item.ladder {
        align-items: center;
        min-height: 150px;
    }
    .cat_item.ladder > img {
        width: 70px;
    }
    .ht_popup {
        top: 65px;
    }
    .h_search_block {
        top: 63px;
    }
} /*480*/
@media only screen and (max-width: 380px) {
    .ci_name {
        font-size: 20px;
    }
    .ft_name {
        font-size: 18px;
    }
    .listing > li.empty {
        width: 36px;
        height: 42px;
        border-bottom: 4px dotted #8e8e8e;
    }
    .listing > li > a {
        width: 36px;
        height: 46px;
        font-size: 16px;
        line-height: 44px;
    }
    .gp_block .brands {
        grid-template-columns: repeat(2, 1fr);
    }
    .tabs__btn {
        font-size: 13px;
    }

    .p_line > div {
        font-size: 12px;
        padding: 10px 5px;
    }
    .m_content h2 {
        font-size: 24px;
    }
} /*380*/

/*# sourceMappingURL=style.css.map */
