/* Inter */
@font-face {
    font-family: "Inter";
    src: url("/assets/fonts/Inter-VariableFont_opsz%2Cwght.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;}
@font-face {
    font-family: "Inter-Italic";
    src: url("/assets/fonts/Inter-Italic-VariableFont_opsz%2Cwght.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;}
/* Rubik */
@font-face {
    font-family: "Rubik";
    src: url("/assets/fonts/Rubik-VariableFont_wght.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;}
@font-face {
    font-family: "Rubik-Italic";
    src: url("/assets/fonts/Rubik-Italic-VariableFont_wght.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;}

/* Отключение всех отступов */
html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    box-sizing: border-box;
}
:root {
    --font-text: 'Inter', sans-serif;
    --font-title: 'Rubik', sans-serif;

    --white-color: #FFFFFF;
    --black-color: #2d2d2d;
    --placeholder-color: #BEB8AE;
    --body-bg: #f6f5f4;
    --main-color: #8C6A4E;
    --main-light: #d8d2c8;
    --dark-hover: #4A4A4A;
    --green-color: #6e7f5f;
    --green-hover: #b0b8aa;

    --collection-bg: #F2EFEA;
    --collectiob-bg-hover: #F0E9DD;
    --product-sku-color: #a8a298;

    --red-color: #a7313e;
}
body {
    background: var(--body-bg);
    font-family: var(--font-text);
}
/* блокировка скролла страницы */
body.lock {
    overflow: hidden;
    height: 100vh;
    padding-right: var(--scrollbar-width);
}

a, a:link, a:visited, a:active, a:focus {
    color: var(--black-color);
    text-decoration: none;
}

.wrapper {
    max-width: 1320px;
    margin: 0 auto;
}

.header {
    background: var(--white-color);
    position: sticky;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 90;
}
.top-margin {
    margin-top: 40px;
}

.header .header_flex {}
.header .header_up {
    padding: 8px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.header .header_up .nav-menu {
    display: flex;
    align-items: center;
    gap: 14px;
}
.header .header_up .nav-menu .item,
.header .contact-items .item {
    border-bottom: 1px var(--white-color) solid;
    transition: 0.3s;
}
.header .header_up .nav-menu .item:hover,
.header .contact-items .item:hover {
    border-bottom: 1px var(--black-color) solid;
}
.header .header_up .nav-menu .item a,
.header .contact-items .item a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
    text-align: center;
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 14px;
    color: var(--black-color);
    text-decoration: none;
}
.header .contact-items {
    display: flex;
    align-items: center;
    gap: 14px;
}
.header .contact-items .item {}
.header .contact-items .item a svg {
    margin-right: 6px;
}

.header .header_down {
    padding: 10px 0px 20px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}
.header .header_down .left {
    display: flex;
    align-items: center;
    gap: 26px;
    justify-content: flex-start;
}
.header .header_down .logotype {}
.header .header_down .catalog-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 16px;
    border-radius: 100px;
    background: var(--main-color);
    width: fit-content;
    gap: 8px;
    transition: 0.3s;
}
.header .header_down .catalog-btn:hover {
    background: var(--main-light);
    cursor: pointer;
}
.header .header_down .catalog-btn:hover svg path {
    stroke: var(--dark-hover);
}
.header .header_down .catalog-btn:hover span {
    color: var(--dark-hover);
}
.header .header_down .catalog-btn svg path {
    stroke: var(--white-color);
    transition: 0.3s;
}
.header .header_down .catalog-btn span {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 16px;
    color: var(--white-color);
    transition: 0.3s;
}
.header .header_down .right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.header .header_down .searh-block {
    display: flex;
    align-items: center;
}
.header .header_down .searh-block input {
    font-family: var(--font-text);
    font-weight: 500;
    font-size: 16px;
    color: var(--black-color);
    border: 2px solid var(--main-light);
    border-radius: 100px;
    padding: 15px 0px 15px 20px;
    height: 50px;
    box-sizing: border-box;
    width: 600px;
    outline: none;
}
.header .header_down .searh-block input::placeholder {
    color: var(--placeholder-color);
}
.header .header_down .searh-block .search-icon {
    margin-left: -50px;
}
.searh-block {
    position: relative;
}
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #e2e2e2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 999;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 4px;
    margin-top: 5px;
}
.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none;
    color: #2d2d2d;
    transition: background 0.2s ease;
}
.search-result-item:hover {
    background: #f9f9f9;
}
.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 4px;
}
.search-result-info {
    flex-grow: 1;
}
.search-result-title {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 4px;
}
.search-result-meta {
    font-size: 12px;
    color: #777;
}
.search-result-price {
    font-weight: 600;
    color: #2d2d2d;
    font-size: 14px;
    white-space: nowrap;
    margin-left: 15px;
}
.search-results-no-found {
    padding: 15px;
    text-align: center;
    color: #777;
    font-size: 14px;
}



.header .header_down .icon-head {
    border-radius: 120px;
    width: 50px;
    height: 50px;
    background: var(--main-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.header .header_down .icon-head svg path {
    stroke: var(--black-color);
    transition: 0.3s;
}
.header .header_down .icon-head:hover {
    background: var(--dark-hover);
    cursor: pointer;
}
.header .header_down .icon-head:hover svg path {
    stroke: var(--white-color);
}
.header .header_down .icon-head.cart {
    position: relative;
}
.header .header_down .icon-head.cart .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    border-radius: 90px;
    background: #a7313e;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header .header_down .icon-head.cart .cart-count span {
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 13px;
    text-align: center;
    color: #fff;
}




/*  */
.main-section {
    padding: 30px 30px;
    border-radius: 30px;
}
.main-section .main-content {
    background: var(--white-color);
    padding: 20px;
    width: fit-content;
    border-radius: 20px;
}
.main-section .main-content h1 {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 24px;
    color: var(--black-color);
    margin-bottom: 10px;
    max-width: 410px;
}
.main-section .main-content p {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: var(--black-color);
    margin-bottom: 20px;
    max-width: 230px;
}
.main-section .main-content .btns {}

.btns {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 100px;
    transition: 0.3s;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    outline: none;
    width: fit-content;
    border: none;
}
.btn-default {
    background: var(--main-color);
    color: var(--white-color) !important;
}
.btn-default:hover {
    color: var(--dark-hover) !important;
    background: var(--main-light);
    cursor: pointer;
}
.btn-green {
    background: var(--green-color);
    color: var(--white-color) !important;
}
.btn-green:hover {
    background: var(--green-hover);
    color: var(--dark-hover) !important;
    cursor: pointer;
}
.btn-white {
    background: var(--white-color);
    color: var(--black-color) !important;
}
.btn-white:hover {
    color: var(--white-color) !important;
    background: var(--black-color);
    cursor: pointer;
}
.btn-light {
    background: var(--main-light);
    color: var(--black-color) !important;
    font-weight: 400;
}
.btn-light:hover {
    background: var(--main-color);
    color: var(--white-color) !important;
    cursor: pointer;
}
.btn-light svg path {
    transition: 0.3s;
}
.btn-light:hover svg path {
    stroke: var(--white-color);
}
.btn-light.active {
    background: var(--main-color);
    color: var(--white-color) !important;
}
.btn-light.active svg path {
    stroke: var(--white-color);
}

.preim-block {
    margin-top: 20px;
    margin-bottom: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
}
.preim-block .big-item, 
.preim-block .item {
    min-height: 220px;
    max-height: 220px;
    background: var(--white-color);
    border-radius: 20px;
    padding: 20px 20px 30px;
    position: relative;
    overflow: hidden;
}
.preim-block .big-item img, 
.preim-block .item img {
    position: absolute;
    bottom: 0px;
    right: 0px;
}
.preim-block .item {
    width: calc(100% / 6 - 20px);
}
.preim-block .big-item {
    width: calc(100% / 3 - 20px);
}
.preim-block .item img {
    width: 113px;
    height: 113px;
}
.preim-block .big-item img {
    width: 160px;
    height: 220px;
}
.preim-block .item h2 {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 18px;
    color: var(--black-color);
    width: 150px;
}
.preim-block .big-item h2 {
    width: 210px;
}


/*  */
.section,
.section-cart {
    margin-bottom: 120px;
}
.section h3 {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 30px;
    color: var(--black-color);
    margin-bottom: 10px;
}
.section h4 {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 24px;
    color: var(--black-color);
    margin-bottom: 24px;
}
.section p {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: var(--black-color);
    margin-bottom: 30px;
}
.section ul {}
.section li {}


/*  */
.section-what-you-want h3,
.section-what-you-want p {
    max-width: 410px;
}
.what-you-want-block {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}
.what-you-want-block .item {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    /* background: var(--white-color); */
    padding: 30px;
    min-height: 280px;
    transition: 0.5s;
}
.what-you-want-block .item img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: 0.5s;
}
.what-you-want-block .item:hover img {
    transform: scale(1.1);
}
.what-you-want-block .item-big {
    width: calc(60% - 10px);
}
.what-you-want-block .item-mini {
    width: calc(40% - 10px);
}
.what-you-want-block .item .content {
    height: 100%;
    position: relative;
}
.what-you-want-block .item .content .btn {
    position: absolute;
    bottom: 0px;
    left: 0px;
}
.what-you-want-block .item .content h4 {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 20px;
    color: var(--black-color);
    margin-bottom: 10px;
    max-width: 404px;
}
.what-you-want-block .item .content p {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: var(--black-color);
    max-width: 400px;
}

/*  */
.section-popular-collection {}
.section-popular-collection h4 {
    max-width: 427px;
}
.section-popular-collection h3 {
    max-width: 427px;
}
.section-popular-collection p {
    max-width: 427px;
}
.collection-block {
    display: flex;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}
.collection-block .item {
    width: calc(100% / 4 - 15px);
    background: var(--collection-bg);
    min-height: 480px;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}
.collection-block .item .image {
    display: flex;
}
.collection-block .item .image img {
    width: 100%;
    min-height: 315px;
    object-fit: cover;
}
.collection-block .item .content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: calc(100% - 315px);
    padding: 10px 10px 20px 10px;
    text-decoration: none;
}
.collection-block .item .content .title {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 20px;
    color: var(--black-color);
    margin-bottom: 10px;
    transition: 0.3s;
}
.collection-block .item .content .text {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: var(--black-color);
    transition: 0.3s;
}
.collection-block .item:hover {
    background: var(--collectiob-bg-hover);
}
.section-popular-collection .btn-more .btn {
    width: fit-content;
    margin: 0 auto;
}


.section-cooperation {
    display: flex;
    gap: 20px;
}
.section-cooperation .content {
    background: var(--main-color);
    border-radius: 30px;
    padding: 60px;
    position: relative;
}
.section-cooperation .content::after {
    content: "";
    width: 60px;
    height: 30px;
    background: #F6F5F4;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="30" viewBox="0 0 60 30"><path d="M30 30L30 -1.90735e-06C30.4572 16.3754 43.6246 29.5428 60 30L30 30Z" fill="black"/><path d="M30 30L30 -1.90735e-06C29.5428 16.3754 16.3754 29.5428 -1.90735e-06 30L30 30Z" fill="black"/></svg>');
    mask-size: cover;
    position: absolute;
    z-index: 2;
    bottom: 0px;
    right: 100px;
}
.section-cooperation .content h3 {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 30px;
    color: var(--white-color);
    margin-bottom: 24px;
    max-width: 427px;
}
.section-cooperation .content ul {
    margin-bottom: 50px;
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: var(--white-color);
    padding-left: 20px;
}
.section-cooperation .content ul li {
    margin-bottom: 12px;
}
.section-cooperation .content .btn {
    width: fit-content;
}
.section-cooperation .image {
    max-width: 538px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
.section-cooperation .image::after {
    content: "";
    width: 60px;
    height: 30px;
    background: #F6F5F4;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="30" viewBox="0 0 60 30"><path d="M30 30L30 -1.90735e-06C30.4572 16.3754 43.6246 29.5428 60 30L30 30Z" fill="black"/><path d="M30 30L30 -1.90735e-06C29.5428 16.3754 16.3754 29.5428 -1.90735e-06 30L30 30Z" fill="black"/></svg>');
    mask-size: cover;
    position: absolute;
    z-index: 2;
    top: 0px;
    right: 220px;
    transform: rotate(
180deg);
}
.section-cooperation .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-main-form {
    padding: 50px;
    border-radius: 30px;
    display: flex;
    align-items: flex-start;
    gap: 60px;
    justify-content: space-between;
    position: relative;
}
.section-main-form::after {
    content: "";
    width: 60px;
    height: 30px;
    background: #F6F5F4;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="30" viewBox="0 0 60 30"><path d="M30 30L30 -1.90735e-06C30.4572 16.3754 43.6246 29.5428 60 30L30 30Z" fill="black"/><path d="M30 30L30 -1.90735e-06C29.5428 16.3754 16.3754 29.5428 -1.90735e-06 30L30 30Z" fill="black"/></svg>');
    mask-size: cover;
    position: absolute;
    z-index: 2;
    top: 110px;
    left: -15px;
    transform: rotate(90deg);
}
.section-main-form .content {}
.section-main-form .content h3 {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 30px;
    color: var(--white-color);
    margin-bottom: 24px;
    max-width: 444px;
}
.section-main-form .content p {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: var(--white-color);
    max-width: 377px;
    margin-bottom: 10px;
}
.section-main-form .contact-form-box {
    max-width: 712px;
}
.section-main-form .contact-form-box form {
    border-radius: 20px;
    background: var(--white-color);
    padding: 40px 40px 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group > p {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 0px;
}
.form-group br {
    display: none;
}
.form-group.full p {
    width: 100%;
}
.form-group p span, .form-group p span input {
    width: 100%;
}
.form-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 0px;
}
.form-row .form-group {
    width: calc(100% / 2 - 6px);
}
.form-group label {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: var(--black-color);
}
.form-group label span {
    font-weight: 700;
    color: var(--red-color);
}
.form-group input, .form-group textarea {
    border: 1.50px solid var(--main-light);
    border-radius: 100px;
    padding: 12px 20px;
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: var(--black-color);
    outline: none;
    resize: none;
    box-sizing: border-box;
}
.form-group textarea {
    min-height: 70px;
    border-radius: 20px;
    width: 100%;
    max-height: 90px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: var(--placeholder-color);
}
.form-file {
    margin: 4px 0 0px;
}
.form-file input[type="file"] {
  display: none;
}
.file-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #4a4a4a;
  font-size: 15px;
}
.file-label small {
  color: var(--placeholder-color);
  font-size: 14px;
}
.file-icon {
    width: 19px;
    height: 19px;
}
.file-icon br {
    display: none;
}
.form-file p {
    margin: 0px;
}
.form-agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.form-agreement p {
    margin: 0px;
}
.wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 0em;
}
.form-agreement input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: #9d6f49;
  flex-shrink: 0;
}
.form-agreement label {
  font-size: 15px;
  line-height: 1.25;
  color: #4a4a4a;
}
.form-agreement a {
  color: var(--main-color);
  text-decoration: underline;
}
.contact-form-box p {
    margin: 0px;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0px;
    padding: 4px 10px;
    border: 2px solid #00a0d2;
    border-radius: 8px;
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: #2d2d2d;
}

/*  */
.footer-up {
    padding: 50px 0px 40px 0px;
    background: #2D2D2D;
}
.footer-down {
    background: #232323;
    padding: 20px 0px;
}
.footer-up .content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
}
.footer-up .content .logo-text {
    max-width: 310px;
}
.footer-up .content .logo-text img {
    width: 230px;
    height: auto;
    margin-bottom: 10px;
}
.footer-up .content .logo-text .text {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: #757575;
}
.footer-up .content .nav-footer {
    max-width: 310px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.footer-up .content .nav-footer .item {
    min-width: 170px;
}
.footer-up .content .nav-footer .item h5 {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 18px;
    color: var(--white-color);
    margin-bottom: 12px;
}
.footer-up .content .nav-footer .item ul {
    list-style-type: none;
}
.footer-up .content .nav-footer .item li {
    margin-bottom: 6px;
}
.footer-up .content .nav-footer .item a {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: #d7d7d7;
    text-decoration: none;
}
.footer-up .content .contact {
    max-width: 310px;
}
.footer-up .contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-up .contact .item {
    display: flex;
    align-items: center;
    justify-content: end;
}
.footer-up .contact .item a {
    text-decoration: none;
    display: flex;
    gap: 6px;
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 18px;
    color: var(--white-color);
    padding: 4px 6px;
}

.important-link {
    display: flex;
    align-items: center;
    gap: 10px;
}
.important-link a, .important-link span {
    text-decoration: none;
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: #757575;
}

.footer-down .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.footer-down .content p {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: #757575;
}

.my-breadcrumbs {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 14px;
    color: var(--black-color);
    margin-bottom: 30px;
}
.my-breadcrumbs > span {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}
.my-breadcrumbs span a {
    color: var(--black-color);
    text-decoration: none;
}

.section-without-style,
.section-without-style-main {
    margin-bottom: 150px;
}
.section-without-style h1,
.section-without-style-main h1,
.section-without-style-collection .brand-name-collection,
.section-cart h1 {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 30px;
    color: var(--black-color);
    margin-bottom: 4px;
}
.section-cart h1 {
    margin-bottom: 24px;
}
.section-without-style-collection h1 {
    font-weight: 700;
}


.parent-categories {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 30px;
}
.parent-categories .parent-category-item {
    width: calc(100% / 2 - 10px);
    background: var(--white-color);
    border-radius: 10px;
}
.parent-categories .parent-category-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 40px;
    box-sizing: border-box;
    text-decoration: none;
}
.parent-categories .parent-category-item h3 {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 20px;
    color: var(--black-color);
    margin: 0px;
}

.page-white-block {
    padding-top: 40px;
    padding-bottom: 40px;
    background: var(--white-color);
    border-radius: 0 0 30px 30px;
    margin-bottom: 20px;
}


.section-without-style {}
.section-without-style .content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.page-white-block .section,
.page-white-block .section-without-style  {
    margin: 0px;
}
.section-without-style .title {
    max-width: 427px;
    width: 100%;
}
.section-without-style .title h1 {}
.section-without-style .description {
    max-width: 648px;
    width: 100%;
}
.section-without-style .description p {
    margin-bottom: 8px;
}
.section-without-style .image {
    max-width: 203px;
    width: 100%;
    height: 203px;
}
.section-without-style .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--placeholder-color);
}



.section-main-page-cat {
    margin-top: 30px;
}
.section-main-page-cat .brands-list {
    display: flex;
    gap: 20px;
    justify-content: left;
    flex-wrap: wrap;
    align-items: stretch;
}
.section-main-page-cat .brand-item {
    width: calc(100% / 6 - 17px);
}
.section-main-page-cat .brand-item a {
    background: var(--white-color);
    padding: 10px 10px 20px 10px;
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
    color: var(--black-color);
    text-decoration: none;
    transition: 0.3s;
}
.section-main-page-cat .brand-item a:hover {
    background: var(--collectiob-bg-hover);
}
.section-main-page-cat .brand-item img {
    width: 182.98px;
    height: 182.98px;
    object-fit: cover;
    border-radius: 10px;
}
.section-main-page-cat  .brand-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.section-main-page-cat .brand-item .brand-name {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 20px;
    color: var(--black-color);
    text-transform: uppercase;
}
.section-main-page-cat .brand-item .brand-meta {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 14px;
    color: var(--font-text);
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 30px;
}
.pagination .page-numbers {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: var(--black-color);
    background: var(--white-color);
    border-radius: 100%;
    flex-wrap: wrap;
    text-decoration: none;
}
.pagination .current {
    background: var(--main-color);
    color: var(--white-color);
}
.pagination .prev,
.pagination .next {
    border: 1px solid #d8d2c8;
}


.brand-page--ceramic,
.collection-product-section {
    margin-bottom: 100px;
}
.brand-page--ceramic .collections-grid {
    display: flex;
    gap: 20px;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.brand-page--ceramic .collection-card {
    width: calc(100% / 4 - 15px);
}
.brand-page--ceramic .collection-card__image {
    width: 100%;
    height: fit-content;
    display: flex;
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
}
.brand-page--ceramic .collection-card__image img {
    width: 100%;
}
.brand-page--ceramic .collection-card__content {
    border-radius: 0 0 10px 10px;
    padding: 10px 10px 20px;
    background: var(--collection-bg);
    height: calc(100% - 315px);
}
.brand-page--ceramic .collection-card__link {
    text-decoration: none;
}
.brand-page--ceramic .collection-card__content .collection-card__title {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 20px;
    color: var(--black-color);
    margin-bottom: 10px;
}
.brand-page--ceramic .collection-card__content .collection-card__description {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: var(--black-color);
}





/* СТАРТ Карточка товара */
.product-block {
    display: flex;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
}

.product-card {
    width: calc(100% / 4 - 15px);
    background: var(--white-color);
    box-sizing: border-box;
    padding: 20px 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}
.product-card__image {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.product-card__image img {
    border-radius: 8px;
}
.product-card__image.is-square img {
    width: 100%;
    height: auto;
}
.product-card__image.is-vertical img {
    max-height: 500px;
    min-height: 500px;
    height: 100%;
    width: auto;
}
.product-card__image.is-horizontal img {
    max-width: 100%;
    height: auto;
}

.product-card-title {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.product-card-title .product_title {}
.product-card-title .product_title a {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 20px;
    color: var(--black-color);
}
.product-card-title .product_sku {}
.product-card-title .product_sku a {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: var(--product-sku-color);
}
.product-card-down-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.product-card-price {
    display: flex;
    align-items: end;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 12px;
}
.product-card-price .text {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: var(--black-color);
}
.product-card-price .price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
}
.product-card-price .price .regular-mini {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 14px;
    text-decoration: line-through;
    color: var(--product-sku-color);
}
.product-card-price .price .regular, .product-card-price .price .sale {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 22px;
    color: var(--black-color);
}
.product-card-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}
.product-card-btn .btn-favorite {
    width: 50px;
    height: 50px;
    padding: 12px;
}
.product-card-btn .btn-favorite svg {
    width: 24px;
    height: 24px;
}
.product-card-btn .custom-add-to-cart {
    width: calc(100% - 60px);
    height: 50px;
}
/* КОНЕЦ Карточка товара */

/* СТАРТ Страница товара */
.product-content-title {
    margin-bottom: 24px;
}
.product-content-title h1 {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 30px;
    color: var(--black-color);
    margin-bottom: 4px;
}
.product-content-title h2 {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 18px;
    color: var(--product-sku-color);
}
.product-content-block {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}
.product-content-block .price-block {
    max-width: 315px;
    width: 100%;
}
.price-block .price-white {
    box-sizing: border-box;
    padding: 20px 20px 30px 20px;
    border-radius: 20px;
    background: var(--white-color);
}
.price-block .price-top {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 20px;
    justify-content: space-between;
    align-items: end;
}
.price-block .price-note {
    width: 100%;
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 12px;
    color: var(--placeholder-color);
}
.price-block .price-label {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: var(--black-color);
}
.price-block .price-product {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.price-block .price-old {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 14px;
    text-decoration: line-through;
    color: var(--product-sku-color);
}
.price-block .price-value {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 22px;
    color: var(--black-color);
}
.price-block .price-value span {
    font-weight: 700;
    color: var(--red-color);
}
.price-input-row {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    margin-top: 30px;
}
.price-input-row label {}
.price-input-row input {
    border: 1.50px solid var(--main-light);
    border-radius: 50px;
    padding: 12px 20px;
    width: 150px;
    height: 43px;
    background: #fff;
    box-sizing: border-box;
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
}
.price-input-row .info-btn {
    border: 1.50px solid var(--main-light);
    border-radius: 50px;
    padding: 9px 10px;
    width: 43px;
    height: 43px;
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;

    display: none;
}
.price-input-row .info-btn svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    max-width: 24px;
    max-height: 24px;
}
.total-price {
    margin-top: 10px;
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
    align-items: baseline;
    justify-content: space-between;
}
.total-price .text {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: var(--black-color);
}
.total-price .price {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 22px;
    color: var(--black-color);
}
.product-btn .btn {
    border-radius: 100px;
    padding: 16px 20px;
    height: 50px;
}
.product-btn .btn-product-buy {
    width: 100%;
}

.product-content-block .attr-block {
    max-width: 426px;
    width: 100%;
}
.product-attributes {
    display: flex;
    gap: 6px;
    flex-direction: column;
}
.product-attributes .attr {
    display: flex;
    align-items: baseline;
    gap: 20px;

    font-family: var(--font-title);
    font-weight: 400;
    font-size: 14px;
    color: var(--black-color);
}
.product-attributes .label {
    max-width: 200px;
    width: 100%;
}
.product-attributes .value {
    width: 100%;
}


.image-block {
    width: 100%;
}
.gallery-thumbs {
    width: 91px ;
    height: 596px;
}
.gallery-thumbs .swiper-slide {
    width: 91px;
    height: 91px !important;
}
.gallery-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.product-gallery {
    display: flex;
    gap: 20px;
}
/* main */
.gallery-main {
    width: 427px;
    height: 596px;
    background: var(--white-color);
    border-radius: 20px;
}

.gallery-main img {
    height: 100%;
    object-fit: contain; 
}
.gallery-main {
    background: var(--white-color);
}



.section-tabs-block {
    margin-bottom: 100px;
}
.tabs {
    display: flex;
    gap: 40px;
}

.tabs-nav {
    display: flex;
    flex-direction: column;
    min-width: 426px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 0;
    text-align: left;
    cursor: pointer;

    font-family: var(--font-text);
    font-weight: 400;
    font-size: 18px;
    color: var(--black-color);
    background: transparent;
    border-bottom: 1px solid var(--main-light);
    padding: 20px 30px;
}

.tab-btn.active {
    border-bottom: 1px solid var(--main-color);
}

.tabs-content {
    flex: 1;
}

.tab-content {
    display: none;
    background: #ffffff;
    padding: 40px 40px 50px 40px;
    border-radius: 30px;
}
.tab-content.active {
    display: block;
}
.tab-content h3 {
    margin-bottom: 24px;
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 30px;
    color: var(--black-color);
}
.tab-content .text {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 18px;
    color: var(--black-color);
}

/* КОНЕЦ Страница товара */

.mobil-panel-block {
    display: none;
}

/* СТАРТ Страница корзины */
.cart-product-page {
    display: flex;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.cart-product-block {
    width: calc(100% - 430px - 20px);
}
.cart-product-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cart-product-page .cart-item {
    width: 100%;
    border-radius: 20px;
    background: var(--white-color);
    padding: 20px;
    position: relative;
    
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.cart-product-page .cart-image {
    border-radius: 6px;
    width: 100px;
    height: 160px;
    min-width: 100px;
    min-height: 160px;
    max-width: 100px;
    max-height: 160px;
    overflow: hidden;
}
.cart-product-page .cart-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.cart-main-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: calc(100% - 40px - 20px);
}
.cart-main-info .title {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 18px;
    color: var(--black-color);
}
.cart-main-info .sku {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: var(--product-sku-color);
}
.cart-second-info {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}
.cart-second-info .brand,
.cart-second-info .collection,
.cart-second-info .single-price  {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: var(--black-color);
}
.cart-second-info .single-price {
    margin-top: 24px;
}
.cart-second-info .brand span, 
.cart-second-info .collection span,
.cart-second-info .single-price span {
    width: 120px;
    display: inline-block;
}
.cart-second-info .single-price span.woocommerce-Price-amount.amount {
    width: auto;
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 22px;
    color: var(--black-color);
}

.cart-second-two-block {}
.cart-second-two-block .qty {
    margin-bottom: 10px;
}
.cart-second-two-block .qty span {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: var(--black-color);
    margin-bottom: 8px;
    display: block;
}
.cart-second-two-block .qty-block {
    display: flex;
    gap: 4px;
    flex-direction: row;
    align-items: center;
}

.cart-second-two-block .qty-block .qty-minus, 
.cart-second-two-block .qty-block .qty-plus {
    border: 1.50px solid #d8d2c8;
    border-radius: 50px;
    padding: 9px 10px;
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-color);
    cursor: pointer;
}

.cart-second-two-block .qty-block .qty-minus {}
.cart-second-two-block .qty-block .qty-plus {}

.cart-second-two-block .qty-block .qty-input {
    border: 1.50px solid #d8d2c8;
    border-radius: 50px;
    padding: 12px 20px;
    height: 43px;
    width: 150px;
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: var(--black-color);
    box-sizing: border-box;
    background: var(--white-color);
}
.cart-second-two-block .subtotal span.woocommerce-Price-amount.amount{
    width: auto;
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 22px;
    color: var(--black-color);
}
.cart-checkout-form-block #cart-total span.woocommerce-Price-amount.amount {
    width: auto;
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 22px;
    color: var(--black-color);
}
/* Chrome, Safari, Edge, Opera */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.qty-input {
    -moz-appearance: textfield;
    appearance: textfield;
}

.cart-product-page .remove-item {
    background: #ffdade;
    border-radius: 80px;
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;

    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}



.cart-checkout-form-block {
    background: var(--white-color);
    border-radius: 20px;
    padding: 20px 20px 30px;
    max-width: 430px;
    width: 100%;
    box-sizing: border-box;
}

.cart-checkout-form-block form {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-direction: column;
}
.cart-checkout-form-block form .input-shell {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cart-checkout-form-block form .input-shell label {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: var(--black-color);
}
.cart-checkout-form-block form .input-shell label span {
    font-weight: 700;
    color: var(--red-color);
}
.cart-checkout-form-block form .input-shell label a {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--main-color);
}
.cart-checkout-form-block form .input-shell input,
.cart-checkout-form-block form .input-shell textarea {
    border: 1.50px solid #d8d2c8;
    border-radius: 100px;
    padding: 12px 20px;
    box-sizing: border-box;
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    color: var(--black-color);
}
.cart-checkout-form-block form .input-shell input::placeholder,
.cart-checkout-form-block form .input-shell textarea::placeholder {
    color: var(--placeholder-color);
} 
.cart-checkout-form-block form .input-shell textarea {
    resize: none;
    height: 150px;
    border-radius: 30px;
}
.cart-checkout-form-block form .input-shell input[type="checkbox"] {}
.cart-checkout-form-block form .btn-default {
    width: 100%;
}

.empty-cart-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

/* КОНЕЦ Страница корзины */

/* СТАРТ Модалка, сколько товаров вам надо */
.hystmodal__window {
    margin: 50px 0;
    box-sizing: border-box;
    flex-shrink: 0;
    flex-grow: 0;
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    width: 600px;
    max-width: 100%;
    overflow: visible;
    transition: transform .2s ease 0s,opacity .2s ease 0s;
    transform: scale(.9);
    opacity: 0;
}
.cart-modal-content {
    display: flex;
    gap: 0px 20px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.cart-modal-content .cart-modal-title {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 18px;
    color: var(--black-color);
    margin-bottom: 20px;
    width: 100%;
}
.cart-modal-content .input-cart {
    border: 1.50px solid #d8d2c8;
    border-radius: 50px;
    padding: 12px 20px;
    width: calc(100% - 140px);
    height: 43px;
    box-sizing: border-box;
}
.hystmodal__close:focus {
    outline: none !important;
}

.hystmodal__close {
    top: 20px !important;
    right: 20px !important;
    width: 20px !important;
    height: 20px !important;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' stroke='%23000' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M22 2L2 22'/%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M2 2l20 20'/%3E%3C/svg%3E") !important;
}
/* КОНЕЦ Модалка, сколько товаров вам надо*/

/* СТАРТ Старница контактов */
.section-page-contact {
    display: flex;
    gap: 20px;
}

.main-info-contact {
    
}
.main-info-contact .block-icon-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}
.block-icon-info .item {
    display: flex;
    flex-direction: row;
    gap: 50px;
}
.block-icon-info .item .first-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
.block-icon-info .item .first-block .img {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    border-radius: 100px;
}
.block-icon-info .item .first-block h3 {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 20px;
    color: var(--black-color);
    min-width: 180px;
    margin: 0px;
}
.block-icon-info .item .two-block {
    display: flex;
    align-items: center;
}
.block-icon-info .item .two-block p {
    margin: 0px;
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 18px;
    color: var(--black-color);
}
.block-icon-info .item .two-block a {}
.block-icon-info .item .two-block-icon {
    display: flex;
    gap: 10px;
    align-items: center;
}
.block-icon-info .item {}
.block-icon-info .item {}
.main-info-contact .table-info {}
.page-contact h1 {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 30px;
    color: var(--black-color);
    margin-bottom: 24px;
}
.city-info-block {
    max-width: 650px;
    width: 100%;
}

.table-info {}
.table-info h2 {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 24px;
    color: var(--black-color);
    margin-bottom: 24px;
}

.legal-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #c8b39d;
    border-radius: 12px;
    overflow: hidden;
}

.legal-table td {
    padding: 18px 16px;
    border-right: 1px solid #c8b39d;
    border-bottom: 1px solid #c8b39d;
    vertical-align: top;
    font-size: 18px;
    color: #3f3f3f;
}

.legal-table tr:last-child td {
    border-bottom: none;
}

.legal-table td:last-child {
    border-right: none;
}

.legal-table td:first-child {
    width: 38%;
    font-weight: 500;
}

.city-info-block .city-block {
    padding: 30px;
    border-radius: 30px;
    background: var(--white-color);
}
.city-info-block .city-block .info {
    display: flex;
    gap: 14px;
    flex-direction: column;
}
.city-info-block .city-block .info .item {}
.city-info-block .city-block .info .item h4 {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 12px;
    color: var(--placeholder-color);
    margin-bottom: 2px;
}
.city-info-block .city-block .info .item p {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 20px;
    color: var(--black-color);
    margin: 0px;
}

/* КОНЕЦ Старница контактов */






/* ADAPTIVE */
/* VER 1680px */
@media screen and (max-width: 1680px) {}

/* VER 1600px */
@media screen and (max-width: 1600px) {}

/* VER 1536px */
@media screen and (max-width: 1536px) {}

/* VER 1440px */
@media screen and (max-width: 1440px) {
}

/* VER 1408px */
@media screen and (max-width: 1408px) {}

/* VER 1400px */
@media screen and (max-width: 1400px) {}

/* VER 1368px */
@media screen and (max-width: 1368px) {
    .wrapper {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0px 20px;
    }
    .header .header_down .searh-block input {
        width: 480px;
    }
    .section-main-form .contact-form-box {
        max-width: 600px;
    }
    .preim-block {
        gap: 10px;
    }
    .preim-block .item {
        width: calc(100% / 6 - 10px);
    }
    .preim-block .big-item {
        width: calc(100% / 3 - 10px);
    }
    .section-main-page-cat .brand-item img {
        width: 100%;
        height: 170px;
    }
    .section-without-style .title {
        max-width: 350px;
    }
    .section-without-style .description {
        max-width: 550px;
    }
    .brand-page--ceramic .collection-card__content {
        height: calc(100% - 285px);
    }
}

/* VER 1280px */
@media screen and (max-width: 1280px) {
    .section-main-page-cat .brand-item {
        width: calc(100% / 5 - 16px);
    }
    .section-main-page-cat .brands-list {
        justify-content: left;
    }
    .brand-page--ceramic .collection-card__link {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .brand-page--ceramic .collection-card__image {
        min-height: 270px;
    }
    .brand-page--ceramic .collection-card__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .product-card__image.is-vertical img {
        max-height: 400px;
        min-height: 400px;
    }
    .product-card-price .price .regular, .product-card-price .price .sale {
        font-size: 18px;
    }
    .product-card-title .product_title a {
        font-size: 18px;
    }
    .product-card-title .product_sku a {
        font-size: 14px;
    }
    .product-card__image.is-horizontal img {
        width: 100%;
    }
    .tabs-nav {
        min-width: 330px;
    }
    .gallery-main {
        width: 390px;
        height: 560px;
    }
    .gallery-thumbs {
        width: 91px;
        height: 560px;
    }
    .tab-btn {
        padding: 16px 20px;
    }
    .tab-content h3 {
        font-size: 26px;
    }
    .tab-content {
        padding: 30px 30px 40px 30px;
    }
    .header .header_down {
        gap: 50px;
    }
    .header .header_down .searh-block input {
        width: 360px;
    }
    .brand-page--ceramic .collection-card__content {
        height: 100%;
        min-height: calc(100% - 285px);
        max-height: stretch;
    }
}

/* VER 1140px */
@media screen and (max-width: 1140px) {
    .gallery-main {
        width: 320px;
        height: 500px;
    }
    .gallery-thumbs .swiper-slide {
        width: 60px;
        height: 60px !important;
    }
    .gallery-thumbs {
        width: 60px;
        height: 500px;
    }
    .footer-up {
        padding: 40px 0px 30px 0px;
    }
    .footer-up .content .logo-text img {
        width: 190px;
        height: auto;
    }
    .footer-up .content .logo-text .text {
        font-size: 14px;
    }
    .footer-up .content .logo-text {
        max-width: 260px;
    }
    .footer-up .content .contact {
        max-width: 260px;
    }
    .footer-up .contact .item a svg {
        min-height: 23px;
        min-width: 23px;
        max-height: 23px;
        max-width: 23px;
        height: 100%;
        width: 100%;
    }
    .important-link a, .important-link span {
        font-size: 14px;
    }
    .footer-up .contact .item a {
        font-size: 16px;
    }
    .footer-up .content .nav-footer .item h5 {
        font-size: 16px;
    }
    .footer-up .content .nav-footer .item a {
        font-size: 14px;
    }
    .footer-down .content p {
        font-size: 14px;
    }
    .cart-checkout-form-block {
        max-width: 360px;
    }
    .cart-product-block {
        width: calc(100% - 360px - 20px);
    }
}

/* VER 1024px */
@media screen and (max-width: 1024px) {
    .preim-block .big-item img {
        width: 110px;
        height: 160px;
    }
    .preim-block .item img {
        width: 90px;
        height: 90px;
    }
    .preim-block .item h2 {
        width: 100%;
    }
    .preim-block .big-item h2 {
        width: 180px;
    }
    .preim-block .big-item, .preim-block .item {
        min-height: 180px;
        max-height: 180px;
    }
    .what-you-want-block .item {
        min-height: 250px;
    }
    .collection-block .item .image img {
        min-height: 220px;
    }
    .collection-block .item {
        min-height: 400px;
    }
    .section-cooperation .image {
        max-width: 300px;
    }
    .section-cooperation .image::after {
        right: 80px;
    }
    .section-main-form .contact-form-box {
        max-width: 500px;
    }
    .section-main-form .contact-form-box form {
        padding: 30px 30px 30px 30px;
    }
    .section-without-style .content {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .section-without-style .title {
        max-width: 100%;
    }
    .product-card__image.is-vertical img {
        max-height: 420px;
        min-height: 420px;
    }
    .product-card-price .text {
        font-size: 14px;
    }
    .product-card {
        width: calc(100% / 3 - 14px);
    }
    .tabs-nav {
        min-width: 250px;
    }
    .tab-content .text {
        font-size: 16px;
    }
    .tab-content h3 {
        font-size: 22px;
    }
     .gallery-main {
        width: 310px;
        height: 470px;
    }
    .product-gallery {
        display: flex;
        gap: 10px;
        flex-direction: column-reverse;
    }
    .swiper-vertical>.swiper-wrapper {
        flex-direction: row !important;
    }
    .gallery-thumbs .swiper-slide {
        margin-bottom: 0px !important;
        margin-right: 6px;
    }
    .gallery-thumbs {
        width: 310px;
        height: 60px;
    }
    .total-price .text {
        font-size: 14px;
    }
    .price-input-row label {
        font-size: 14px;
    }
    .total-price .price {
        font-size: 20px;
    }
    .price-input-row input {
        padding: 8px 16px;
        width: 120px;
        font-size: 16px;
    }
    .price-input-row {
        margin-top: 20px;
    }
    .logotype {
        height: 40px;
    }
    .logotype a {
        width: 100%;
        height: 100%;
    }
    .logotype a img {
        width: auto;
        height: 100%;
    }
    .header .header_down .left {
        gap: 10px;
    }
    .header .header_down .catalog-btn {
        padding: 10px 14px;
        gap: 6px;
    }
    .header .header_down .searh-block input {
        width: 250px;
    }
    .header .header_down .searh-block input {
        padding: 10px 0px 10px 20px;
        height: 40px;
    }
    .header .header_down .icon-head {
        width: 40px;
        height: 40px;
    }
    .header .header_down .searh-block .search-icon {
        margin-left: -40px;
    }
    .header .header_up {
        padding: 6px 0px;
    }
    .header .header_down {
        padding: 6px 0px 12px 0px;
    }
    .cart-product-block {
        width: calc(100%);
    }
    .cart-checkout-form-block {
        max-width: 100%;
    }
 }

/* VER 960px */
@media screen and (max-width: 960px) {
    .section-main-page-cat .brand-item {
        width: calc(100% / 4 - 15px);
    }
    .brand-page--ceramic .collection-card {
        width: calc(100% / 3 - 14px);
    }
    .image-block {
        order: 1;
    }
    .product-content-block .price-block {
        order: 2;
    }
    .product-content-block .attr-block {
        order: 3;
    }
    .product-content-block {
        flex-wrap: wrap;
    }
    .image-block {
        width: calc(100% - 335px);
    }
    .gallery-main {
        width: 100%;
        height: 500px;
    }
    .gallery-thumbs {
        width: 100%;
        height: 60px;
    }
    .product-content-block .attr-block {
        max-width: unset;
        width: 100%;
    }
    .product-attributes .attr {
        font-size: 16px;
    }
    .product-attributes .label {
        max-width: 250px;
    }
    .tabs {
        display: flex;
        gap: 20px;
    }

}

/* VER 854px */
@media screen and (max-width: 854px) {
    .preim-block .big-item {
        width: calc(100% / 1 - 10px);
    }
    .preim-block .item {
        width: calc(100% / 4 - 10px);
    }
    .preim-block .big-item {
        width: calc(100% / 1 - 10px);
    }
    .what-you-want-block .item-big {
        width: calc(100% / 2 - 10px);
    }
    .what-you-want-block .item-mini {
        width: calc(100% / 2 - 10px);
    }
    .collection-block .item {
        width: calc(100% / 2 - 10px);
    }
    .section-cooperation .content {
        padding: 40px;
    }
    .section-cooperation .image {
        max-width: 200px;
    }
    .section-main-form {
        padding: 40px;
        gap: 20px;
        flex-direction: column;
    }
    .section-main-form .content h3 {
        max-width: 100%;
    }
    .section-main-form .content p {
        max-width: 560px;
    }
    .section-main-form .contact-form-box {
        max-width: 100%;
    }
    .header .header_up .nav-menu {
        display: none;
    }
    .header .header_down .searh-block {
        display: none;
    }
    .header .header_down .icon-head.cart {
        display: none;
    }
    .header .header_down .icon-head.user  {
        display: none;
    }
    .header .header_up {
        justify-content: end;
    }
    .footer-up .content {
        flex-wrap: wrap;
        gap: 30px 20px;
    }
    .footer-up .content .logo-text {
        max-width: 100%;
    }
    .mobil-panel-block {
        display: flex;
        position: sticky;
        bottom: 0px;
        left: 0px;
        width: 100%;
        box-sizing: border-box;
        box-shadow: 0 -1px 4px 0 rgba(0, 0, 0, 0.1);
        background: #fff;
        padding: 12px 0px;
        justify-content: center;
        gap: 20px;
    }
    .mobil-panel-block .item {
        display: flex;
        flex-direction: column;
        gap: 4px;
        text-align: center;
        align-items: center;
        font-family: var(--font-title);
        font-weight: 400;
        font-size: 14px;
        color: #2d2d2d;
    }
    
}

/* VER 800px */
@media screen and (max-width: 800px) {
    .section-main-page-cat .brand-item {
        width: calc(100% / 3 - 14px);
    }
    .cart-second-info {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        flex-direction: column;
    }
}

/* VER 768px */
@media screen and (max-width: 768px) {
    .brand-page--ceramic .collection-card {
        width: calc(100% / 2 - 10px);
    }
    .brand-page--ceramic .collection-card__content {
        height: 100%;
        min-height: calc(100% - 285px);
        max-height: stretch;
    }
    .product-card__image.is-vertical img {
        max-height: 350px;
        min-height: 350px;
        width: 100%;
    }
    .product-card-btn .custom-add-to-cart {
        padding: 6px 14px;
        font-size: 14px;
    }
    .product-card-price .text {
        font-size: 12px;
    }
    .product-card-price .price .regular, .product-card-price .price .sale {
        font-size: 16px;
    }
    .product-card-price .price .regular-mini {
        font-size: 12px;
    }
    .product-block {
        gap: 20px 10px;
    }
    .product-card {
        width: calc(100% / 3 - 7px);
        background: transparent;
        padding: 0px 0px;
    }
    .product-card .product-card-up-content .image {
        background: var(--white-color);
        padding: 10px;
        border-radius: 10px;
    }
    .product-card-title {
        margin-top: 10px;
    }
    .product-card-btn .btn-favorite {
        width: 40px;
        height: 40px;
        padding: 6px;
    }
    .product-card-btn .custom-add-to-cart {
        width: calc(100% - 50px);
        height: 40px;
    }
    .product-card-price {
        gap: 4px;
    }

}

/* VER 720px */
@media screen and (max-width: 720px) {
    .section h3 {
        font-size: 26px;
    }
    .section h4 {
        font-size: 22px;
    }
    .section-cooperation .content h3 {
        font-size: 26px;
    }
    .section-main-form .content h3 {
        font-size: 26px;
    }
    .section-main-form::after {
        top: 96px;
    }
    .my-breadcrumbs > span {
        display: flex;
        gap: 6px 10px;
        align-items: center;
        flex-wrap: wrap;
    }
    .my-breadcrumbs {
        font-size: 12px;
    }
}

/* VER 704px */
@media screen and (max-width: 704px) {
    .tabs {
        flex-direction: column;
    }
    .tabs-nav {
        flex-direction: row;
    }
    .tab-content {
        padding: 20px 20px 30px 20px;
        border-radius: 20px;
    }
    .product-content-title h1 {
        font-size: 26px;
    }
    .product-content-title h2 {
        font-size: 16px;
    }
}

/* VER 640px */
@media screen and (max-width: 640px) {
    .product-card {
        width: calc(100% / 2 - 5px);
    }
    .product-card__image.is-vertical img {
        max-height: 300px;
        min-height: 300px;
        width: auto;
    }
    .image-block {
        width: calc(100%);
    }
    .gallery-main {
        width: 100%;
        height: 480px;
    }
    .product-content-block .price-block {
        max-width: 100%;
        width: 100%;
    }
    .tabs-nav {
        overflow-y: scroll;
        /* Для Chrome, Safari, Edge */
        &::-webkit-scrollbar {
            display: none;                
        }
        
        /* Для Firefox */
        scrollbar-width: none;
        
        /* Для Internet Explorer и старых Edge */
        -ms-overflow-style: none;
    }
    .product-attributes .attr {
        font-size: 14px;
        gap: 10px;
    }
    .product-attributes .label {
        max-width: 130px;
    }
    .tab-btn {
        font-size: 14px;
        padding: 10px 16px;
    }
    .tab-content h3 {
        font-size: 20px;
    }
    .gallery-main {
        height: 400px;
    }
    .footer-up .content {
        flex-direction: column;
    }
    .footer-up .contact .item {
        justify-content: flex-start;
    }
    .important-link {
        flex-wrap: wrap;
    }
}

/* VER 560px */
@media screen and (max-width: 560px) {
    .preim-block .big-item h2 {
        width: 220px;
    }
    .preim-block .item h2 {
        font-size: 16px;
    }
    .preim-block .item {
        width: calc(100% / 2 - 5px);
    }
    .preim-block .big-item {
        width: calc(100% / 1);
    }
    .preim-block .big-item, .preim-block .item {
        min-height: 150px;
        max-height: 150px;
    }
    .preim-block .big-item img {
        width: 100px;
        height: 140px;
    }
    .what-you-want-block .item .content h4 {
        font-size: 18px;
    }
    .what-you-want-block .item {
        padding: 20px;
    }
    .what-you-want-block .item .content .btn {
        text-align: center;
    }
    .collection-block .item .content .title {
        font-size: 16px;
    }
    .collection-block .item .content .text {
        font-size: 14px;
    }
    .section-cooperation {
        flex-direction: column;
    }
    .section-cooperation .image {
        max-width: 100%;
        max-height: 200px;
    }
    .section-cooperation .image img {
        height: 200px;
    }
    .section-cooperation .content::after {
        left: 60px;
        right: unset;
    }
    .section-main-page-cat .brand-item img {
        height: 140px;
    }
    .brand-page--ceramic .collection-card__image {
        min-height: 230px;
    }
    .header .header_down .catalog-btn span {
        display: none;
    }
    .header .header_down .catalog-btn {
        padding: 10px 10px;
    }
    .header .header_down {
        padding: 0px 0px 12px 0px;
    }
    .footer-down .content {
        align-items: baseline;
        flex-direction: column;
    }
    .footer-up .content .nav-footer .item {
        min-width: auto;
    }
    .cart-product-page .remove-item {
        top: 20px;
        left: 20px;
    }
    .cart-main-info {
        width: calc(100% );
    }
}

/* VER 400px */
@media screen and (max-width: 470px) {
    .what-you-want-block .item-big {
        width: calc(100%);
    }
    .what-you-want-block .item-mini {
        width: calc(100%);
    }
    .what-you-want-block .item {
        min-height: 210px;
    }
    .collection-block .item {
        min-height: auto;
    }
    .btns {
        gap: 10px;
        flex-direction: column;
        font-size: 14px;
    }
    .main-section .btns .btn {
        width: 100%;
    }
    .main-section .main-content h1 {
        font-size: 20px;
    }
    .main-section {
        padding: 20px 20px;
        border-radius: 20px;
    }
    .main-section .main-content p {
        font-size: 14px;
    }
    .preim-block .big-item img {
        width: 90px;
        height: 130px;
    }
    .section h3 {
        font-size: 24px;
    }
    .collection-block .item .image img {
        min-height: 200px;
    }
    .section-cooperation .content {
        padding: 20px;
        border-radius: 20px;
    }
    .section-cooperation .content h3 {
        font-size: 24px;
    }
    .section-cooperation .content::after {
        width: 30px;
        height: 16px;
        left: 40px;
    }
    .section-cooperation .image::after {
        width: 30px;
        height: 16px;
    }
    .section-main-form::after {
        width: 16px;
        height: 30px;
    }
    .section-cooperation .image {
        border-radius: 20px;
    }
    .section-main-form {
        padding: 20px;
    }
    .section-main-form .content h3 {
        font-size: 24px;
    }
    .section-main-form .contact-form-box form {
        padding: 20px 20px 20px 20px;
    }
    .form-row {
        flex-direction: column;
    }
    .form-row .form-group {
        width: calc(100%);
    }
    .file-label {
        display: flex;
        flex-wrap: wrap;
    }
    .section-main-page-cat .brands-list {
        gap: 10px;
    }
    .section-main-page-cat .brand-item {
        width: calc(100% / 2 - 5px);
    }
    .section-main-page-cat .brand-item img {
        height: 160px;
    }
    .section-without-style h1, .section-without-style-main h1, .section-without-style-collection .brand-name-collection,.section-cart h1 {
        font-size: 26px;
    }
    .brand-page--ceramic .collection-card {
        width: calc(100%);
    }
    .brand-page--ceramic .collection-card__content {
        height: fit-content;
        min-height: fit-content;
        max-height: fit-content;
    }
    .mobil-panel-block .item {
        font-size: 12px;
    }
    .cart-product-page .cart-item {
        flex-direction: column;
    }
    .cart-checkout-form-block #cart-total {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
}

/* VER 400px */
@media screen and (max-width: 400px) {
    .product-card-btn {
        gap: 4px;
    }
    .product-card-btn .custom-add-to-cart {
        width: calc(100% - 46px);
    }
    .product-card-price .text {
        font-size: 11px;
    }
    .product-card-price .price .regular, .product-card-price .price .sale {
        font-size: 15px;
    }
    .logotype {
        height: 32px;
    }
    .header .header_down .left {
        gap: 0px;
    }
    .header .header_up .nav-menu .item a, .header .contact-items .item a {
        font-size: 12px;
    }
    .cart-modal-content .input-cart {
        width: calc(100%);
        margin-bottom: 10px;
    }
    .cart-modal-content .btn-default {
        width: 100%;
    }
    .hystmodal__window {
        padding: 40px 30px 30px 30px;
    }
}

/* VER 352px */
@media screen and (max-width: 352px) {
    .collection-block .item .image img {
        min-height: 130px;
    }
    .what-you-want-block .item {
        min-height: 250px;
    }
    .preim-block .item img {
        width: 80px;
        height: 80px;
    }
    .preim-block .big-item img {
        width: 80px;
        height: 110px;
    }
    .section-main-page-cat .brand-item img {
        height: 130px;
    }
    .product-card-price {
        align-items: baseline;
        flex-direction: column;
        justify-content: flex-start;
    }
    .product-card-price .text {
        font-size: 14px;
    }
    .product-card-price .price .regular, .product-card-price .price .sale {
        font-size: 18px;
    }
    .product-card-price .price .regular-mini {
        font-size: 12px;
    }
    .mobil-panel-block .item {
        font-size: 10px;
    }
    .cart-product-page .cart-image {
        width: 140px;
        height: 200px;
        min-width: 140px;
        min-height: 200px;
        max-width: 140px;
        max-height: 200px;
    }
}

/* VER 320px */
@media screen and (max-width: 320px) {
    .wrapper {
        padding: 0px 10px;
    }
}
