@charset "UTF-8";

/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type=file] {
  max-width: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Убирает стрелочки в Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Основные стили */
:root {
  --font-family: "Inter Tight", sans-serif;
  --second-family: "Inter", sans-serif;
  --gold: #fff3ca;
  --black: #0f0f0f;
  --gray: #ececec;
  --gray-line: rgba(38, 38, 38, 0.2);
  --white: #fff;
  --gray-text: #676767;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  min-width: 390px;
  color: var(--black);
  font-weight: 400;
  letter-spacing: 0.02em;
  background: #F6F6F6;
  overflow-x: hidden !important;
  scrollbar-gutter: stable !important;
}

body.stop-scroll {
  overflow-x: hidden !important;
  overflow-y: hidden !important;
  scrollbar-gutter: stable !important;
}

/* Стили контейнера готовы. Их не трогаем ни на каком разрешении */
.container {
  max-width: 1680px;
  padding: 0 40px;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .container {
    padding: 0 20px;
  }
}

a {
  color: var(--black);
  cursor: pointer;
  transition: 0.3s;
  display: block;
}

/* Подключение шрифтов */
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/InterTight-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/InterTight-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/InterTight-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/*===== header static =====*/
.header {
  position: relative;
}

.header__top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.header__top-box {
  display: flex;
  gap: 32px;
  align-items: center;
}

.header__top-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__top-link a {
  font-size: 16px;
  line-height: 100%;
}

.header__top-link:hover {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.header__top-phone {
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
}

.header__top-phone:hover {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.header__top-mail {
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
  cursor: pointer;
}

.header__top-mail:hover {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.header__menu-btn {
  display: none;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}

.header__menu-btn:hover {
  background: #f5e9c0;
  color: var(--black);
}

.header__menu-btn:hover .header-burger {
  background: var(--black);
}

.header__menu-btn:hover .header-burger::before {
  transform: translateY(-50%);
  background: var(--black);
}

.header__menu-btn:hover .header-burger::after {
  transform: translateY(50%);
  background: var(--black);
}

.header__menu-btn:active {
  background: #ffeba5;
}

.header__menu-btn-box {
  position: relative;
}

.header__menu-btn.open span {
  width: 0;
  overflow: hidden;
  visibility: hidden;
}

.header__menu-btn.open .header-burger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
}

.header__menu-btn.open .header-burger::before {
  background: #57503b;
  width: 11px;
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
  left: -1px;
}

.header__menu-btn.open .header-burger::after {
  background: #57503b;
  width: 11px;
  transform: rotate(-45deg) translateY(-50%);
  top: 50%;
}

.header__menu-list {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.08);
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  z-index: 50;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  height: 0;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  cursor: default;
}

.header__menu-list.open {
  height: 460px;
  opacity: 1;
  visibility: visible;
}

.header__menu-link {
  white-space: nowrap;
  border: 1px solid var(--gray-line);
  border-radius: 40px;
  width: 182px;
  height: 36px;
  font-size: 16px;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.header__menu-link:hover {
  background: var(--gray);
  border: 1px solid var(--gray);
}

.header__menu-link:active {
  background: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
}

.header__menu-link:active svg path {
  fill: var(--white);
}

.header__menu-bot {
  display: none;
}

.header-burger {
  width: 16px;
  height: 3px;
  border-radius: 16px;
  position: relative;
  background: var(--white);
  transition: 0.3s;
}

.header-burger::before {
  content: "";
  width: 16px;
  height: 3px;
  background: var(--white);
  border-radius: 16px;
  position: absolute;
  top: -6px;
  transition: 0.3s;
}

.header-burger::after {
  content: "";
  width: 16px;
  height: 3px;
  background: var(--white);
  border-radius: 16px;
  position: absolute;
  bottom: -6px;
  transition: 0.3s;
}

.header__search {
  position: relative;
}

.header-input-icon {
  display: none;
}

.header-input-box {
  transition: 0.3s;
}

.header-input-box svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.header-search {
  border-radius: 100px;
  border: 1px solid var(--gray-line);
  padding: 10px 16px 10px 50px;
  width: 300px;
  height: 44px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
}

.header-search::placeholder {
  color: rgba(15, 15, 15, 0.6);
}

.header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-left: 120px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-catalog {
  font-family: var(--second-family);
  background: var(--black);
  border-radius: 100px;
  width: 121px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 15px;
  line-height: 100%;
  color: var(--white);
}

.header-catalog:hover {
  background: var(--gold);
  color: var(--black);
}

.header-catalog:hover .header-burger {
  background: var(--black);
}

.header-catalog:hover .header-burger::after {
  background: var(--black);
  transform: translateY(50%);
}

.header-catalog:hover .header-burger::before {
  background: var(--black);
  transform: translateY(-50%);
}

.header-catalog:active {
  background: #ffeba5;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 15px;
  line-height: 100%;
  background: var(--white);
  border-radius: 100px;
  padding: 10px 16px;
  position: relative;
  cursor: pointer;
}

.header-link svg path {
  transition: 0.3s;
}

.header-link:hover {
  background: var(--black);
  color: var(--white);
}

.header-link:hover svg path {
  fill: var(--white);
}

.header-link:active {
  background: var(--gold);
  color: var(--black);
}

.header-link:active svg path {
  fill: var(--black);
}

.header-link-count {
  position: absolute;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: #e01616;
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  text-align: center;
  color: var(--white);
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(50%);
}

.header-link-count:empty {
  display: none;
}

.header-static {
  background: var(--gray);
  padding: 22px 0;
}

.header-static .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*===== media header static =====*/
@media (max-width: 1400px) {
  .header__top {
    padding: 16px 0;
  }

  .header__top-link a {
    font-size: 15px;
  }

  .header__top-phone {
    font-size: 15px;
  }

  .header__top-mail {
    font-size: 15px;
  }

  .header-box {
    padding-left: 40px;
  }

  .header-left {
    gap: 18px;
  }

  .header-catalog {
    width: 115px;
    height: 42px;
  }

  .header-right {
    gap: 24px;
  }

  .header-link {
    padding: 10px 14px;
  }

  .header-link img {
    width: 22px;
    height: 22px;
  }

  .header-link svg {
    width: 22px;
    height: 22px;
  }

  .header-static {
    padding: 25px 0;
  }
}

@media (max-width: 1160px) {
  .header__top {
    padding: 10px 0;
  }

  .header__top-box:first-child {
    display: none;
  }

  .header__top-box {
    justify-content: space-between;
    width: 100%;
  }

  .header__top-phone {
    font-size: 14px;
  }

  .header__top-mail {
    font-size: 14px;
  }

  .header-static {
    padding: 20px 0;
  }

  .header-static .container {
    position: relative;
  }

  .header-box {
    padding-left: 37px;
  }

  .header-logo {
    width: 209px;
    height: 37px;
  }

  .header-logo img {
    width: 100%;
    height: 100%;
  }

  .header-left {
    gap: 14px;
  }

  .header-catalog {
    display: none;
  }

  .header__search {
    position: static;
  }

  .header-input {
    position: absolute;
    top: 49px;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.08);
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 48px;
    gap: 10px;
    z-index: 50;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
  }

  .header-input input {
    border: 1px solid var(--gray-line) !important;
    border-radius: 65px;
    padding: 16px 20px;
    width: 100%;
    height: 48px;
    background: transparent;
  }

  .header-input input::placeholder {
    font-size: 16px !important;
    line-height: 100% !important;
    color: rgba(15, 15, 15, 0.6) !important;
  }

  .header-input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 100px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: 0.3s;
  }

  .header-input-icon svg {
    width: 24px !important;
    height: 24px !important;
  }

  .header-input-icon svg path {
    fill: var(--black);
  }

  .header-input.open {
    height: 88px;
    opacity: 1;
    visibility: visible;
  }

  .header-input-box {
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    width: 32px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
  }

  .header-input-box svg {
    position: static;
    transform: translate(0);
    width: 18px;
    height: 18px;
  }

  .header-input-box svg path {
    fill: var(--black);
  }

  .header__menu-btn {
    font-family: var(--second-family);
    background: var(--black);
    border-radius: 100px;
    width: 81px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    line-height: 100%;
    color: var(--white);
  }

  .header__menu-btn span {
    transition: 0.3s;
  }

  .header-burger {
    width: 10px;
    height: 2px;
  }

  .header-burger::before {
    width: 10px;
    top: -4px;
    height: 2px;
  }

  .header-burger::after {
    width: 10px;
    bottom: -4px;
    height: 2px;
  }

  .header-right {
    gap: 14px;
  }

  .header-link {
    padding: 8px 10px;
    font-size: 14px;
  }

  .header-link-count {
    width: 19px;
    height: 19px;
    font-size: 11px;
  }

  .header-link img {
    width: 16px;
    height: 16px;
  }

  .header-link svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 680px) {
  .header-static {
    padding: 12px 0;
  }

  .header-logo {
    width: 197px;
    height: 35px;
  }

  .header-box {
    padding: 0;
    flex-direction: row-reverse;
    gap: 14px;
    justify-content: end;
    width: max-content;
  }

  .header-left {
    gap: 0;
  }

  .header-input-box {
    display: none;
  }

  .header__menu-btn {
    background: var(--gold);
    border-radius: 100px;
    width: 42px;
    height: 42px;
  }

  .header__menu-btn span {
    display: none;
  }

  .header__menu-btn.open .header-burger::before {
    width: 16px;
    transform: rotate(45deg);
    left: 0;
    top: 0;
  }

  .header__menu-btn.open .header-burger::after {
    width: 16px;
    transform: rotate(-45deg);
    top: 0;
  }

  .header__menu-list {
    width: 350px;
    top: 56px;
    transform: translateX(-100%);
    left: 100%;
    gap: 10px;
  }

  .header__menu-list.open {
    height: 560px;
  }

  .header__menu-link {
    width: 100%;
    height: 39px;
    font-size: 15px;
  }

  .header__menu-bot {
    display: flex;
    margin-top: 10px;
    padding-top: 20px;
    gap: 10px;
    justify-content: space-between;
    border-top: 1px solid var(--gray-line);
  }

  .header__menu-bot input {
    border: 1px solid var(--gray-line);
    border-radius: 65px;
    padding: 16px 20px;
    width: 256px;
    height: 48px;
  }

  .header__menu-search {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    width: 48px;
    background: var(--gold);
    height: 48px;
    cursor: pointer;
    transition: 0.3s;
  }

  .header__menu-search svg path {
    fill: var(--black);
  }

  .header-burger {
    width: 16px;
    background-color: var(--black);
    border-radius: 20px;
    height: 3px;
  }

  .header-burger::before {
    width: 16px;
    background-color: var(--black);
    border-radius: 20px;
    top: -5px;
    height: 3px;
  }

  .header-burger::after {
    width: 16px;
    background-color: var(--black);
    border-radius: 20px;
    bottom: -5px;
    height: 3px;
  }

  .header-right {
    gap: 0;
  }

  .header-link {
    padding: 0;
    width: 42px;
    height: 42px;
  }

  .header-link-count {
    top: 0;
    transform: translateY(-15%) translateX(15%);
  }

  .header-link img {
    width: 18px;
    height: 18px;
  }

  .header-link svg {
    width: 18px;
    height: 18px;
  }

  .header-link span {
    display: none;
  }

  .header-link:first-child {
    display: none;
  }
}

/*===== header absolute =====*/
.header__absolute {
  background: transparent;
  position: absolute;
  top: 84px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 10;
}

.header__absolute .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header__absolute .header-catalog {
  background: var(--gold);
  color: var(--black);
}

.header__absolute .header-catalog:hover {
  background: #f5e9c0;
}

.header__absolute .header-catalog:active {
  background: #ffeba5;
}

.header__absolute .header-burger {
  background: var(--black);
}

.header__absolute .header-burger::before {
  background: var(--black);
}

.header__absolute .header-burger::after {
  background: var(--black);
}

.header__absolute .header-input-box svg path {
  fill: #B9B7B5;
}

.header__absolute .header-input-box.open {
  background: var(--black);
  border: none;
}

.header__absolute .header-input-box.open svg path {
  fill: var(--white);
}

.header__absolute .header-search {
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.header__absolute .header-search::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.header__absolute .header-link:hover {
  background: var(--gold);
  color: var(--black);
}

.header__absolute .header-link:active {
  background: #ffeba5;
}

.header__absolute .header__menu-btn:hover {
  background: #F5E9C0;
}

.header__absolute .header__menu-btn:active {
  background: #FFEBA5;
}

/*===== media header absolute =====*/
@media (max-width: 1400px) {
  .header__absolute {
    top: 71px;
  }
}

@media (max-width: 1160px) {
  .header__absolute {
    top: 54px;
  }

  .header__absolute .header-logo {
    width: 209px;
    height: 37px;
  }

  .header__absolute .header__menu-btn {
    background: var(--gold);
    color: var(--black);
  }

  .header__absolute .header-input-box svg path {
    fill: var(--black);
  }
}

/*===== header scroll =====*/
.scroll-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-200%);
  max-width: 1680px;
  width: 100%;
  padding: 0 40px;
  transition: 0.3s;
  z-index: 1000;
}

.scroll-header .header-static {
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.08);
  background: var(--white);
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
}

.scroll-header .header-logo img {
  width: 268px;
  height: 48px;
}

.scroll-header .header-link {
  border: 1px solid var(--gray-line);
}

.scroll-header.open {
  transform: translateX(-50%) translateY(0);
}

/*===== media header scroll =====*/
@media (max-width: 1400px) {
  .scroll-header .header-static {
    border-radius: 18px;
    padding: 16px 22px;
  }
}

@media (max-width: 1160px) {
  .scroll-header .header-static {
    border-radius: 16px;
    padding: 12px 16px;
  }

  .scroll-header .header-input {
    top: 60px;
  }

  .scroll-header .header-logo img {
    width: 209px;
    height: 37px;
  }

  .scroll-header .header-input-box {
    border: 1px solid var(--gray-line);
  }
}

@media (max-width: 710px) {
  .scroll-header .header-input {
    top: 60px;
  }

  .scroll-header .header__menu-list {
    left: 58px;
  }

  .scroll-header .header-logo {
    width: 197px;
    height: 35px;
  }

  .scroll-header .header-box {
    padding: 0;
    flex-direction: row-reverse;
    gap: 14px;
    justify-content: end;
    width: max-content;
  }

  .scroll-header .header-left {
    gap: 0;
  }

  .scroll-header .header-input-box {
    display: none;
  }

  .scroll-header .header__menu-btn {
    background: var(--gold);
    border-radius: 100px;
    width: 42px;
    height: 42px;
  }

  .scroll-header .header__menu-btn span {
    display: none;
  }

  .scroll-header .header__menu-btn.open .header-burger::before {
    width: 16px;
    transform: rotate(45deg);
    left: 0;
    top: 0;
  }

  .scroll-header .header__menu-btn.open .header-burger::after {
    width: 16px;
    transform: rotate(-45deg);
    top: 0;
  }

  .scroll-header .header__menu-list.open {
    height: 560px;
  }

  .scroll-header .header__menu-link {
    width: 100%;
    height: 39px;
    font-size: 15px;
  }

  .scroll-header .header__menu-bot {
    display: flex;
    margin-top: 10px;
    padding-top: 20px;
    gap: 10px;
    justify-content: space-between;
    border-top: 1px solid var(--gray-line);
  }

  .scroll-header .header__menu-bot input {
    border: 1px solid var(--gray-line);
    border-radius: 65px;
    padding: 16px 20px;
    width: 256px;
    height: 48px;
  }

  .scroll-header .header__menu-search {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    width: 48px;
    background: var(--gold);
    height: 48px;
    cursor: pointer;
    transition: 0.3s;
  }

  .scroll-header .header__menu-search svg path {
    fill: var(--black);
  }

  .scroll-header .header-burger {
    width: 16px;
    background-color: var(--black);
    border-radius: 20px;
    height: 3px;
  }

  .scroll-header .header-burger::before {
    width: 16px;
    background-color: var(--black);
    border-radius: 20px;
    top: -5px;
    height: 3px;
  }

  .scroll-header .header-burger::after {
    width: 16px;
    background-color: var(--black);
    border-radius: 20px;
    bottom: -5px;
    height: 3px;
  }

  .scroll-header .header-right {
    gap: 0;
  }

  .scroll-header .header-link {
    padding: 0;
    width: 42px;
    height: 42px;
  }

  .scroll-header .header-link-count {
    top: 0;
    transform: translateY(-15%) translateX(15%);
  }

  .scroll-header .header-link img {
    width: 18px;
    height: 18px;
  }

  .scroll-header .header-link svg {
    width: 18px;
    height: 18px;
  }

  .scroll-header .header-link span {
    display: none;
  }

  .scroll-header .header-link:first-child {
    display: none;
  }
}

@media (max-width: 576px) {
  .scroll-header {
    padding: 0 20px;
  }
}

/*===== Уведомление при добавлении товара в корзину =====*/
.notification {
  position: fixed;
  z-index: 1000;
  right: 40px;
  bottom: 40px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.08);
  background: var(--white);
  border-radius: 18px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: 0.5s;
  transform: translateX(200%);
}

.notification-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  width: 42px;
  height: 42px;
  border-radius: 100px;
}

.notification-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #000;
}

.notification.open {
  transform: translate(0);
}

/*===== media Уведомление при добавлении товара в корзину =====*/
@media (max-width: 1160px) {
  .notification {
    right: 20px;
    bottom: 20px;
    border-radius: 14px;
    padding: 12px 16px;
    gap: 12px;
  }

  .notification-icon {
    width: 26px;
    height: 26px;
  }

  .notification-icon svg {
    width: 14px;
    height: 14px;
  }

  .notification-text {
    font-size: 15px;
  }
}

/*===== footer =====*/
.footer-wrap {
  margin-top: 120px;
  border-top: 1px solid var(--gray-line);
  width: 100%;
  padding: 42px 0 30px 0;
  display: flex;
  justify-content: space-between;
}

.footer__left-logo {
  width: 273px;
  height: 49px;
}

.footer__left-copy {
  padding-top: 32px;
  font-size: 16px;
  line-height: 100%;
}

.footer__left-policy {
  color: rgba(15, 15, 15, 0.4);
  font-size: 16px;
  line-height: 100%;
  padding-top: 18px;
}

.footer__left-policy:hover {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.footer nav {
  display: flex;
  gap: 65px;
}

.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__menu-link a {
  font-size: 16px;
  line-height: 100%;
}

.footer__menu-link a:hover {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.footer__right-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
}

.footer__right-phone:hover {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.footer__right-mail {
  padding-top: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
}

.footer__right-mail:hover {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.prana {
  padding-top: 45px;
  transition: 0.3s;
}

.prana:hover {
  scale: 1.05;
}

/*===== media footer =====*/
@media (max-width: 1400px) {
  .footer-wrap {
    padding: 32px 0 30px 0;
  }

  .footer__left-logo {
    width: 245px;
    height: 44px;
  }

  .footer__left-copy {
    padding-top: 24px;
    font-size: 14px;
  }

  .footer__left-policy {
    font-size: 14px;
    padding-top: 16px;
  }

  .footer nav {
    gap: 33px;
  }

  .footer__menu {
    gap: 16px;
  }

  .footer__menu-link a {
    font-size: 14px;
  }

  .footer__right-phone {
    gap: 12px;
    font-size: 18px;
  }

  .footer__right-phone img {
    width: 18px;
    height: 18px;
  }

  .footer__right-mail {
    padding-top: 12px;
    gap: 12px;
    font-size: 18px;
  }

  .footer__right-mail img {
    width: 18px;
    height: 18px;
  }

  .prana {
    padding-top: 36px;
  }

  .prana img {
    width: 246px;
    height: 20px;
  }
}

@media (max-width: 1160px) {
  .footer-wrap {
    margin-top: 80px;
    padding: 32px 0 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "left nav" "left right";
    justify-content: space-between;
    position: relative;
  }

  .footer__left {
    grid-area: left;
  }

  .footer__left-copy {
    padding-top: 60px;
  }

  .footer nav {
    grid-area: nav;
    justify-content: end;
    padding-right: 28px;
  }

  .footer__right {
    grid-area: right;
    justify-self: end;
  }

  .footer__right-phone {
    padding-top: 32px;
  }

  .prana {
    padding-top: 0;
    position: absolute;
    left: 0;
    bottom: 20px;
  }
}

@media (max-width: 680px) {
  .footer-wrap {
    margin-top: 60px;
    padding: 25px 0 154px 0;
    display: block;
  }

  .footer__left-logo {
    width: 197px;
    height: 35px;
  }

  .footer__left-copy {
    padding-top: 0;
    position: absolute;
    left: 0;
    bottom: 98px;
  }

  .footer__left-policy {
    padding-top: 0;
    position: absolute;
    left: 0;
    bottom: 68px;
  }

  .footer nav {
    gap: 66px;
    justify-content: start;
    padding-right: 0;
    padding-top: 42px;
  }

  .footer__right {
    justify-self: start;
  }

  .footer__right-phone {
    padding-top: 42px;
  }

  .prana {
    padding-top: 0;
    position: absolute;
    left: 0;
    bottom: 24px;
  }
}

/*===== cookies =====*/
.cookies {
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 24px;
  position: fixed;
  bottom: 40px;
  left: 40px;
  z-index: 60;
  padding: 24px;
  width: 700px;
}

.cookies-text {
  font-size: 18px;
  line-height: 120%;
}

.cookies-text a {
  text-decoration-line: underline;
  text-decoration-skip-ink: auto;
  display: inline;
}

.cookies-btn {
  border-radius: 100px;
  border: 1px solid var(--black);
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.cookies-btn:hover {
  background: var(--gray);
  border: 1px solid var(--gray);
}

.cookies-btn:active {
  background: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
}

/*===== media cookies =====*/
@media (max-width: 1160px) {
  .cookies {
    border-radius: 18px;
    flex-direction: column;
    gap: 18px;
    bottom: 20px;
    left: 20px;
    padding: 18px;
    width: 265px;
    align-items: flex-start;
  }

  .cookies-text {
    font-size: 13px;
  }

  .cookies-btn {
    font-size: 14px;
    padding: 13px 23px;
  }
}

/*===== main first screen =====*/
.main-first {
  height: 820px;
  position: relative;
}

.main-first-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.main-first-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(38, 38, 38, 0.4);
}

.main-first-content {
  position: relative;
  z-index: 3;
}

.main-first-title {
  padding-top: 203px;
  font-weight: 500;
  font-size: 72px;
  line-height: 100%;
  color: var(--white);
  max-width: 925px;
}

.main-first-subtitle {
  padding-top: 28px;
  font-size: 20px;
  line-height: 140%;
  color: var(--white);
  max-width: 460px;
}

.main-first-bot {
  position: relative;
  z-index: 3;
  padding-top: 145px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.main-first-catalog {
  background: var(--white);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 229px;
  height: 64px;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
}

.main-first-catalog:hover {
  background: var(--gray);
}

.main-first-catalog:active {
  background: var(--gold);
}

.main-first-cards {
  display: flex;
  gap: 31px;
}

.main-first__card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  position: relative;
  padding: 24px;
  width: 377px;
}

.main-first__card:hover {
  background: #FFF;
  transform: translateY(-15%);
}

.main-first__card:hover .main-first__card-title {
  color: var(--black);
}

.main-first__card:hover .main-first__card-logo path {
  fill: var(--black);
}

.main-first__card:hover .main-first__card-icon {
  background: var(--gold);
}

.main-first__card:hover .main-first__card-icon svg path {
  fill: var(--black);
}

.main-first__card-title {
  font-size: 18px;
  line-height: 120%;
  color: var(--white);
  transition: 0.3s;
}

.main-first__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 42px;
  border: 1px solid var(--white);
  width: 38px;
  aspect-ratio: 1;
  margin-top: 32px;
  transition: 0.3s;
}

.main-first__card-icon svg path {
  transition: 0.3s;
}

.main-first__card-logo {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 205px;
  height: 37px;
}

.main-first__card-logo path {
  transition: 0.3s;
}

/*===== media header static =====*/
@media (max-width: 1400px) {
  .main-first {
    height: 640px;
  }

  .main-first-title {
    padding-top: 132px;
    font-size: 52px;
    max-width: 665px;
  }

  .main-first-subtitle {
    padding-top: 24px;
    font-size: 18px;
    max-width: 410px;
  }

  .main-first-bot {
    padding-top: 93px;
  }

  .main-first-cards {
    gap: 30px;
  }

  .main-first__card {
    padding: 20px;
    width: 277px;
  }

  .main-first__card-logo {
    bottom: 20px;
    right: 20px;
    width: 160px;
    height: 29px;
  }
}

@media (max-width: 1160px) {
  .main-first {
    height: 442px;
  }

  .main-first-title {
    padding-top: 107px;
    font-size: 34px;
    max-width: 445px;
  }

  .main-first-subtitle {
    padding-top: 18px;
    font-size: 16px;
    max-width: 360px;
  }

  .main-first-bot {
    padding-top: 75px;
    align-items: center;
  }

  .main-first-catalog {
    width: 178px;
    height: 48px;
    font-size: 16px;
  }

  .main-first-cards {
    gap: 24px;
  }

  .main-first__card {
    border-radius: 12px;
    padding: 16px;
    width: max-content;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .main-first__card-title {
    font-size: 14px;
  }

  .main-first__card-icon {
    margin: 0;
    border: none;
    width: max-content;
  }

  .main-first__card-icon svg {
    width: 8px;
    height: 11px;
  }

  .main-first__card-logo {
    display: none;
  }
}

@media (max-width: 680px) {
  .main-first {
    height: 487px;
  }

  .main-first-title {
    padding-top: 96px;
    font-size: 26px;
  }

  .main-first-subtitle {
    padding-top: 16px;
    line-height: 130%;
  }

  .main-first-bot {
    padding-top: 42px;
    flex-direction: column;
    gap: 60px;
    align-items: start;
  }

  .main-first-cards {
    justify-content: space-between;
    width: 100%;
  }

  .main-first__card {
    width: 100%;
    justify-content: space-between;
  }
}

/*===== Популярные товары, Новые поступления =====*/
.tovar-cards-top {
  padding-top: 120px;
  display: flex;
  justify-content: space-between;
}

.tovar-cards-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 110%;
}

.tovar-cards-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
}

.tovar-cards-link svg {
  transition: 0.3s;
}

.tovar-cards-link svg path {
  transition: 0.3s;
}

.tovar-cards-link:hover svg {
  transform: translateX(100%);
}

.tovar-cards-link:hover svg path {
  fill-opacity: 1;
}

.tovar-cards-wrap {
  margin-top: 32px;
  border-top: 1px solid var(--gray-line);
  padding-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.tovar-cards__card {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  transition: 0.3s;
  position: relative;
}

.tovar-cards__card:hover {
  scale: 1.03;
  box-shadow: 0 4px 64px 0 #eeede8;
}

.tovar-cards__card:hover .tovar-cards__card-static {
  opacity: 0;
}

.tovar-cards__card:hover .tovar-cards__card-hover {
  opacity: 1;
  scale: 1;
  visibility: visible;
}

.tovar-cards__card_sklad {
  display: none;
}

.tovar-cards__card-img {
  position: relative;
  aspect-ratio: 1;
  border-bottom: 1px solid #ebebeb;
  display: flex;
  align-items: center;
}

.tovar-cards__card-static {
  width: 100%;
  object-fit: contain;
  height: 100%;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}

.tovar-cards__card-hover {
  opacity: 0;
  scale: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: 0.3s;
}

.tovar-cards__card-title {
  padding-top: 24px;
  font-size: 20px;
  line-height: 140%;
}

.tovar-cards__card-tabs {
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tovar-cards__card-tab {
  background: var(--gray);
  border-radius: 35px;
  padding: 8px 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: rgba(38, 38, 38, 0.6);
}

.tovar-cards__card-prise {
  padding-top: 24px;
  font-weight: 600;
  font-size: 22px;
  line-height: 120%;
}

.tovar-cards__card-add {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--gray-line);
  border-radius: 100px;
  padding: 20px 24px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  transition: 0.3s;
  cursor: pointer;
}

.tovar-cards__card-add:hover {
  background: var(--gold);
  border: 1px solid var(--gold);
}

.tovar-cards__card-add:active {
  background: #ffeba5;
}

.tovar-cards__card-add span {
  white-space: nowrap;
}

.tovar-cards__card-label {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 5;
  background: var(--gold);
  border-radius: 35px;
  padding: 8px 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}

.tovar-cards__bot {
  display: none;
}

.tovar-cards__bot-link svg path {
  transition: 0.3s;
}

.tovar-cards__bot-link:hover {
  background: var(--white);
  border: 1px solid var(--white);
}

.tovar-cards__bot-link:active {
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
}

.tovar-cards__bot-link:active svg path {
  fill: var(--white);
}

.tovar-cards__bot-prev:hover {
  background: var(--black);
}

.tovar-cards__bot-prev:hover svg path {
  fill: var(--white);
  fill-opacity: 1;
}

.tovar-cards__bot-next:hover {
  background: var(--black);
}

.tovar-cards__bot-next:hover svg path {
  fill: var(--white);
  fill-opacity: 1;
}

/*===== media Популярные товары, Новые поступления =====*/
@media (max-width: 1400px) {
  .tovar-cards-title {
    font-size: 36px;
  }

  .tovar-cards-link {
    gap: 8px;
    font-size: 16px;
    line-height: 110%;
  }

  .tovar-cards-wrap {
    margin-top: 28px;
  }

  .tovar-cards__card {
    padding: 20px;
  }

  .tovar-cards__card-title {
    padding-top: 16px;
    font-size: 16px;
  }

  .tovar-cards__card-tabs {
    padding-top: 10px;
  }

  .tovar-cards__card-tab {
    font-size: 14px;
  }

  .tovar-cards__card-prise {
    font-size: 18px;
  }

  .tovar-cards__card-add {
    margin-top: 18px;
    padding: 18px 24px;
    font-size: 16px;
  }

  .tovar-cards__card-add img {
    width: 20px;
    height: 20px;
  }

  .tovar-cards__card-label {
    top: 20px;
    left: 20px;
    font-size: 15px;
  }
}

@media (max-width: 1160px) {
  .tovar-cards-top {
    padding-top: 80px;
  }

  .tovar-cards-title {
    font-size: 28px;
  }

  .tovar-cards-link {
    gap: 10px;
    font-size: 15px;
  }

  .tovar-cards-link svg {
    width: 8px;
    height: 10px;
  }

  .tovar-cards-wrap {
    margin-top: 24px;
    padding-top: 32px;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .tovar-cards__card {
    padding: 16px;
    border-radius: 18px;
  }

  .tovar-cards__card:last-child {
    display: none;
  }

  .tovar-cards__card-title {
    padding-top: 13px;
    font-size: 14px;
  }

  .tovar-cards__card-tabs {
    padding-top: 18px;
    gap: 8px;
  }

  .tovar-cards__card-tab {
    font-size: 13px;
    padding: 6px;
  }

  .tovar-cards__card-prise {
    padding-top: 20px;
    font-size: 16px;
  }

  .tovar-cards__card-add {
    margin-top: 16px;
    padding: 14px 0;
    font-size: 14px;
  }

  .tovar-cards__card-add img {
    display: none;
  }

  .tovar-cards__card-label {
    top: 16px;
    left: 16px;
    font-size: 13px;
  }
}

@media (max-width: 680px) {
  .tovar-cards-top {
    padding-top: 60px;
  }

  .tovar-cards-title {
    font-size: 24px;
  }

  .tovar-cards-link {
    display: none;
  }

  .tovar-cards-wrap {
    margin-top: 0;
    padding-top: 28px;
    border: none;
    display: flex;
    gap: 12px;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .tovar-cards__card {
    padding: 12px;
    border-radius: 12px;
    width: 169px;
    flex-shrink: 0;
  }

  .tovar-cards__card:last-child {
    display: block;
  }

  .tovar-cards__card-title {
    padding-top: 11px;
    font-size: 13px;
  }

  .tovar-cards__card-tabs {
    padding-top: 10px;
    gap: 6px;
  }

  .tovar-cards__card-tab {
    padding: 5px;
  }

  .tovar-cards__card-prise {
    padding-top: 18px;
    font-size: 14px;
  }

  .tovar-cards__card-add {
    margin-top: 12px;
  }

  .tovar-cards__card-add img {
    display: block;
  }

  .tovar-cards__card-add span {
    display: none;
  }

  .tovar-cards__card-label {
    top: 12px;
    left: 12px;
  }

  .tovar-cards__bot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
  }

  .tovar-cards__bot-link {
    border: 1px solid var(--gray-line);
    border-radius: 100px;
    width: 187px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
  }

  .tovar-cards__bot-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .tovar-cards__bot-prev {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 100px;
    border: 1px solid var(--gray-line);
    transform: rotate(180deg);
    cursor: pointer;
    transition: 0.3s;
  }

  .tovar-cards__bot-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 100px;
    border: 1px solid var(--gray-line);
    cursor: pointer;
    transition: 0.3s;
  }
}

/*===== сокровище для вашего дома =====*/
.treasure {
  background: var(--gray);
  margin-top: 120px;
}

.treasure-wrap {
  padding: 120px 0;
  display: grid;
  grid-template-columns: 1fr 990px;
  gap: 30px;
}

.treasure__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.treasure__left-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 110%;
}

.treasure__left-subtitle {
  padding-top: 42px;
  color: var(--gray-text);
  font-size: 20px;
  line-height: 140%;
  max-width: 495px;
}

.treasure__left-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.treasure__left-card {
  border: 1px solid #c9c9c9;
  border-radius: 24px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
}

.treasure__left-count {
  font-weight: 500;
  font-size: 72px;
  line-height: 100%;
  white-space: nowrap;
}

.treasure__left-name {
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: rgba(15, 15, 15, 0.7);
}

.treasure__right {
  display: grid;
  grid-template-columns: 1.54fr 1fr;
  gap: 30px;
}

.treasure__right-main_img {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.treasure__right-main_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treasure__right-box {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
}

.treasure__right-item:nth-child(2) {
  align-self: end;
}

.treasure__right-item img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  border-radius: 24px;
}

.treasure__right-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 110%;
  width: 95%;
}

.treasure__right-text {
  padding-top: 24px;
  color: var(--gray-text);
  font-size: 20px;
  line-height: 140%;
  width: 95%;
}

/*===== media сокровище для вашего дома =====*/
@media (max-width: 1490px) {
  .treasure {
    margin-top: 110px;
  }

  .treasure-wrap {
    padding: 100px 0;
    grid-template-columns: 1fr 1.7fr;
  }

  .treasure__left-title {
    font-size: 36px;
  }

  .treasure__left-subtitle {
    padding-top: 36px;
    font-size: 18px;
  }

  .treasure__left-cards {
    gap: 20px;
  }

  .treasure__left-card {
    gap: 32px;
  }

  .treasure__left-count {
    font-size: 52px;
  }

  .treasure__left-name {
    font-size: 18px;
  }

  .treasure__right {
    grid-template-columns: 1.66fr 1fr;
  }

  .treasure__right-title {
    font-size: 24px;
  }

  .treasure__right-text {
    padding-top: 18px;
    font-size: 18px;
  }
}

@media (max-width: 1160px) {
  .treasure {
    margin-top: 80px;
  }

  .treasure-wrap {
    padding: 80px 0;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .treasure__left-title {
    font-size: 28px;
  }

  .treasure__left-subtitle {
    padding-top: 27px;
    font-size: 16px;
  }

  .treasure__left-card {
    padding: 24px;
    gap: 24px;
    border-radius: 18px;
    grid-template-columns: 90px 1fr;
  }

  .treasure__left-count {
    font-size: 42px;
  }

  .treasure__left-name {
    font-size: 16px;
  }

  .treasure__right {
    grid-template-columns: 1fr;
  }

  .treasure__right-main_img {
    display: none;
  }

  .treasure__right-box {
    grid-template-rows: auto;
    gap: 32px;
  }

  .treasure__right-title {
    font-size: 20px;
  }

  .treasure__right-text {
    font-size: 16px;
    width: 100%;
  }
}

@media (max-width: 680px) {
  .treasure {
    margin-top: 60px;
  }

  .treasure-wrap {
    padding: 50px 0;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .treasure__left {
    gap: 27px;
  }

  .treasure__left-title {
    font-size: 24px;
    width: 80%;
  }

  .treasure__left-subtitle {
    padding-top: 24px;
  }

  .treasure__left-cards {
    gap: 16px;
  }

  .treasure__left-card {
    padding: 20px;
    grid-template-columns: 80px 1fr;
  }

  .treasure__left-count {
    font-size: 34px;
  }

  .treasure__left-name {
    font-size: 15px;
    width: max-content;
  }

  .treasure__right-box {
    gap: 24px;
  }

  .treasure__right-title {
    font-size: 18px;
  }

  .treasure__right-text {
    width: 95%;
  }
}

/*===== акция =====*/
.sale-wrap {
  padding-top: 120px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.sale__left {
  border-radius: 24px;
  padding: 52px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  gap: 110px;
}

.sale__left-text {
  position: relative;
  z-index: 5;
}

.sale__left-title {
  color: var(--white);
  font-weight: 500;
  font-size: 32px;
  line-height: 110%;
  width: 70%;
}

.sale__left-subtitle {
  padding-top: 18px;
  font-size: 18px;
  line-height: 140%;
  color: var(--white);
  width: 65%;
}

.sale__left-more {
  background: var(--gold);
  border-radius: 100px;
  width: 230px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  position: relative;
  z-index: 5;
}

.sale__left-more:hover {
  background: #f5e9c0;
}

.sale__left-more:active {
  background: #ffeba5;
}

.sale__left-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.sale__left-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(244deg, rgba(38, 38, 38, 0) 2.88%, #262626 108.97%);
}

.sale__right {
  border-radius: 24px;
  padding: 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #c9c9c9;
}

.sale__right-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 100%;
}

.sale__right-subtitle {
  padding-top: 32px;
  font-size: 18px;
  line-height: 140%;
  width: 37%;
}

.sale__right-all {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  border-radius: 100px;
  width: 250px;
  height: 64px;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
}

.sale__right-all:hover {
  background: var(--white);
  border: 1px solid var(--white);
}

.sale__right-all:active {
  background: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
}

/*===== media акция =====*/
@media (max-width: 1400px) {
  .sale__left {
    padding: 42px;
  }

  .sale__left-title {
    font-size: 28px;
    width: 80%;
  }

  .sale__left-subtitle {
    font-size: 16px;
    width: 77%;
  }

  .sale__left-more {
    height: 60px;
  }

  .sale__right {
    padding: 42px;
  }

  .sale__right-title {
    font-size: 36px;
  }

  .sale__right-subtitle {
    padding-top: 24px;
    font-size: 16px;
    width: 50%;
  }

  .sale__right-all {
    height: 60px;
  }
}

@media (max-width: 1160px) {
  .sale-wrap {
    padding-top: 80px;
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .sale__left {
    gap: 115px;
  }

  .sale__left-title {
    font-size: 24px;
    width: 65%;
  }

  .sale__left-subtitle {
    padding-top: 18px;
    width: 65%;
  }

  .sale__left-more {
    width: 179px;
    height: 48px;
    font-size: 16px;
  }

  .sale__right {
    flex-direction: row;
  }

  .sale__right-title {
    font-size: 28px;
  }

  .sale__right-subtitle {
    padding-top: 18px;
    width: 55%;
  }

  .sale__right-all {
    width: 195px;
    height: 48px;
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .sale-wrap {
    padding-top: 60px;
    gap: 20px;
  }

  .sale__left {
    gap: 112px;
  }

  .sale__left-title {
    font-size: 20px;
    width: 100%;
  }

  .sale__left-subtitle {
    padding-top: 14px;
    font-size: 15px;
    width: 100%;
  }

  .sale__right {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  .sale__right-title {
    font-size: 24px;
  }

  .sale__right-subtitle {
    padding-top: 14px;
    width: 70%;
    font-size: 15px;
  }
}

/*===== Новости на главной =====*/
.news-block-top {
  display: flex;
  justify-content: space-between;
  padding-top: 120px;
}

.news-block-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 110%;
}

.news-block-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
}

.news-block-link svg {
  transition: 0.3s;
}

.news-block-link svg path {
  transition: 0.3s;
}

.news-block-link:hover svg {
  transform: translateX(100%);
}

.news-block-link:hover svg path {
  fill-opacity: 1;
}

.news-block-wrap {
  margin-top: 32px;
  padding-top: 42px;
  border-top: 1px solid #c9c9c9;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.news-block__card:hover .news-block__card-img img {
  scale: 1.2;
}

.news-block__card:hover .news-block__card-title {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.news-block__card-img {
  overflow: hidden;
  border-radius: 16px;
}

.news-block__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.news-block__card-title {
  padding-top: 24px;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
}

.news-block__card-date {
  padding-top: 10px;
  font-size: 18px;
  line-height: 140%;
  color: rgba(15, 15, 15, 0.4);
}

.news-block__bot {
  display: none;
}

.news-block__bot-link svg path {
  transition: 0.3s;
}

.news-block__bot-link:hover {
  background: var(--white);
  border: 1px solid var(--white);
}

.news-block__bot-link:active {
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
}

.news-block__bot-link:active svg path {
  fill: var(--white);
}

.news-block__bot-prev:hover {
  background: var(--black);
}

.news-block__bot-prev:hover svg path {
  fill: var(--white);
  fill-opacity: 1;
}

.news-block__bot-next:hover {
  background: var(--black);
}

.news-block__bot-next:hover svg path {
  fill: var(--white);
  fill-opacity: 1;
}

/*===== media Новости на главной =====*/
@media (max-width: 1400px) {
  .news-block-title {
    font-size: 36px;
  }

  .news-block-link {
    gap: 8px;
    font-size: 16px;
  }

  .news-block-wrap {
    margin-top: 28px;
    grid-template-columns: repeat(3, 1fr);
  }

  .news-block__card:last-child {
    display: none;
  }

  .news-block__card-title {
    font-size: 18px;
  }

  .news-block__card-date {
    font-size: 16px;
  }
}

@media (max-width: 1160px) {
  .news-block-top {
    padding-top: 80px;
  }

  .news-block-title {
    font-size: 28px;
  }

  .news-block-link {
    gap: 10px;
    font-size: 15px;
  }

  .news-block-link svg {
    width: 8px;
    height: 10px;
  }

  .news-block-wrap {
    margin-top: 24px;
    padding-top: 32px;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .news-block__card-img {
    border-radius: 14px;
  }

  .news-block__card-title {
    font-size: 16px;
    padding-top: 16px;
  }

  .news-block__card-date {
    padding-top: 28px;
    font-size: 15px;
  }
}

@media (max-width: 680px) {
  .news-block-top {
    padding-top: 60px;
  }

  .news-block-title {
    font-size: 24px;
  }

  .news-block-link {
    display: none;
  }

  .news-block-wrap {
    margin-top: 0;
    padding-top: 28px;
    border: none;
    width: 100%;
    overflow: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 24px;
    display: flex;
  }

  .news-block__card {
    scroll-snap-align: center;
    width: 350px;
    flex-shrink: 0;
    -webkit-overflow-scrolling: touch;
  }

  .news-block__card:last-child {
    display: block;
  }

  .news-block__card-img {
    border-radius: 14px;
  }

  .news-block__card-date {
    padding-top: 6px;
  }

  .news-block__bot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
  }

  .news-block__bot-link {
    border: 1px solid var(--gray-line);
    border-radius: 100px;
    width: 187px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
  }

  .news-block__bot-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .news-block__bot-prev {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 100px;
    border: 1px solid var(--gray-line);
    transform: rotate(180deg);
    cursor: pointer;
    transition: 0.3s;
  }

  .news-block__bot-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 100px;
    border: 1px solid var(--gray-line);
    cursor: pointer;
    transition: 0.3s;
  }
}

/*===== Описание =====*/
.descr-title {
  padding-top: 120px;
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
}

.descr-text {
  padding-top: 24px;
  font-size: 18px;
  line-height: 140%;
  color: rgba(15, 15, 15, 0.6);
}

/*===== media Описание =====*/
@media (max-width: 1400px) {
  .descr-title {
    font-size: 22px;
  }

  .descr-text {
    font-size: 16px;
  }
}

@media (max-width: 1160px) {
  .descr-title {
    padding-top: 80px;
    font-size: 18px;
  }

  .descr-text {
    padding-top: 24px;
    font-size: 15px;
  }
}

@media (max-width: 680px) {
  .descr-title {
    padding-top: 60px;
    font-size: 15px;
  }

  .descr-text {
    padding-top: 18px;
    font-size: 13px;
  }
}

/*===== breadcrumbs =====*/
.breadcrumbs {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 40px;
}

.breadcrumbs-wrap {
  padding: 42px 0 32px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.breadcrumbs-link {
  font-size: 18px;
  line-height: 100%;
}

.breadcrumbs-str {
  font-size: 18px;
  line-height: 100%;
  color: rgba(38, 38, 38, 0.4);
}

/*===== media breadcrumbs =====*/
@media (max-width: 1400px) {
  .breadcrumbs-wrap {
    padding: 32px 0 26px 0;
    gap: 14px;
  }

  .breadcrumbs-link {
    font-size: 16px;
  }

  .breadcrumbs-str {
    font-size: 16px;
  }

  .breadcrumbs svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 1160px) {
  .breadcrumbs-wrap {
    padding: 28px 0 24px 0;
    gap: 10px;
  }

  .breadcrumbs-link {
    font-size: 14px;
  }

  .breadcrumbs-str {
    font-size: 14px;
  }

  .breadcrumbs svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 680px) {
  .breadcrumbs-wrap {
    padding: 24px 0 24px 0;
    gap: 8px;
  }

  .breadcrumbs-link {
    font-size: 13px;
  }

  .breadcrumbs-str {
    font-size: 13px;
  }

  .breadcrumbs svg {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 576px) {
  .breadcrumbs {
    padding: 0 20px;
  }
}

/*===== title =====*/
.title {
  font-weight: 500;
  font-size: 72px;
  line-height: 110%;
}

/*===== media title =====*/
@media (max-width: 1400px) {
  .title {
    font-size: 52px;
  }
}

@media (max-width: 1160px) {
  .title {
    font-size: 34px;
  }
}

@media (max-width: 680px) {
  .title {
    font-size: 26px;
  }
}

/*===== Сортировка =====*/
.sort {
  padding-top: 52px;
}

.sort__wrap {
  display: flex;
  justify-content: space-between;
}

.sort__wrap-selector {
  position: relative;
}

.sort__wrap-veiw {
  position: relative;
}

.sort__wrap-item {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--gray-line);
  border-radius: 52px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}

.sort__wrap-item.open svg {
  transform: rotate(180deg);
}

.sort__wrap-list {
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.08);
  background: var(--white);
  border-radius: 20px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  position: absolute;
  top: 62px;
  z-index: 10;
}

.sort__wrap-list.open {
  display: flex;
}

.sort__wrap-var {
  border: 1px solid var(--gray-line);
  border-radius: 40px;
  padding: 10px 12px;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.sort__wrap-var:hover {
  background: var(--gray);
  border: 1px solid var(--gray);
}

.sort__wrap-var:active {
  background: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
}

.sort__wrap-name {
  display: flex;
  align-items: center;
  gap: 4px;
}

.sort__wrap-filter {
  display: none;
}

.sort__wrap-filter.open {
  background: #e5d6a4;
}

.sort__wrap-filter.open .sort__wrap-icon {
  transform: rotate(45deg);
}

.sort__wrap-filter.open .sort__wrap-icon::after {
  transform: rotate(-90deg);
  width: 13px;
  top: 0;
}

/*===== media Сортировка =====*/
@media (max-width: 1400px) {
  .sort {
    padding-top: 42px;
  }

  .sort__wrap-item {
    gap: 14px;
    padding: 14px 18px;
    font-size: 15px;
  }

  .sort__wrap-item svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 1160px) {
  .sort {
    padding-top: 32px;
  }

  .sort__wrap {
    justify-content: end;
    gap: 24px;
    position: relative;
  }

  .sort__wrap-item {
    border-radius: 52px;
    font-size: 14px;
  }

  .sort__wrap-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    gap: 12px;
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    border-radius: 52px;
    width: 154px;
    height: 42px;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
    transition: 0.3s;
  }

  .sort__wrap-icon {
    width: 13px;
    height: 2px;
    background: var(--black);
    border-radius: 20px;
    transition: 0.3s;
  }

  .sort__wrap-icon::after {
    content: "";
    display: block;
    width: 8px;
    height: 2px;
    background: var(--black);
    border-radius: 20px;
    position: relative;
    top: 5px;
    transition: 0.3s;
  }
}

@media (max-width: 740px) {
  .sort {
    padding-top: 28px;
  }

  .sort__wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "filter filter" "selector view";
    gap: 12px;
  }

  .sort__wrap-veiw {
    grid-area: view;
  }

  .sort__wrap-item {
    padding: 12px 16px;
    justify-content: space-between;
  }

  .sort__wrap-item p {
    display: none;
  }

  .sort__wrap-item svg {
    width: 12px;
    height: 12px;
  }

  .sort__wrap-selector {
    grid-area: selector;
  }

  .sort__wrap-filter {
    height: 40px;
    position: static;
    grid-area: filter;
    width: 100%;
  }
}

/*===== Каталог =====*/
.catalog-wrap {
  padding-top: 32px;
  display: grid;
  grid-template-columns: 377px 1fr;
  gap: 30px;
}

/*===== media Каталог =====*/
@media (max-width: 1400px) {
  .catalog-wrap {
    padding-top: 24px;
    grid-template-columns: 278px 1fr;
  }
}

@media (max-width: 1160px) {
  .catalog-wrap {
    padding: 0;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/*===== Каталог Фильтр =====*/
.catalog__filters {
  border-radius: 24px;
  background: var(--white);
  height: max-content;
  padding: 32px;
}

.catalog__filters-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
}

.catalog__filters-wrap {
  margin-top: 18px;
  border-top: 1px solid var(--gray-line);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.catalog__filters-name {
  font-size: 18px;
  line-height: 100%;
  padding-bottom: 12px;
}

.catalog__filters-area {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-line);
  border-radius: 65px;
  padding: 18px 20px;
  font-size: 16px;
  line-height: 100%;
  color: rgba(15, 15, 15, 0.4);
}

.catalog__filters-area span {
  padding-right: 8px;
}

.catalog__filters-area div {
  font-weight: 500;
}

.catalog__filters-area input {
  width: 82px;
  color: var(--black);
}

.catalog__filters-area_line {
  margin: 0 18px;
  border: 1px solid #dcdcdc;
  height: 12px;
}

.catalog__filters-select {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--gray-line);
  border-radius: 65px;
  padding: 18px 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: rgba(15, 15, 15, 0.6);
  cursor: pointer;
}

.catalog__filters-select.open svg {
  transform: rotate(180deg);
}

.catalog__filters-item_wrap {
  position: relative;
}

.catalog__filters-list {
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.08);
  background: var(--white);
  border-radius: 20px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  position: absolute;
  top: 90px;
  z-index: 10;
}

.catalog__filters-list.open {
  display: flex;
}

.catalog__filters-var {
  border: 1px solid var(--gray-line);
  border-radius: 40px;
  padding: 10px 12px;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.catalog__filters-var:hover {
  background: var(--gray);
  border: 1px solid var(--gray);
}

.catalog__filters-var:active {
  background: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
}

.catalog__filters-apply {
  margin-top: 32px;
  background: var(--gold);
  border-radius: 100px;
  padding: 20px 24px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.catalog__filters-apply:hover {
  background: #f5e9c0;
}

.catalog__filters-apply:active {
  background: #ffeba5;
}

.catalog__filters-reset {
  margin-top: 16px;
  border: 1px solid var(--gray-line);
  border-radius: 100px;
  padding: 20px 24px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  transition: 0.3s;
}

.catalog__filters-reset:hover {
  background: var(--gray);
  border: 1px solid var(--gray);
}

.catalog__filters-reset:active {
  background: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
}

.catalog__filters.open {
  padding: 24px;
  height: 441px;
  opacity: 1;
  visibility: visible;
  margin-top: 18px;
}

/*===== media Каталог Фильтр =====*/
@media (max-width: 1400px) {
  .catalog__filters {
    padding: 24px;
  }

  .catalog__filters-title {
    font-size: 22px;
  }

  .catalog__filters-wrap {
    margin-top: 16px;
    padding-top: 20px;
    gap: 16px;
  }

  .catalog__filters-name {
    font-size: 16px;
    padding-bottom: 10px;
  }

  .catalog__filters-area {
    padding: 16px 20px;
  }

  .catalog__filters-area span {
    padding-right: 4px;
  }

  .catalog__filters-area input {
    width: 56px;
  }

  .catalog__filters-area_line {
    margin: 0 8px;
  }

  .catalog__filters-select {
    padding: 16px 20px;
  }

  .catalog__filters-apply {
    margin-top: 20px;
    padding: 16px 24px;
  }

  .catalog__filters-reset {
    padding: 16px 24px;
  }
}

@media (max-width: 1160px) {
  .catalog__filters {
    padding: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }

  .catalog__filters-title {
    font-size: 20px;
  }

  .catalog__filters-wrap {
    row-gap: 16px;
    column-gap: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog__filters-area input {
    width: 100%;
  }

  .catalog__filters-area_line {
    margin: 0 16px;
  }

  .catalog__filters-apply {
    margin-top: 0;
    width: 100%;
  }

  .catalog__filters-reset {
    margin: 0;
    width: 100%;
  }

  .catalog__filters-buttons {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
}

@media (max-width: 680px) {
  .catalog__filters {
    border-radius: 18px;
  }

  .catalog__filters-title {
    font-size: 18px;
  }

  .catalog__filters-wrap {
    padding-top: 18px;
    grid-template-columns: 1fr;
  }

  .catalog__filters-apply {
    padding: 16px 24px;
    font-size: 17px;
  }

  .catalog__filters-reset {
    padding: 16px 24px;
    font-size: 17px;
  }

  .catalog__filters-buttons {
    padding-top: 18px;
  }

  .catalog__filters.open {
    padding: 20px;
    height: 610px;
    border-radius: 18px;
  }
}

/*===== Каталог Товары больше =====*/
.catalog__cards_search {
  display: none;
}

.catalog__cards-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--gray-line);
}

.catalog__cards .tovar-cards__card {
  width: auto;
}

.catalog__cards-bot {
  padding-top: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.catalog__cards-pages {
  display: flex;
  gap: 18px;
  align-items: end;
  color: rgba(38, 38, 38, 0.4);
  font-weight: 500;
  font-size: 28px;
  line-height: 100%;
}

.catalog__cards-page {
  width: 62px;
  aspect-ratio: 1;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-line);
  color: var(--black);
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.catalog__cards-page.active {
  background: var(--black);
  border: 0;
  color: var(--white);
}

.catalog__cards-buttons {
  display: flex;
  gap: 24px;
}

.catalog__cards-prev {
  width: 62px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid var(--gray-line);
  cursor: pointer;
  transition: 0.3s;
  transform: rotate(180deg);
}

.catalog__cards-next {
  width: 62px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid var(--gray-line);
  cursor: pointer;
  transition: 0.3s;
}

.catalog__cards-more {
  display: none;
}

.disabled {
  opacity: 0.4;
}

/*===== media Каталог Товары больше =====*/
@media (max-width: 1400px) {
  .catalog__cards-wrap {
    padding-bottom: 32px;
  }

  .catalog__cards-bot {
    padding-top: 32px;
  }
}

@media (max-width: 1160px) {
  .catalog__cards-wrap {
    gap: 24px;
  }

  .catalog__cards-page {
    width: 52px;
  }

  .catalog__cards-prev {
    width: 52px;
    height: 52px;
  }

  .catalog__cards-next {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 680px) {
  .catalog__cards-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .catalog__cards-bot {
    flex-direction: column;
    gap: 18px;
    padding-top: 24px;
    align-items: start;
  }

  .catalog__cards-pages {
    gap: 14px;
  }

  .catalog__cards-page {
    width: 46px;
    font-size: 20px;
  }

  .catalog__cards-buttons {
    display: none;
  }

  .catalog__cards-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    border: 1px solid var(--gray-line);
    border-radius: 100px;
    height: 46px;
    transition: 0.3s;
    cursor: pointer;
  }
}

/*===== Каталог Товары меньше =====*/
.catalog__cards.compact .catalog__cards_search {
  display: block;
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
}

.catalog__cards.compact .catalog__cards_search-name {
  font-size: 18px;
  line-height: 100%;
}

.catalog__cards.compact .catalog__cards_search-box {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 24px;
  padding-top: 18px;
}

.catalog__cards.compact .catalog__cards_search-inp {
  width: 100%;
  border: 1px solid var(--gray-line);
  border-radius: 65px;
  padding: 18px 20px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: var(--black);
}

.catalog__cards.compact .catalog__cards_search-inp::placeholder {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: rgba(15, 15, 15, 0.6);
}

.catalog__cards.compact .catalog__cards_search-inp:focus {
  border-color: var(--black);
}

.catalog__cards.compact .catalog__cards_search-btn {
  background: var(--gold);
  border-radius: 100px;
  width: 190px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
}

.catalog__cards.compact .catalog__cards_search-btn svg {
  display: none;
}

.catalog__cards.compact .catalog__cards_search-btn:hover {
  background: #f5e9c0;
}

.catalog__cards.compact .catalog__cards_search-btn:active {
  background: #ffeba5;
}

.catalog__cards.compact .catalog__cards-wrap {
  padding-top: 30px;
  grid-template-columns: 1fr;
  gap: 18px;
}

.catalog__cards.compact .tovar-cards__card {
  border: 1px solid var(--gray-line);
  border-radius: 24px;
  padding: 24px;
  background: transparent;
  display: grid;
  grid-template-columns: 2.2fr 2fr 1.5fr 1fr;
  gap: 14px;
}

.catalog__cards.compact .tovar-cards__card:hover {
  scale: 1;
  box-shadow: none;
}

.catalog__cards.compact .tovar-cards__card-label {
  display: none;
}

.catalog__cards.compact .tovar-cards__card-img {
  display: none;
}

.catalog__cards.compact .tovar-cards__card-tabs {
  display: none;
}

.catalog__cards.compact .tovar-cards__card-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  max-width: 330px;
  padding: 0;
}

.catalog__cards.compact .tovar-cards__card_sklad {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.catalog__cards.compact .tovar-cards__card_sklad-item {
  display: grid;
  grid-template-columns: 200px 76px;
  font-size: 16px;
  line-height: 100%;
}

.catalog__cards.compact .tovar-cards__card_sklad-box {
  display: flex;
}

.catalog__cards.compact .tovar-cards__card_sklad-line {
  margin: 0 4px;
  width: 100%;
  border-bottom: 1px solid var(--gray-line);
}

.catalog__cards.compact .tovar-cards__card-prise {
  padding-top: 17px;
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
}

.catalog__cards.compact .tovar-cards__card-add {
  background: var(--gray);
  border-radius: 100px;
  padding: 14px 24px;
  height: 48px;
  margin: 0;
  border-color: var(--gray);
}

.catalog__cards.compact .tovar-cards__card-add:hover {
  border-color: var(--gray-line);
}

.catalog__cards.compact .tovar-cards__card-add:active {
  border-color: var(--black);
}

.catalog__cards.compact .tovar-cards__card-add img {
  width: 20px;
  height: 20px;
}

/*===== media Каталог Товары меньше =====*/
@media (max-width: 1440px) {
  .catalog__cards.compact .catalog__cards_search {
    padding: 24px;
  }

  .catalog__cards.compact .catalog__cards_search-name {
    font-size: 16px;
  }

  .catalog__cards.compact .catalog__cards_search-box {
    padding-top: 16px;
  }

  .catalog__cards.compact .tovar-cards__card {
    grid-template-columns: 4fr 1.7fr;
    grid-template-areas: "c-name c-price" "c-sklad c-add";
  }

  .catalog__cards.compact .tovar-cards__card-title {
    font-size: 16px;
    max-width: 100%;
    grid-area: c-name;
  }

  .catalog__cards.compact .tovar-cards__card_sklad {
    grid-area: c-sklad;
    gap: 10px;
  }

  .catalog__cards.compact .tovar-cards__card_sklad-item {
    font-size: 15px;
  }

  .catalog__cards.compact .tovar-cards__card-prise {
    padding-top: 0;
    font-size: 18px;
  }

  .catalog__cards.compact .tovar-cards__card-add {
    margin-top: 4px;
    padding: 12px 24px;
    height: 40px;
    font-size: 16px;
  }

  .catalog__cards.compact .tovar-cards__card-add img {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 1160px) {
  .catalog__cards.compact .catalog__cards_search {
    padding: 18px;
  }

  .catalog__cards.compact .catalog__cards_search-box {
    padding-top: 14px;
  }

  .catalog__cards.compact .catalog__cards_search-inp {
    padding: 16px 20px;
  }

  .catalog__cards.compact .catalog__cards_search-btn {
    padding: 18px 24px;
  }

  .catalog__cards.compact .catalog__cards-wrap {
    padding-top: 24px;
    gap: 20px;
  }

  .catalog__cards.compact .tovar-cards__card {
    grid-template-columns: 4fr 1.7fr;
    grid-template-areas: "c-name c-price" "c-sklad c-add";
  }

  .catalog__cards.compact .tovar-cards__card-title {
    font-size: 16px;
    max-width: 100%;
    grid-area: c-name;
  }

  .catalog__cards.compact .tovar-cards__card_sklad {
    grid-area: c-sklad;
    gap: 10px;
  }

  .catalog__cards.compact .tovar-cards__card_sklad-item {
    font-size: 15px;
  }

  .catalog__cards.compact .tovar-cards__card-prise {
    padding-top: 0;
    font-size: 18px;
    grid-area: c-price;
  }

  .catalog__cards.compact .tovar-cards__card-add {
    margin-top: 4px;
    padding: 12px 24px;
    height: 40px;
    font-size: 16px;
    grid-area: c-add;
  }

  .catalog__cards.compact .tovar-cards__card-add img {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 680px) {
  .catalog__cards.compact .catalog__cards_search {
    border-radius: 18px;
  }

  .catalog__cards.compact .catalog__cards_search-box {
    padding-top: 12px;
    grid-template-columns: 1fr 48px;
  }

  .catalog__cards.compact .catalog__cards_search-inp {
    padding: 13px 20px;
  }

  .catalog__cards.compact .catalog__cards_search-btn {
    padding: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .catalog__cards.compact .catalog__cards_search-btn span {
    display: none;
  }

  .catalog__cards.compact .catalog__cards_search-btn svg {
    display: block;
  }

  .catalog__cards.compact .catalog__cards-wrap {
    padding-bottom: 28px;
  }

  .catalog__cards.compact .tovar-cards__card {
    border-radius: 18px;
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 12px;
    grid-template-areas: "c-name" "c-sklad" "c-price" "c-add";
  }

  .catalog__cards.compact .tovar-cards__card_sklad {
    padding-top: 2px;
    gap: 8px;
  }

  .catalog__cards.compact .tovar-cards__card_sklad-item {
    font-size: 14px;
  }

  .catalog__cards.compact .tovar-cards__card-prise {
    padding-top: 2px;
    font-size: 16px;
  }

  .catalog__cards.compact .tovar-cards__card-add {
    margin-top: 0;
  }

  .catalog__cards.compact .tovar-cards__card-add span {
    display: block;
  }
}

/*===== Описание товара =====*/
.tovar-str-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.tovar-str-item {
  background: var(--white);
  border-radius: 28px;
  padding: 52px;
  position: relative;
}

.tovar-str-item:first-child {
  overflow: hidden;
}

.tovar-str-item .swiper-pagination {
  bottom: 32px;
}

.tovar-str-item .swiper-pagination-bullet {
  background: var(--gray);
  opacity: 1;
  width: 16px;
  height: 16px;
}

.tovar-str-item .swiper-pagination-bullet-active {
  background: var(--black);
}

.tovar-str-slider {
  width: 100%;
  height: 100%;
}

.tovar-str-slide {
  position: relative;
}

.tovar-str-slide img {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  object-fit: cover;
  z-index: 5;
}

.tovar-str-label {
  position: absolute;
  top: 32px;
  left: 32px;
  background: var(--gold);
  border-radius: 35px;
  padding: 14px 18px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  z-index: 10;
}

.tovar-str-title {
  font-size: 28px;
  line-height: 140%;
}

.tovar-str-prise {
  padding-top: 18px;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  padding-bottom: 20px;
}

.tovar-str__box {
  margin-top: 20px;
  background: #f6f6f6;
  border-radius: 18px;
  padding: 32px;
}

.tovar-str__box-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  padding-bottom: 4px;
}

.tovar-str__box-item {
  padding-top: 20px;
  font-size: 18px;
  line-height: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 10px;
  align-items: baseline;
}

.tovar-str__box-name {
  display: flex;
  gap: 10px;
}

.tovar-str__box-name span {
  white-space: nowrap;
}

.tovar-str__box-line {
  width: 100%;
  border-bottom: 1px solid var(--gray-line);
}

.tovar-str__bot {
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.tovar-str__bot-add {
  background: var(--gold);
  border-radius: 100px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 18px;
  line-height: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.tovar-str__bot-add:hover {
  background: #f5e9c0;
}

.tovar-str__bot-add:active {
  background: #ffeba5;
}

.tovar-str__bot-box {
  display: flex;
  gap: 32px;
  align-items: center;
}

.tovar-str__bot-item {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tovar-str__bot-item.error .tovar-str__bot-count {
  border: 1px solid #e2731e;
}

.tovar-str__bot-minus {
  width: 36px;
  aspect-ratio: 1;
  background: var(--gray);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.tovar-str__bot-minus:active {
  background: var(--black);
}

.tovar-str__bot-minus:active svg path {
  stroke: var(--white);
}

.tovar-str__bot-plus {
  width: 36px;
  aspect-ratio: 1;
  background: var(--gray);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.tovar-str__bot-plus:active {
  background: var(--black);
}

.tovar-str__bot-plus:active svg path {
  stroke: var(--white);
}

.tovar-str__bot-area {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
}

.tovar-str__bot-count {
  border: 1px solid var(--gray-line);
  width: max-content;
  border-radius: 100px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  padding: 9px 12px;
  width: 60px;
  transition: 0.3s;
}

.tovar-str__bot-count:focus {
  border: 1px solid var(--black);
}

.tovar-str__bot-empty {
  position: absolute;
  box-shadow: 0 0 12px 0 var(--gray);
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  width: 386px;
  bottom: -20px;
  transform: translateY(100%);
  z-index: 50;
}

.tovar-str__bot-empty_title {
  font-size: 16px;
  line-height: 130%;
  color: #e2731e;
}

.tovar-str__bot-empty_descr {
  padding-top: 12px;
  font-size: 16px;
  line-height: 130%;
}

.tovar-str-more .tovar-cards__bot {
  justify-content: right;
}

/*===== media Описание товара =====*/
@media (max-width: 1400px) {
  .tovar-str-item {
    padding: 32px;
  }

  .tovar-str-item .swiper-pagination {
    bottom: 24px;
  }

  .tovar-str-item .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
  }

  .tovar-str-label {
    top: 24px;
    left: 26px;
    padding: 8px 10px;
    font-size: 15px;
  }

  .tovar-str-title {
    font-size: 20px;
  }

  .tovar-str-prise {
    padding-top: 14px;
    font-size: 20px;
    padding-bottom: 6px;
  }

  .tovar-str__box {
    margin-top: 14px;
    padding: 20px;
  }

  .tovar-str__box-title {
    font-size: 18px;
    padding-bottom: 2px;
  }

  .tovar-str__box-item {
    padding-top: 16px;
    font-size: 16px;
    grid-template-columns: 1.2fr 1fr;
  }

  .tovar-str__bot {
    padding-top: 20px;
    display: flex;
    flex-direction: column-reverse;
    align-items: start;
    gap: 26px;
  }

  .tovar-str__bot-add {
    padding: 18px 24px;
  }

  .tovar-str__bot-add img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 1160px) {
  .tovar-str-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tovar-str-item:first-child {
    aspect-ratio: 1;
  }

  .tovar-str-slide img {
    max-height: 90%;
  }

  .tovar-str__box-item {
    grid-template-columns: 2fr 1fr;
  }
}

@media (max-width: 680px) {
  .tovar-str-wrap {
    gap: 20px;
  }

  .tovar-str-item {
    border-radius: 24px;
    padding: 20px;
  }

  .tovar-str-item .swiper-pagination {
    bottom: 14px;
  }

  .tovar-str-item .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }

  .tovar-str-slide img {
    max-height: 95%;
  }

  .tovar-str-label {
    top: 14px;
    left: 14px;
    padding: 6px 8px;
    font-size: 12px;
  }

  .tovar-str-title {
    font-size: 18px;
  }

  .tovar-str-prise {
    font-size: 18px;
    padding-bottom: 4px;
  }

  .tovar-str__box {
    border-radius: 14px;
    padding: 16px;
  }

  .tovar-str__box-title {
    font-size: 16px;
    padding-bottom: 0;
  }

  .tovar-str__box-item {
    padding-top: 14px;
    font-size: 14px;
    grid-template-columns: 1fr 104px;
    gap: 4px;
  }

  .tovar-str__box-name {
    gap: 4px;
  }

  .tovar-str__bot {
    padding-top: 18px;
    gap: 18px;
  }

  .tovar-str__bot-add {
    padding: 16px 20px;
    width: 100%;
    font-size: 16px;
  }

  .tovar-str__bot-add img {
    width: 16px;
    height: 16px;
  }

  .tovar-str__bot-box {
    gap: 24px;
    justify-content: space-between;
    width: 100%;
  }

  .tovar-str__bot-item {
    border: 1px solid var(--gray-line);
    border-radius: 65px;
    padding: 6px;
  }

  .tovar-str__bot-item.error {
    border: 1px solid #e2731e;
  }

  .tovar-str__bot-item.error .tovar-str__bot-count {
    border: none;
  }

  .tovar-str__bot-minus {
    width: 32px;
    height: 32px;
  }

  .tovar-str__bot-plus {
    width: 32px;
    height: 32px;
  }

  .tovar-str__bot-area {
    font-size: 16px;
    gap: 4px;
    align-items: baseline;
  }

  .tovar-str__bot-area sup {
    font-size: 10px;
    line-height: 80%;
  }

  .tovar-str__bot-count {
    border: none;
    padding: 0;
    font-size: 16px;
    width: 25px;
  }

  .tovar-str__bot-count:focus {
    border: none;
  }

  .tovar-str__bot-empty {
    border-radius: 18px;
    padding: 20px;
    width: 350px;
    bottom: -10px;
    left: -20px;
  }

  .tovar-str__bot-empty_title {
    font-size: 15px;
  }

  .tovar-str__bot-empty_descr {
    font-size: 15px;
  }
}

/*===== zapros top =====*/
.rezult__top-wrap {
  padding-top: 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.rezult__top-count {
  font-family: var(--second-family);
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.01em;
}

.rezult__top-btn {
  border: 1px solid var(--gray-line);
  border-radius: 80px;
  padding: 12px 14px;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: 0.3s;
}

.rezult__top-btn:hover {
  background: var(--white);
  border: 1px solid var(--white);
}

.rezult__top-btn:active {
  background: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
}

/*===== media zapros top =====*/
@media (max-width: 1160px) {
  .rezult__top-wrap {
    gap: 24px;
  }

  .rezult__top-count {
    font-size: 16px;
  }

  .rezult__top-btn {
    padding: 10px 14px;
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .rezult__top-wrap {
    padding-top: 28px;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .rezult__top-btn {
    padding: 14px;
    width: 100%;
    text-align: center;
  }
}

/*===== zapros rezult =====*/
.rezult__content-wrap {
  padding-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.rezult__content-wrap .tovar-cards__card {
  width: auto;
}

/*===== media zapros top =====*/
@media (max-width: 1160px) {
  .rezult__content-wrap {
    padding-top: 24px;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .rezult__content-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/*===== about first screen =====*/
.about-first {
  position: relative;
  padding-bottom: 106px;
}

.about-first-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.about-first-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(38, 38, 38, 0.6);
}

.about-first .breadcrumbs {
  position: relative;
  z-index: 3;
  padding: 0;
}

.about-first .breadcrumbs-wrap {
  padding-top: 170px;
}

.about-first .breadcrumbs-link {
  color: var(--white);
}

.about-first .breadcrumbs-str {
  color: rgba(255, 255, 255, 0.4);
}

.about-first .breadcrumbs svg path {
  fill: var(--white);
  fill-opacity: 0.4;
}

.about-first__content {
  position: relative;
  z-index: 3;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.about-first__content-text {
  max-width: 610px;
}

.about-first__content-title {
  font-weight: 500;
  font-size: 72px;
  line-height: 110%;
}

.about-first__content-subtitle {
  padding-top: 45px;
  font-weight: 500;
  font-size: 42px;
  line-height: 110%;
}

.about-first__content-descr {
  padding-top: 24px;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
}

.about-first__content-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.about-first__content-images img {
  width: 100%;
  border-radius: 28px;
  aspect-ratio: 1;
}

/*===== media about first screen =====*/
@media (max-width: 1400px) {
  .about-first {
    padding-bottom: 80px;
  }

  .about-first .breadcrumbs-wrap {
    padding-top: 104px;
  }

  .about-first__content-text {
    max-width: 575px;
  }

  .about-first__content-title {
    font-size: 52px;
    line-height: 100%;
  }

  .about-first__content-subtitle {
    padding-top: 42px;
    font-size: 32px;
  }

  .about-first__content-descr {
    font-size: 18px;
  }
}

@media (max-width: 1160px) {
  .about-first {
    padding-bottom: 40px;
  }

  .about-first .breadcrumbs-wrap {
    padding-top: 85px;
  }

  .about-first__content {
    flex-direction: column;
    gap: 42px;
  }

  .about-first__content-text {
    max-width: 545px;
  }

  .about-first__content-title {
    font-size: 34px;
  }

  .about-first__content-subtitle {
    padding-top: 32px;
  }

  .about-first__content-descr {
    padding-top: 18px;
    font-size: 16px;
  }

  .about-first__content-images {
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .about-first .breadcrumbs-wrap {
    padding-top: 80px;
  }

  .about-first__content {
    gap: 32px;
  }

  .about-first__content-title {
    font-size: 26px;
  }

  .about-first__content-subtitle {
    padding-top: 28px;
    font-size: 20px;
  }

  .about-first__content-descr {
    padding-top: 14px;
  }

  .about-first__content-images {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .about-first__content-images img {
    border-radius: 24px;
  }

  .about-first__content-images img:nth-child(2) {
    display: none;
  }
}

/*===== about Как появилась идея =====*/
.about-idea-title {
  padding-top: 120px;
  font-weight: 500;
  font-size: 42px;
  line-height: 110%;
}

.about-idea__wrap {
  margin-top: 42px;
  border-radius: 24px;
  background: var(--white);
  padding: 52px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.about-idea__wrap-item {
  border-top: 1px solid var(--gray-line);
  padding-top: 42px;
}

.about-idea__wrap-item:nth-child(2) {
  margin-top: 119px;
}

.about-idea__wrap-item:nth-child(2) .about-idea__wrap-text {
  max-width: 100%;
}

.about-idea__wrap-text {
  font-size: 20px;
  line-height: 140%;
  color: var(--gray-text);
  max-width: 656px;
}

/*===== media Как появилась идея =====*/
@media (max-width: 1400px) {
  .about-idea-title {
    font-size: 36px;
  }

  .about-idea__wrap {
    padding: 42px;
  }

  .about-idea__wrap-item {
    padding-top: 36px;
  }

  .about-idea__wrap-item:nth-child(2) {
    margin-top: 105px;
  }

  .about-idea__wrap-text {
    font-size: 18px;
    max-width: 656px;
  }
}

@media (max-width: 1160px) {
  .about-idea-title {
    padding-top: 80px;
    font-size: 28px;
  }

  .about-idea__wrap {
    padding: 27px;
    grid-template-columns: 1fr;
    gap: 27px;
    margin-top: 32px;
  }

  .about-idea__wrap-item {
    padding-top: 0;
    border: none;
  }

  .about-idea__wrap-item:nth-child(2) {
    border-top: 1px solid var(--gray-line);
    margin-top: 0;
    padding-top: 27px;
    max-width: 99%;
  }

  .about-idea__wrap-text {
    font-size: 16px;
    max-width: 98%;
  }
}

@media (max-width: 680px) {
  .about-idea-title {
    padding-top: 60px;
    font-size: 24px;
    max-width: 90%;
  }

  .about-idea__wrap {
    margin-top: 28px;
    border-radius: 24px;
    padding: 24px;
    gap: 24px;
  }

  .about-idea__wrap-item:nth-child(2) {
    padding-top: 24px;
  }
}

/*===== about больше, чем материал =====*/
.about-material {
  padding-top: 120px;
}

.about-material-main {
  font-size: 58px;
  line-height: 110%;
  padding-bottom: 10px;
}

.about-material-second {
  font-size: 20px;
  line-height: 140%;
  color: var(--gray-text);
  width: 285px;
}

.about-material-container {
  text-align: right;
}

.about-material-box {
  display: flex;
  align-items: end;
  justify-content: right;
  gap: 122px;
  padding-right: 330px;
}

.about-material-box .about-material-main {
  width: 410px;
  line-height: 100%;
  padding: 0;
  text-align: left;
}

/*===== media больше, чем материал =====*/
@media (max-width: 1400px) {
  .about-material-main {
    font-size: 42px;
    padding-bottom: 14px;
  }

  .about-material-container {
    padding-right: 39px;
  }

  .about-material-box {
    padding-right: 95px;
    gap: 50px;
  }

  .about-material-box .about-material-main {
    width: 442px;
  }
}

@media (max-width: 1160px) {
  .about-material {
    padding-top: 80px;
  }

  .about-material-main {
    font-size: 32px;
    padding-bottom: 6px;
  }

  .about-material-second {
    text-align: left;
    width: 332px;
    font-size: 16px;
    margin-left: 20px;
  }

  .about-material-container {
    justify-self: right;
  }

  .about-material-container .about-material-main {
    width: 495px;
    text-align: left;
  }

  .about-material-box {
    padding-right: 70px;
    gap: 24px;
    flex-direction: column-reverse;
    align-items: center;
  }

  .about-material-box .about-material-main {
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 680px) {
  .about-material {
    padding-top: 60px;
  }

  .about-material-main {
    font-size: 26px;
    padding-bottom: 0px;
    display: inline;
  }

  .about-material-second {
    text-align: left;
    width: 99%;
    margin-left: 0;
  }

  .about-material-container {
    display: inline;
    padding: 0;
  }

  .about-material-container .about-material-main {
    width: 495px;
    text-align: left;
  }

  .about-material-box {
    padding: 0;
    gap: 18px;
    align-items: flex-start;
  }

  .about-material-box .about-material-main {
    text-align: left;
    width: 100%;
  }
}

/*===== about Главные принципы =====*/
.about-principles {
  margin-top: 120px;
  padding: 120px 0;
  background: var(--gray);
}

.about-principles-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 110%;
}

.about-principles-wrap {
  padding-top: 42px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-principles__top {
  display: grid;
  grid-template-columns: 3fr 3fr 2fr;
  gap: 30px;
}

.about-principles__top-item {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 42px;
  overflow: hidden;
}

.about-principles__top-item:last-child {
  aspect-ratio: 1;
}

.about-principles__top-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 110%;
}

.about-principles__top-descr {
  padding-top: 24px;
  font-size: 20px;
  line-height: 140%;
  color: var(--gray-text);
  width: 95%;
}

.about-principles__top-icon {
  position: absolute;
  bottom: 32px;
  right: 32px;
}

.about-principles__top-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-principles__bot {
  display: grid;
  grid-template-columns: 2fr 2fr 4fr;
  gap: 30px;
}

.about-principles__bot-item {
  background: var(--white);
  border-radius: 24px;
  padding: 42px;
  position: relative;
  overflow: hidden;
}

.about-principles__bot-item:nth-child(3) {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.about-principles__bot-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 110%;
  width: 90%;
}

.about-principles__bot-descr {
  padding-top: 24px;
  font-size: 20px;
  line-height: 140%;
  color: var(--gray-text);
  width: 95%;
}

.about-principles__bot-icon {
  position: absolute;
  top: 32px;
  right: 32px;
}

.about-principles__bot-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*===== media Главные принципы =====*/
@media (max-width: 1400px) {
  .about-principles {
    padding: 100px 0;
  }

  .about-principles-title {
    font-size: 36px;
  }

  .about-principles__top {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-principles__top-item {
    padding: 32px;
  }

  .about-principles__top-item:last-child {
    aspect-ratio: 1/1.013;
  }

  .about-principles__top-title {
    font-size: 22px;
  }

  .about-principles__top-descr {
    padding-top: 18px;
    font-size: 18px;
    width: 100%;
  }

  .about-principles__bot {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-principles__bot-item {
    padding: 32px;
  }

  .about-principles__bot-item:first-child .about-principles__bot-title {
    width: 70%;
  }

  .about-principles__bot-item:nth-child(2) {
    aspect-ratio: 1/1.013;
  }

  .about-principles__bot-item:nth-child(3) {
    display: block;
  }

  .about-principles__bot-title {
    font-size: 22px;
  }

  .about-principles__bot-descr {
    padding-top: 18px;
    font-size: 18px;
    width: 100%;
  }

  .about-principles__bot-icon {
    top: auto;
    bottom: 32px;
  }
}

@media (max-width: 1160px) {
  .about-principles {
    margin-top: 80px;
    padding: 80px 0;
  }

  .about-principles-title {
    font-size: 28px;
  }

  .about-principles-wrap {
    padding-top: 32px;
    gap: 24px;
  }

  .about-principles__top {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "a c" "b b";
    gap: 24px;
  }

  .about-principles__top-item {
    padding: 24px;
  }

  .about-principles__top-item:first-child {
    grid-area: a;
  }

  .about-principles__top-item:nth-child(2) {
    grid-area: b;
  }

  .about-principles__top-item:nth-child(2) .about-principles__top-descr {
    width: 76%;
  }

  .about-principles__top-item:nth-child(2) .about-principles__top-icon {
    bottom: auto;
    top: 24px;
  }

  .about-principles__top-item:last-child {
    aspect-ratio: 1;
    grid-area: c;
  }

  .about-principles__top-title {
    font-size: 18px;
  }

  .about-principles__top-descr {
    font-size: 16px;
  }

  .about-principles__top-icon {
    width: 50px;
    height: 50px;
    right: 24px;
    bottom: 24px;
  }

  .about-principles__bot {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "d e" "f f";
    gap: 24px;
  }

  .about-principles__bot-item {
    padding: 32px;
  }

  .about-principles__bot-item:first-child {
    grid-area: d;
  }

  .about-principles__bot-item:first-child .about-principles__bot-title {
    width: 100%;
  }

  .about-principles__bot-item:first-child .about-principles__bot-descr {
    width: 100%;
  }

  .about-principles__bot-item:nth-child(2) {
    aspect-ratio: 1;
    grid-area: e;
  }

  .about-principles__bot-item:nth-child(3) {
    display: block;
    grid-area: f;
  }

  .about-principles__bot-item:nth-child(3) .about-principles__bot-icon {
    bottom: auto;
    top: 24px;
  }

  .about-principles__bot-title {
    font-size: 18px;
  }

  .about-principles__bot-descr {
    font-size: 16px;
    width: 80%;
  }

  .about-principles__bot-icon {
    width: 50px;
    height: 50px;
    bottom: 24px;
    right: 24px;
  }
}

@media (max-width: 680px) {
  .about-principles {
    margin-top: 60px;
    padding: 50px 0;
  }

  .about-principles-title {
    font-size: 24px;
    width: 80%;
  }

  .about-principles-wrap {
    padding-top: 28px;
    gap: 20px;
  }

  .about-principles__top {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b";
    gap: 20px;
  }

  .about-principles__top-item {
    padding: 24px;
  }

  .about-principles__top-item:nth-child(2) .about-principles__top-icon {
    top: auto;
    bottom: 24px;
  }

  .about-principles__top-item:last-child {
    display: none;
  }

  .about-principles__top-descr {
    width: 90%;
  }

  .about-principles__top-icon {
    width: 40px;
    height: 40px;
  }

  .about-principles__bot {
    grid-template-columns: 1fr;
    grid-template-areas: "d" "f";
    gap: 20px;
  }

  .about-principles__bot-item {
    padding: 24px;
  }

  .about-principles__bot-item:first-child .about-principles__bot-descr {
    width: 90%;
  }

  .about-principles__bot-item:nth-child(2) {
    display: none;
  }

  .about-principles__bot-item:nth-child(3) .about-principles__bot-icon {
    bottom: 24px;
    top: auto;
  }

  .about-principles__bot-descr {
    width: 90%;
  }

  .about-principles__bot-icon {
    width: 40px;
    height: 40px;
  }
}

/*===== media map =====*/
.about-map-box-title {
  padding-top: 120px;
  font-weight: 500;
  font-size: 42px;
  line-height: 110%;
}

.about-map-box-wrap {
  padding-top: 42px;
  position: relative;
}

.about-map-box__list {
  position: absolute;
  top: 84px;
  right: 42px;
  z-index: 2;
  background: var(--white);
  border-radius: 18px;
}

.about-map-box__list-scroll {
  height: 374px;
  overflow-y: auto;
}

.about-map-box__list-title {
  padding: 32px 0 0 32px;
  font-size: 18px;
  line-height: 100%;
}

.about-map-box__list-select {
  margin: 12px 32px 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--gray-line);
  border-radius: 65px;
  padding: 18px 20px;
  width: 313px;
  height: 52px;
  transition: 0.3s;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}

.about-map-box__list-select_wrap {
  position: relative;
}

.about-map-box__list-select.open svg {
  transform: rotate(180deg);
}

.about-map-box__list-menu {
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.08);
  background: var(--white);
  border-radius: 20px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 10px;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  top: 60px;
  z-index: 10;
}

.about-map-box__list-menu.open {
  display: flex;
}

.about-map-box__list-var {
  border: 1px solid var(--gray-line);
  border-radius: 40px;
  padding: 10px 12px;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.about-map-box__list-var:hover {
  background: var(--gray);
  border: 1px solid var(--gray);
}

.about-map-box__list-var:active {
  background: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
}

.about-map-box__list-item {
  padding: 18px 32px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.about-map-box__list-item:hover {
  background: var(--gray);
}

.about-map-box__list-item:last-child {
  padding-bottom: 18px;
  border-radius: 0 0 18px 18px;
}

.about-map-box__list-item:last-child .about-map-box__list-item_line {
  display: none;
}

.about-map-box__list-item_line {
  width: 100%;
  height: 1px;
  background: var(--gray-line);
  margin-top: 18px;
}

.about-map-box__list-name {
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
}

.about-map-box__list-adr {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  padding-top: 12px;
}

.about-map-box__map {
  position: relative;
  overflow: hidden;
  height: 620px;
  border-radius: 24px;
}

.about-map-box__map-info:not(.active) {
  display: none;
}

.about-map-box__map-info {
  position: absolute;
  top: 42px;
  left: 42px;
  z-index: 2;
  border-radius: 18px;
  background: var(--white);
  padding: 32px;
  width: 380px;
  display: block;
}

.about-map-box__map-close {
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
}

.about-map-box__map-close path {
  transition: 0.3s;
}

.about-map-box__map-close:hover path {
  fill: var(--black);
}

.about-map-box__map-name {
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
  padding-bottom: 8px;
}

.about-map-box__map-box {
  padding-top: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-map-box__map-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
}

.about-map-box__map-map {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

/*===== media map =====*/
@media (max-width: 1400px) {
  .about-map-box-title {
    font-size: 36px;
  }

  .about-map-box__list {
    top: 66px;
    right: 24px;
  }

  .about-map-box__list-title {
    padding: 24px 0 0 24px;
  }

  .about-map-box__list-scroll {
    height: 432px;
  }

  .about-map-box__list-select {
    margin: 12px 24px 10px 24px;
    width: 332px;
  }

  .about-map-box__list-item {
    padding: 14px 24px 0 24px;
  }

  .about-map-box__list-name {
    font-size: 16px;
  }

  .about-map-box__list-adr {
    font-size: 15px;
    padding-top: 10px;
  }

  .about-map-box__map-info {
    top: 24px;
    left: 24px;
    padding: 24px;
  }

  .about-map-box__map-close {
    top: 18px;
    right: 18px;
  }

  .about-map-box__map-name {
    font-size: 20px;
    padding-bottom: 4px;
  }

  .about-map-box__map-box img {
    width: 20px;
    height: 20px;
  }

  .about-map-box__map-text {
    font-size: 16px;
  }
}

@media (max-width: 1160px) {
  .about-map-box-title {
    padding-top: 80px;
    font-size: 28px;
  }

  .about-map-box-wrap {
    padding-top: 32px;
  }

  .about-map-box__list {
    position: static;
  }

  .about-map-box__list-scroll {
    height: 140px;
  }

  .about-map-box__list-select {
    width: 93%;
    margin-bottom: 12px;
  }

  .about-map-box__map {
    margin-top: 24px;
  }
}

@media (max-width: 680px) {
  .about-map-box-title {
    padding-top: 60px;
    font-size: 24px;
    width: 80%;
  }

  .about-map-box-wrap {
    padding-top: 24px;
  }

  .about-map-box__list-title {
    font-size: 16px;
  }

  .about-map-box__list-scroll {
    height: 245px;
  }

  .about-map-box__list-select {
    margin-bottom: 5px;
    width: 86%;
  }

  .about-map-box__map {
    margin-top: 20px;
    height: 430px;
  }

  .about-map-box__map-info {
    left: 14px;
    top: auto;
    bottom: 14px;
    width: 322px;
    padding: 20px;
  }

  .about-map-box__map-close {
    top: 16px;
    right: 16px;
    height: 12px;
    width: 12px;
  }

  .about-map-box__map-name {
    font-size: 16px;
    padding-bottom: 5px;
  }

  .about-map-box__map-box {
    gap: 10px;
    padding-top: 12px;
  }

  .about-map-box__map-box img {
    width: 18px;
    height: 18px;
  }

  .about-map-box__map-text {
    font-size: 14px;
  }
}

/*===== about Наши награды и сертификаты =====*/
.about-sertificates-title {
  padding-top: 120px;
  font-weight: 500;
  font-size: 42px;
  line-height: 110%;
}

.about-sertificates__wrap {
  max-width: 1680px;
  padding: 0 40px;
  margin: 0 auto;
  padding-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.about-sertificates__wrap-img {
  width: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 18px;
}

.about-sertificates__wrap-img:hover {
  scale: 1.05;
  box-shadow: 0 4px 64px 0 #eeede8;
}

.about-sertificates__buttons {
  display: none;
}

/*===== media Наши награды и сертификаты =====*/
@media (max-width: 1400px) {
  .about-sertificates-title {
    font-size: 36px;
  }
}

@media (max-width: 1160px) {
  .about-sertificates-title {
    padding-top: 80px;
    font-size: 28px;
  }

  .about-sertificates__wrap {
    padding-top: 32px;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .about-sertificates-title {
    padding-top: 60px;
    font-size: 24px;
  }

  .about-sertificates__wrap {
    padding-top: 28px;
    top: 114px;
    display: flex;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .about-sertificates__wrap-img {
    width: 213px;
    scroll-snap-align: center;
  }

  .about-sertificates__buttons {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 18px;
    padding-top: 24px;
  }

  .about-sertificates__buttons-prev {
    border-radius: 100px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg);
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid var(--gray-line);
  }

  .about-sertificates__buttons-prev:hover {
    background: var(--black);
    border: 1px solid var(--black);
  }

  .about-sertificates__buttons-prev:hover svg path {
    fill: var(--white);
    fill-opacity: 1;
  }

  .about-sertificates__buttons-next {
    border-radius: 100px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid var(--gray-line);
  }

  .about-sertificates__buttons-next:hover {
    background: var(--black);
    border: 1px solid var(--black);
  }

  .about-sertificates__buttons-next:hover svg path {
    fill: var(--white);
    fill-opacity: 1;
  }
}

@media (max-width: 576px) {
  .about-sertificates__wrap {
    padding: 28px 20px 0 20px;
  }
}

/*===== about модальное окно для сертификатов =====*/
.about-sertificates__modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(15, 15, 15, 0.6);
}

.about-sertificates__modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80vh;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.about-sertificates__modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  cursor: pointer;
  border-radius: 78px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
}

.reviews__wrap {
  padding-top: 42px;
  column-count: 3;
  column-gap: 30px;
}

.reviews__wrap-item {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 32px;
  margin-bottom: 30px;
  page-break-inside: avoid;
  display: none;
  max-height: 319px;
  overflow: hidden;
  transition: max-height 0.3s;
}

.reviews__wrap-item:hover {
  max-height: 1000px;
  box-shadow: 0 4px 64px 0 #eeede8;
}

.reviews__wrap-item:hover .reviews__wrap-text {
  max-height: 1000px;
}

.reviews__wrap-item.visible {
  display: block;
}

.reviews__wrap-top {
  display: flex;
  align-items: center;
  gap: 24px;
}

.reviews__wrap-person {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 80px;
  aspect-ratio: 1;
  border-radius: 100%;
}

.reviews__wrap-name {
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
}

.reviews__wrap-date {
  padding-top: 12px;
  font-size: 18px;
  line-height: 100%;
  color: rgba(15, 15, 15, 0.3);
}

.reviews__wrap-stars {
  padding-top: 20px;
}

.reviews__wrap-text {
  padding-top: 14px;
  font-size: 18px;
  line-height: 140%;
  color: var(--gray-text);
  overflow: hidden;
  max-height: 115px;
  transition: max-height 0.3s;
}

/*===== media Отзывы =====*/
@media (max-width: 1400px) {
  .reviews__wrap-item {
    padding: 24px;
  }

  .reviews__wrap-top {
    gap: 18px;
  }

  .reviews__wrap-person {
    width: 60px;
  }

  .reviews__wrap-name {
    font-size: 18px;
  }

  .reviews__wrap-date {
    padding-top: 10px;
    font-size: 16px;
  }

  .reviews__wrap-stars {
    padding-top: 16px;
  }

  .reviews__wrap-stars img {
    width: 132px;
    height: 24px;
  }
}

@media (max-width: 1160px) {
  .reviews__wrap {
    padding-top: 32px;
    column-gap: 24px;
    column-count: 2;
  }

  .reviews__wrap-item {
    margin-bottom: 24px;
  }

  .reviews__wrap-top {
    gap: 16px;
  }

  .reviews__wrap-person {
    width: 50px;
  }

  .reviews__wrap-name {
    font-size: 16px;
  }

  .reviews__wrap-date {
    font-size: 14px;
  }

  .reviews__wrap-stars img {
    width: 122px;
  }

  .reviews__wrap-text {
    font-size: 16px;
    max-height: 107px;
  }
}

@media (max-width: 680px) {
  .reviews__wrap {
    padding-top: 28px;
    column-gap: 0;
    column-count: 1;
  }

  .reviews__wrap-item {
    margin-bottom: 20px;
  }
}

/*===== Показать еще =====*/
.reviews-more {
  display: none;
  justify-content: center;
}

.reviews-more-btn {
  margin-top: 42px;
  border: 1px solid var(--gray-line);
  border-radius: 100px;
  padding: 22px 28px;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.reviews-more-btn:hover {
  background: var(--white);
  border: 1px solid var(--white);
}

.reviews-more-btn:active {
  background: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
}

/*===== media Показать еще =====*/
@media (max-width: 1160px) {
  .reviews-more-btn {
    margin-top: 18px;
    padding: 16px 20px;
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .reviews-more-btn {
    margin-top: 8px;
  }
}

/*===== Оставьте отзыв =====*/
.reviews-form__wrap {
  margin-top: 120px;
  background: var(--white);
  border-radius: 24px;
  padding: 52px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.reviews-form__wrap-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 110%;
  max-width: 440px;
}

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

.form__dooble-input {
  border: 1px solid var(--gray-line);
  border-radius: 65px;
  padding: 20px 24px;
}

.form__dooble-input:focus {
  border: 1px solid var(--black);
}

.form-input {
  margin-top: 14px;
  border: 1px solid var(--gray-line);
  border-radius: 18px;
  padding: 24px;
  width: 100%;
  height: 112px;
  outline: none;
  resize: none;
}

.form-input:focus {
  border: 1px solid var(--black);
}

.form-btn {
  margin-top: 24px;
  background: var(--gold);
  width: 359px;
  height: 58px;
  border-radius: 100px;
  transition: 0.3s;
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
}

.form-btn:hover {
  background: #f5e9c0;
}

.form-btn:active {
  background: #ffeba5;
}

.form__box {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 12px;
}

.form__box-check {
  display: none;
}

.form__box-check:checked~.form__box-checkmark::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  display: block;
  border: 2px solid var(--black);
  border-width: 0 0 3px 3px;
  transform: rotate(-45deg);
  height: 60%;
  width: 90%;
}

.form__box-checkmark {
  position: relative;
}

.form__box-checkmark::after {
  content: "";
  display: block;
  border: 1px solid var(--gray-line);
  border-radius: 3px;
  width: 14px;
  height: 14px;
  background: transparent;
}

.form__box-text {
  color: var(--gray-text);
  font-size: 14px;
  line-height: 130%;
}

.form__box-text a {
  display: inline;
  color: var(--gray-text);
}

.form__box-text a:hover {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.just-validate-error-label {
  display: none;
}

.just-validate-error-field {
  border: 1px solid #e01616 !important;
}

.just-validate-error-field::placeholder {
  color: #e01616 !important;
}

.just-validate-error-field~.form__box-checkmark::after {
  border: 1px solid #e01616;
}

/*===== media Оставьте отзыв =====*/
@media (max-width: 1400px) {
  .reviews-form__wrap {
    padding: 42px;
  }

  .reviews-form__wrap-title {
    font-size: 36px;
  }
}

@media (max-width: 1160px) {
  .reviews-form__wrap {
    margin-top: 80px;
    padding: 32px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reviews-form__wrap-title {
    font-size: 28px;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .reviews-form__wrap {
    margin-top: 60px;
    padding: 24px;
    gap: 28px;
  }

  .reviews-form__wrap-title {
    font-size: 24px;
  }

  .form__dooble {
    grid-template-columns: 1fr;
  }

  .form__dooble-input {
    padding: 14px 18px;
  }

  .form-input {
    margin-top: 12px;
    padding: 18px;
    height: 100px;
  }

  .form-btn {
    margin-top: 14px;
    width: 100%;
    height: 52px;
    font-size: 16px;
  }

  .form__box-text {
    font-size: 13px;
  }
}

/*===== Галерея =====*/
.gallary__wrap {
  padding-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.gallary__wrap-item {
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1;
  display: none;
}

.gallary__wrap-item:hover img {
  scale: 1.05;
}

.gallary__wrap-item img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: 0.3s;
  object-fit: cover;
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
}

.gallary__wrap-item.visible {
  display: block;
}

.gallary__wrap-text {
  display: none;
}

/*===== media Отзывы =====*/
@media (max-width: 1400px) {
  .gallary__wrap {
    padding-top: 42px;
  }
}

@media (max-width: 1160px) {
  .gallary__wrap {
    padding-top: 32px;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
  }

  .gallary__wrap-item {
    border-radius: 24px;
  }
}

@media (max-width: 1160px) {
  .gallary__wrap {
    padding-top: 28px;
    grid-template-columns: repeat(2, 1fr);
  }
}

/*===== Показать еще =====*/
.gallary-more {
  display: none;
  justify-content: center;
}

.gallary-more-btn {
  margin-top: 42px;
  border: 1px solid var(--gray-line);
  border-radius: 100px;
  padding: 22px 28px;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.gallary-more-btn:hover {
  background: var(--white);
  border: 1px solid var(--white);
}

.gallary-more-btn:active {
  background: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
}

/*===== media Показать еще =====*/
@media (max-width: 1160px) {
  .gallary-more-btn {
    margin-top: 18px;
    padding: 16px 20px;
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .gallary -more-btn {
    margin-top: 8px;
  }
}

/*===== gallary модальное окно =====*/
.gallary-sertificates__modal {
  position: fixed;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(15, 15, 15, 0.6);
}

.gallary-sertificates__modal-wrap {
  position: relative;
  max-width: 876px;
  max-height: 95%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 42px;
}

.gallary-sertificates__modal-close {
  position: absolute;
  top: 0;
  right: -68px;
  width: 44px;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.gallary-sertificates__modal-close:hover {
  background: var(--black);
}

.gallary-sertificates__modal-prev {
  position: absolute;
  top: 50%;
  left: -88px;
  transform: translateY(-50%);
  border-radius: 100px;
  border: 1px solid var(--white);
  width: 46px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.gallary-sertificates__modal-prev svg path {
  transition: 0.3s;
}

.gallary-sertificates__modal-prev:hover {
  background: var(--white);
}

.gallary-sertificates__modal-prev:hover svg path {
  fill: var(--black);
}

.gallary-sertificates__modal-next {
  position: absolute;
  top: 50%;
  right: -88px;
  transform: translateY(-50%) rotate(180deg);
  border-radius: 100px;
  border: 1px solid var(--white);
  width: 46px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.gallary-sertificates__modal-next svg path {
  transition: 0.3s;
}

.gallary-sertificates__modal-next:hover {
  background: var(--white);
}

.gallary-sertificates__modal-next:hover svg path {
  fill: var(--black);
}

.gallary-sertificates__modal-content {
  width: 100vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 24px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.gallary-sertificates__modal-text {
  color: var(--white);
  font-size: 24px;
  line-height: 140%;
  text-align: center;
}

/*===== media gallary модальное окно =====*/
@media (max-width: 1400px) {
  .gallary-sertificates__modal-wrap {
    max-width: 761px;
    gap: 24px;
  }

  .gallary-sertificates__modal-text {
    font-size: 18px;
    width: 431px;
  }
}

@media (max-width: 1160px) {
  .gallary-sertificates__modal-wrap {
    max-width: 536px;
    gap: 18px;
  }

  .gallary-sertificates__modal-text {
    width: 380px;
  }
}

@media (max-width: 680px) {
  .gallary-sertificates__modal {
    padding: 0;
  }

  .gallary-sertificates__modal-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: ". close" "content content" "text text" "prev next";
    margin: 0 20px;
  }

  .gallary-sertificates__modal-content {
    grid-area: content;
    margin: 0 auto;
  }

  .gallary-sertificates__modal-close {
    position: static;
    width: 36px;
    grid-area: close;
    justify-self: right;
  }

  .gallary-sertificates__modal-text {
    width: 95%;
    grid-area: text;
  }

  .gallary-sertificates__modal-prev {
    position: static;
    transform: translate(0);
    grid-area: prev;
    justify-self: left;
  }

  .gallary-sertificates__modal-next {
    position: static;
    transform: rotate(180deg);
    grid-area: next;
    justify-self: right;
  }
}


.form-error-plash {
  background: rgba(224, 22, 22, 0.1);
  border-radius: 14px;
  padding: 18px 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 57px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0.02em;
  color: #e01616;
  text-align: center;
  margin-top: 24px;
}

.form-success-plash {
  background: #E6FFE5;
  border-radius: 14px;
  padding: 18px 8px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0.02em;
  color: #00B33C;
  text-align: center;
  margin-top: 24px;
}

/*===== Доставка и оплата =====*/
.delivery__wrap {
  padding-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.delivery__wrap-item {
  background: var(--white);
  border-radius: 24px;
  padding: 42px;
  position: relative;
}

.delivery__wrap-item img {
  position: absolute;
  top: 42px;
  right: 42px;
}

.delivery__wrap-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 110%;
  padding-bottom: 24px;
}

.delivery__wrap-ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 90%;
}

.delivery__wrap-li {
  font-size: 20px;
  line-height: 120%;
  display: flex;
  gap: 18px;
  align-items: center;
}

.delivery__wrap-li::before {
  content: "";
  background-image: url(/local/templates/.default/images/marker-li.svg);
  display: block;
  height: 18px;
  width: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.delivery__wrap-text {
  font-size: 20px;
  line-height: 120%;
  width: 90%;
}

.delivery__wrap-text a {
  display: inline;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.delivery__wrap-text p {
  padding-top: 24px;
}

.delivery__wrap-text p:first-child {
  padding: 0;
}

/*===== media Доставка и оплата =====*/
@media (max-width: 1400px) {
  .delivery__wrap {
    padding-top: 42px;
  }

  .delivery__wrap-title {
    font-size: 24px;
  }

  .delivery__wrap-li {
    font-size: 18px;
  }

  .delivery__wrap-text {
    font-size: 18px;
    width: 75%;
  }

  .delivery__wrap-text p {
    padding-top: 18px;
  }
}

@media (max-width: 1160px) {
  .delivery__wrap {
    padding-top: 32px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .delivery__wrap-item {
    padding: 32px;
  }

  .delivery__wrap-item img {
    top: 32px;
    right: 32px;
    height: 50px;
    width: 50px;
  }

  .delivery__wrap-title {
    font-size: 20px;
  }

  .delivery__wrap-ul {
    gap: 14px;
  }

  .delivery__wrap-li {
    font-size: 16px;
  }

  .delivery__wrap-li::before {
    width: 14px;
    height: 14px;
  }

  .delivery__wrap-text {
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .delivery__wrap {
    padding-top: 28px;
    gap: 20px;
  }

  .delivery__wrap-item {
    padding: 24px;
  }

  .delivery__wrap-item img {
    position: static;
    width: 40px;
    height: 40px;
  }

  .delivery__wrap-title {
    padding: 24px 0 18px 0;
    font-size: 18px;
  }

  .delivery__wrap-ul {
    width: 100%;
    gap: 12px;
  }

  .delivery__wrap-li {
    display: grid;
    grid-template-columns: 14px 1fr;
  }

  .delivery__wrap-text {
    width: 100%;
  }

  .delivery__wrap-text p {
    padding-top: 16px;
  }
}

/*===== Акции =====*/
.sale_wrap {
  padding-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 42px;
}

.sale__item {
  display: none;
}

.sale__item:hover img {
  scale: 1.05;
}

.sale__item:hover .sale__item-name {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.sale__item-img {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1.77/1;
}

.sale__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.sale__item-name {
  padding-top: 24px;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
}

.sale__item-date {
  padding-top: 10px;
  color: rgba(15, 15, 15, 0.4);
  font-size: 18px;
  line-height: 140%;
}

.sale__item.visible {
  display: block;
}

/*===== media Акции =====*/
@media (max-width: 1400px) {
  .sale_wrap {
    padding-top: 42px;
  }

  .sale__item-name {
    font-size: 18px;
  }

  .sale__item-date {
    font-size: 16px;
  }
}

@media (max-width: 1160px) {
  .sale_wrap {
    padding-top: 32px;
    column-gap: 24px;
    row-gap: 32px;
  }

  .sale__item-name {
    padding-top: 16px;
    font-size: 16px;
  }

  .sale__item-date {
    padding-top: 6px;
    font-size: 15px;
  }
}

@media (max-width: 680px) {
  .sale_wrap {
    padding-top: 28px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/*===== Показать еще =====*/
.sale-more {
  display: none;
  justify-content: center;
}

.sale-more-btn {
  margin-top: 42px;
  border: 1px solid var(--gray-line);
  border-radius: 100px;
  padding: 22px 28px;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.sale-more-btn:hover {
  background: var(--white);
  border: 1px solid var(--white);
}

.sale-more-btn:active {
  background: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
}

/*===== media Показать еще =====*/
@media (max-width: 1160px) {
  .sale-more-btn {
    margin-top: 18px;
    padding: 16px 20px;
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .sale-more-btn {
    margin-top: 8px;
  }
}

/*===== Описание акции =====*/
.sale-str-wrap {
  padding-top: 52px;
  display: grid;
  grid-template-columns: 989px 1fr;
  gap: 30px;
}

.sale-str__content img {
  border-radius: 24px;
  width: 100%;
  object-fit: cover;
  margin-top: 52px;
}

.sale-str__content img:first-child {
  margin: 0;
}

.sale-str__content-text {
  padding-top: 52px;
  font-size: 20px;
  line-height: 150%;
}

.sale-str__content-bot {
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: var(--gray-text);
}

.sale-str__content-container {
  position: relative;
}

.sale-str__content-share {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.sale-str__content-share-svg {
  transition: 0.3s;
}

.sale-str__content-share-svg path {
  transition: 0.3s;
}

.sale-str__content-share:hover span {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--black);
}

.sale-str__content-share:hover .sale-str__content-share-svg {
  scale: 1.1;
}

.sale-str__content-share:hover .sale-str__content-share-svg path {
  fill: var(--black);
}

.sale-str__content-box {
  position: absolute;
  left: 0;
  bottom: -18px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.08);
  background: var(--white);
  border-radius: 20px;
  padding: 16px;
  display: none;
  align-items: center;
  gap: 10px;
  transform: translateY(100%);
}

.sale-str__content-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid var(--gray-line);
  width: 56px;
  height: 56px;
  transition: 0.3s;
}

.sale-str__content-box a svg path {
  transition: 0.3s;
}

.sale-str__content-box a:hover {
  border-color: var(--black);
  background: var(--black);
}

.sale-str__content-box a:hover svg path {
  fill: var(--white);
}

.sale-str__content-box.open {
  display: flex;
}

.sale-str__form {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  width: max-content;
  height: max-content;
  justify-self: right;
  position: sticky;
  top: 130px;
  width: 377px;
}

.sale-str__form-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
}

.sale-str__form-subtitle {
  padding-top: 14px;
  color: var(--gray-text);
  font-size: 16px;
  line-height: 140%;
}

.sale-str__form-box {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sale-str__form-input {
  border: 1px solid var(--gray-line);
  border-radius: 65px;
  padding: 18px 20px;
  height: 52px;
}

.sale-str__form-input:focus {
  border: 1px solid var(--black);
}

.sale-str__form-btn {
  background: var(--gold);
  border-radius: 100px;
  padding: 20px 24px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 14px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: var(--black);
}

.sale-str__form-btn:hover {
  background: #f5e9c0;
}

.sale-str__form-btn:active {
  background: #ffeba5;
}

.sale-str__form-bot {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 12px;
}

.sale-str__form-check {
  display: none;
}

.sale-str__form-check:checked~.sale-str__form-checkmark::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  display: block;
  border: 2px solid var(--black);
  border-width: 0 0 3px 3px;
  transform: rotate(-45deg);
  height: 60%;
  width: 90%;
}

.sale-str__form-checkmark {
  position: relative;
}

.sale-str__form-checkmark::after {
  content: "";
  display: block;
  border: 1px solid var(--gray-line);
  border-radius: 3px;
  width: 14px;
  height: 14px;
  background: transparent;
}

.sale-str__form-text {
  color: var(--gray-text);
  font-size: 14px;
  line-height: 130%;
  width: 100%;
}

.sale-str__form-text a {
  display: inline;
  color: var(--gray-text);
}

.sale-str__form-text a:hover {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.just-validate-error-field~.sale-str__form-checkmark::after {
  border: 1px solid #e01616;
}

/*===== media Описание акции =====*/
@media (max-width: 1400px) {
  .sale-str-wrap {
    padding-top: 42px;
    display: grid;
    grid-template-columns: 739px 1fr;
  }

  .sale-str__content img {
    margin-top: 42px;
  }

  .sale-str__content-text {
    padding-top: 42px;
  }

  .sale-str__content-bot {
    margin-top: 42px;
  }

  .sale-str__form {
    padding: 24px;
    width: 277px;
  }

  .sale-str__form-title {
    font-size: 20px;
  }

  .sale-str__form-subtitle {
    font-size: 15px;
  }

  .sale-str__form-box {
    padding-top: 20px;
  }

  .sale-str__form-btn {
    padding: 18px 24px;
    font-size: 16px;
  }
}

@media (max-width: 1160px) {
  .sale-str-wrap {
    padding-top: 32px;
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .sale-str__content img {
    margin-top: 32px;
  }

  .sale-str__content-text {
    padding-top: 32px;
    font-size: 18px;
  }

  .sale-str__content-bot {
    padding-top: 28px;
    font-size: 16px;
  }

  .sale-str__content-bot svg {
    height: 18px;
    width: 18px;
  }

  .sale-str__form {
    padding: 32px;
    width: 100%;
  }

  .sale-str__form-title {
    font-size: 28px;
  }

  .sale-str__form-subtitle {
    padding-top: 14px;
    font-size: 18px;
  }

  .sale-str__form-box {
    padding-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .sale-str__form-btn {
    margin-top: 24px;
    padding: 20px 24px;
    font-size: 18px;
    width: 359px;
  }

  .sale-str__form-text {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .sale-str-wrap {
    padding-top: 28px;
    gap: 60px;
  }

  .sale-str__content-text {
    font-size: 16px;
  }

  .sale-str__content-bot {
    margin-top: 32px;
    padding-top: 24px;
    font-size: 14px;
  }

  .sale-str__content-bot svg {
    height: 16px;
    width: 16px;
  }

  .sale-str__form {
    padding: 24px;
  }

  .sale-str__form-title {
    font-size: 24px;
  }

  .sale-str__form-subtitle {
    padding-top: 12px;
  }

  .sale-str__form-box {
    padding-top: 20px;
    grid-template-columns: 1fr;
  }

  .sale-str__form-btn {
    padding: 18px 24px;
    font-size: 16px;
    width: 100%;
  }

  .sale-str__form-text {
    font-size: 13px;
  }
}

/*===== Другие акции =====*/
.sale-other-title {
  padding-top: 120px;
  font-weight: 500;
  font-size: 42px;
  line-height: 110%;
}

.sale-other-wrap {
  padding-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sale-other__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}

.sale-other__item:hover img {
  scale: 1.1;
}

.sale-other__item:hover .sale-other__item-name {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.sale-other__item-img {
  overflow: hidden;
  border-radius: 16px;
}

.sale-other__item-img img {
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.sale-other__item-name {
  padding-top: 24px;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
}

.sale-other__item-date {
  font-size: 18px;
  line-height: 140%;
  color: rgba(15, 15, 15, 0.4);
}

/*===== media ОписДругиеание акции =====*/
@media (max-width: 1400px) {
  .sale-other-title {
    font-size: 36px;
  }

  .sale-other__item-name {
    font-size: 18px;
  }

  .sale-other__item-date {
    font-size: 16px;
  }
}

@media (max-width: 1160px) {
  .sale-other-title {
    padding-top: 80px;
    font-size: 28px;
  }

  .sale-other-wrap {
    padding-top: 32px;
    gap: 24px;
  }

  .sale-other__item {
    gap: 6px;
  }

  .sale-other__item-img {
    border-radius: 14px;
  }

  .sale-other__item-name {
    padding-top: 16px;
    font-size: 16px;
  }

  .sale-other__item-date {
    font-size: 15px;
  }
}

@media (max-width: 680px) {
  .sale-other-title {
    padding-top: 60px;
    font-size: 24px;
  }

  .sale-other-wrap {
    padding-top: 28px;
    grid-template-columns: 1fr;
  }

  .sale-other__item:last-child {
    display: none;
  }
}

/*===== Описание акции =====*/
.new-str-wrap {
  padding-top: 52px;
  display: grid;
  grid-template-columns: 989px 1fr;
  gap: 30px;
}

.new-str__content img {
  border-radius: 24px;
  width: 100%;
  object-fit: cover;
  margin-top: 52px;
}

.new-str__content img:first-child {
  margin: 0;
}

.new-str__content-text {
  padding-top: 52px;
  font-size: 20px;
  line-height: 150%;
}

.new-str__content-bot {
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: var(--gray-text);
}

.new-str__content-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.new-str__content-views {
  display: flex;
  align-items: center;
  gap: 12px;
}

.new-str__content-views img {
  width: 20px;
  height: 20px;
}

.new-str__content-container {
  position: relative;
}

.new-str__content-share {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.new-str__content-share-svg {
  transition: 0.3s;
}

.new-str__content-share-svg path {
  transition: 0.3s;
}

.new-str__content-share:hover span {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--black);
}

.new-str__content-share:hover .new-str__content-share-svg {
  scale: 1.1;
}

.new-str__content-share:hover .new-str__content-share-svg path {
  fill: var(--black);
}

.new-str__content-box {
  position: absolute;
  left: 0;
  bottom: -18px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.08);
  background: var(--white);
  border-radius: 20px;
  padding: 16px;
  display: none;
  align-items: center;
  gap: 10px;
  transform: translateY(100%);
}

.new-str__content-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid var(--gray-line);
  width: 56px;
  height: 56px;
  transition: 0.3s;
}

.new-str__content-box a svg path {
  transition: 0.3s;
}

.new-str__content-box a:hover {
  border-color: var(--black);
  background: var(--black);
}

.new-str__content-box a:hover svg path {
  fill: var(--white);
}

.new-str__content-box.open {
  display: flex;
}

.new-str__form {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  width: max-content;
  height: max-content;
  justify-self: right;
  position: sticky;
  top: 130px;
  width: 377px;
}

.new-str__form-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
}

.new-str__form-subtitle {
  padding-top: 14px;
  color: var(--gray-text);
  font-size: 16px;
  line-height: 140%;
}

.new-str__form-box {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.new-str__form-input {
  border: 1px solid var(--gray-line);
  border-radius: 65px;
  padding: 18px 20px;
  height: 52px;
}

.new-str__form-input:focus {
  border: 1px solid var(--black);
}

.new-str__form-btn {
  background: var(--gold);
  border-radius: 100px;
  padding: 20px 24px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 14px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: var(--black);
}

.new-str__form-btn:hover {
  background: #f5e9c0;
}

.new-str__form-btn:active {
  background: #ffeba5;
}

.new-str__form-bot {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 12px;
}

.new-str__form-check {
  display: none;
}

.new-str__form-check:checked~.new-str__form-checkmark::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  display: block;
  border: 2px solid var(--black);
  border-width: 0 0 3px 3px;
  transform: rotate(-45deg);
  height: 60%;
  width: 90%;
}

.new-str__form-checkmark {
  position: relative;
}

.new-str__form-checkmark::after {
  content: "";
  display: block;
  border: 1px solid var(--gray-line);
  border-radius: 3px;
  width: 14px;
  height: 14px;
  background: transparent;
}

.new-str__form-text {
  color: var(--gray-text);
  font-size: 14px;
  line-height: 130%;
  width: 100%;
}

.new-str__form-text a {
  display: inline;
  color: var(--gray-text);
}

.new-str__form-text a:hover {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.just-validate-error-field~.new-str__form-checkmark::after {
  border: 1px solid #e01616;
}

/*===== media Описание акции =====*/
@media (max-width: 1400px) {
  .new-str-wrap {
    padding-top: 42px;
    display: grid;
    grid-template-columns: 739px 1fr;
  }

  .new-str__content img {
    margin-top: 42px;
  }

  .new-str__content-text {
    padding-top: 42px;
  }

  .new-str__content-bot {
    margin-top: 42px;
  }

  .new-str__content-left {
    gap: 24px;
  }

  .new-str__form {
    padding: 24px;
    width: 277px;
  }

  .new-str__form-title {
    font-size: 20px;
  }

  .new-str__form-subtitle {
    font-size: 15px;
  }

  .new-str__form-box {
    padding-top: 20px;
  }

  .new-str__form-btn {
    padding: 18px 24px;
    font-size: 16px;
  }
}

@media (max-width: 1160px) {
  .new-str-wrap {
    padding-top: 32px;
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .new-str__content img {
    margin-top: 32px;
  }

  .new-str__content-text {
    padding-top: 32px;
    font-size: 18px;
  }

  .new-str__content-bot {
    padding-top: 28px;
    font-size: 16px;
  }

  .new-str__content-svg {
    height: 18px;
    width: 18px;
  }

  .new-str__content-views {
    gap: 10px;
  }

  .new-str__content-views img {
    width: 18px;
    height: 18px;
  }

  .new-str__content-box {
    bottom: auto;
    top: -18px;
    transform: translateY(-100%);
    left: auto;
    right: 0;
  }

  .new-str__form {
    padding: 32px;
    width: 100%;
  }

  .new-str__form-title {
    font-size: 28px;
  }

  .new-str__form-subtitle {
    padding-top: 14px;
    font-size: 18px;
  }

  .new-str__form-box {
    padding-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .new-str__form-btn {
    margin-top: 24px;
    padding: 20px 24px;
    font-size: 18px;
    width: 359px;
  }

  .new-str__form-text {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .new-str-wrap {
    padding-top: 28px;
    gap: 60px;
  }

  .new-str__content-text {
    font-size: 16px;
  }

  .new-str__content-bot {
    margin-top: 32px;
    padding-top: 24px;
    font-size: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .new-str__content-svg {
    height: 16px;
    width: 16px;
  }

  .new-str__content-left {
    justify-content: space-between;
    width: 100%;
  }

  .new-str__content-views img {
    width: 16px;
    height: 16px;
  }

  .new-str__content-box {
    left: 0;
    right: auto;
  }

  .new-str__form {
    padding: 24px;
  }

  .new-str__form-title {
    font-size: 24px;
  }

  .new-str__form-subtitle {
    padding-top: 12px;
  }

  .new-str__form-box {
    padding-top: 20px;
    grid-template-columns: 1fr;
  }

  .new-str__form-btn {
    padding: 18px 24px;
    font-size: 16px;
    width: 100%;
  }

  .new-str__form-text {
    font-size: 13px;
  }
}

/*===== Другие акции =====*/
.new-other-title {
  padding-top: 120px;
  font-weight: 500;
  font-size: 42px;
  line-height: 110%;
}

.new-other-wrap {
  padding-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.new-other__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}

.new-other__item:hover img {
  scale: 1.1;
}

.new-other__item:hover .new-other__item-name {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.new-other__item-img {
  overflow: hidden;
  border-radius: 16px;
}

.new-other__item-img img {
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.new-other__item-name {
  padding-top: 24px;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
}

.new-other__item-date {
  font-size: 18px;
  line-height: 140%;
  color: rgba(15, 15, 15, 0.4);
}

/*===== media ОписДругиеание акции =====*/
@media (max-width: 1400px) {
  .new-other-title {
    font-size: 36px;
  }

  .new-other__item-name {
    font-size: 18px;
  }

  .new-other__item-date {
    font-size: 16px;
  }
}

@media (max-width: 1160px) {
  .new-other-title {
    padding-top: 80px;
    font-size: 28px;
  }

  .new-other-wrap {
    padding-top: 32px;
    gap: 24px;
  }

  .new-other__item {
    gap: 6px;
  }

  .new-other__item-img {
    border-radius: 14px;
  }

  .new-other__item-name {
    padding-top: 16px;
    font-size: 16px;
  }

  .new-other__item-date {
    font-size: 15px;
  }
}

@media (max-width: 680px) {
  .new-other-title {
    padding-top: 60px;
    font-size: 24px;
  }

  .new-other-wrap {
    padding-top: 28px;
    grid-template-columns: 1fr;
  }

  .new-other__item:last-child {
    display: none;
  }
}

/*===== Контакты =====*/
.contacts-wrap {
  padding-top: 52px;
  display: grid;
  grid-template-columns: 3fr 5fr;
  gap: 30px;
}

.contacts__left {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
}

.contacts__left-item {
  padding: 20px 52px 0 52px;
  transition: 0.3s;
  cursor: pointer;
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
}

.contacts__left-item:first-child {
  padding-top: 52px;
}

.contacts__left-item:hover {
  background: var(--gray);
}

.contacts__left-phone {
  display: inline-block;
}

.contacts__left-name {
  padding-bottom: 16px;
}

.contacts__left-line {
  margin-top: 20px;
  width: 100%;
  height: 1px;
  background: var(--gray-line);
}

.contacts__left-mail {
  padding-top: 32px;
  padding-left: 52px;
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
}

.contacts__left-buttons {
  padding: 32px 52px 52px 52px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contacts__left-contact {
  background: var(--gold);
  border-radius: 100px;
  padding: 20px 24px;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.contacts__left-contact:hover {
  background: #f5e9c0;
}

.contacts__left-contact:active {
  background: #ffeba5;
}

.contacts__left-where {
  border: 1px solid var(--gray-line);
  border-radius: 100px;
  padding: 20px 24px;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.contacts__left-where:hover {
  border-color: var(--gray);
  background: var(--gray);
}

.contacts__left-where:active {
  background-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.contacts__right {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.contacts__right-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/*===== media Контакты =====*/
@media (max-width: 1400px) {
  .contacts-wrap {
    padding-top: 42px;
  }

  .contacts__left-item {
    padding: 18px 42px 0 42px;
    font-size: 18px;
  }

  .contacts__left-item:first-child {
    padding-top: 42px;
  }

  .contacts__left-item:hover {
    background: var(--gray);
  }

  .contacts__left-line {
    margin-top: 18px;
  }

  .contacts__left-mail {
    padding-top: 24px;
    padding-left: 42px;
    font-size: 20px;
  }

  .contacts__left-buttons {
    padding: 24px 42px 42px 42px;
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 1160px) {
  .contacts-wrap {
    padding-top: 32px;
    grid-template-columns: 1fr;
  }

  .contacts__left-item {
    padding: 18px 32px 0 32px;
  }

  .contacts__left-item:first-child {
    padding-top: 32px;
  }

  .contacts__left-mail {
    padding-left: 32px;
    font-size: 18px;
  }

  .contacts__left-buttons {
    padding: 24px 32px 32px 32px;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .contacts__left-contact {
    padding: 18px 24px;
    font-size: 16px;
  }

  .contacts__left-where {
    padding: 18px 24px;
    font-size: 16px;
  }

  .contacts__right {
    aspect-ratio: 1.16/1;
  }
}

@media (max-width: 680px) {
  .contacts-wrap {
    padding-top: 28px;
    gap: 20px;
  }

  .contacts__left-item {
    padding: 14px 24px 0 24px;
    font-size: 16px;
  }

  .contacts__left-item:first-child {
    padding-top: 24px;
  }

  .contacts__left-mail {
    padding-left: 24px;
    font-size: 16px;
  }

  .contacts__left-buttons {
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contacts__left-contact {
    padding: 16px 24px;
  }

  .contacts__left-where {
    padding: 16px 24px;
  }

  .contacts__right {
    aspect-ratio: 1/1.23;
  }
}

/*===== Контакты modal form =====*/
.contacts__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.4);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}

.contacts__modal-form {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 42px;
  width: 420px;
}

.contacts__modal-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 110%;
}

.contacts__modal-subtitle {
  padding-top: 14px;
  color: var(--gray-text);
  font-size: 18px;
  line-height: 140%;
}

.contacts__modal-box {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contacts__modal-input {
  border: 1px solid var(--gray-line);
  border-radius: 65px;
  padding: 18px 20px;
  width: 336px;
  height: 52px;
}

.contacts__modal-input:focus {
  border: 1px solid var(--black);
}

.contacts__modal-btn {
  margin-top: 14px;
  background: var(--gold);
  border-radius: 100px;
  padding: 20px 24px;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  width: 336px;
  cursor: pointer;
  transition: 0.3s;
}

.contacts__modal-btn:hover {
  background: #f5e9c0;
}

.contacts__modal-btn:active {
  background: #ffeba5;
}

.contacts__modal-bot {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 12px;
}

.contacts__modal-check {
  display: none;
}

.contacts__modal-check:checked~.contacts__modal-checkmark::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  display: block;
  border: 2px solid var(--black);
  border-width: 0 0 3px 3px;
  transform: rotate(-45deg);
  height: 60%;
  width: 90%;
}

.contacts__modal-checkmark {
  position: relative;
}

.contacts__modal-checkmark::after {
  content: "";
  display: block;
  border: 1px solid var(--gray-line);
  border-radius: 3px;
  width: 14px;
  height: 14px;
  background: transparent;
}

.contacts__modal-text {
  color: var(--gray-text);
  font-size: 14px;
  line-height: 130%;
  width: 100%;
}

.contacts__modal-text a {
  display: inline;
  color: var(--gray-text);
}

.contacts__modal-text a:hover {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.contacts__modal-close {
  position: absolute;
  top: 0;
  right: -68px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 78px;
  background: rgba(255, 255, 255, 0.2);
}

.contacts__modal-close:hover {
  background: var(--black);
}

.just-validate-error-field~.contacts__modal-checkmark::after {
  border: 1px solid #e01616;
}

/*===== media Контакты modal form =====*/
@media (max-width: 1160px) {
  .contacts__modal-form {
    padding: 32px;
    width: 400px;
  }

  .contacts__modal-title {
    font-size: 24px;
  }

  .contacts__modal-subtitle {
    padding-top: 12px;
    font-size: 16px;
  }

  .contacts__modal-box {
    padding-top: 20px;
  }

  .contacts__modal-close {
    right: -54px;
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 680px) {
  .contacts__modal-form {
    padding: 24px;
    width: 350px;
  }

  .contacts__modal-title {
    font-size: 18px;
  }

  .contacts__modal-subtitle {
    padding-top: 10px;
    font-size: 15px;
  }

  .contacts__modal-input {
    padding: 16px 18px;
    width: 302px;
  }

  .contacts__modal-btn {
    padding: 16px 24px;
    width: 302px;
    font-size: 16px;
  }

  .contacts__modal-close {
    right: 0;
    top: -50px;
  }

  .contacts__modal-close svg {
    width: 12px;
    height: 12px;
  }

  .contacts__modal-text {
    font-size: 13px;
  }
}

/*===== Корзина с товарами =====*/
.cart-wrap {
  padding-top: 52px;
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 30px;
}

.cart__left {
  background: var(--white);
  border-radius: 24px;
  padding: 52px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart__left-item {
  position: relative;
  display: flex;
  align-items: center;
}

.cart__left-img {
  width: 100px;
}

.cart__left-img img {
  width: 100%;
  object-fit: cover;
  user-select: none;
}

.cart__left-box {
  padding-left: 32px;
}

.cart__left-name {
  font-size: 20px;
  line-height: 120%;
}

.cart__left-value {
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.cart__left-count {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
}

.cart__left-minus {
  background: var(--gray);
  border-radius: 100px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.cart__left-minus:active {
  background: var(--black);
}

.cart__left-minus:active svg path {
  stroke: var(--white);
}

.cart__left-plus {
  background: var(--gray);
  border-radius: 100px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.cart__left-plus:active {
  background: var(--black);
}

.cart__left-plus:active svg path {
  stroke: var(--white);
}

.cart__left-area {
  border: 1px solid var(--gray-line);
  border-radius: 100px;
  padding: 0px 8px;
  width: 56px;
  height: 36px;
  max-width: 56px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--black);
}

.cart__left-area:focus {
  border-color: var(--black);
}

.cart__left-price {
  font-weight: 600;
  font-size: 22px;
  line-height: 120%;
  padding-left: 54px;
  align-self: flex-end;
  user-select: none;
}

.cart__left-deleted {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: var(--gray);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.cart__left-deleted:hover svg path {
  fill: #E01616;
}

.cart__left-deleted:active {
  background: var(--black);
}

.cart__left-deleted:active svg path {
  fill: var(--white);
}

.cart__left-line {
  margin: 24px 0;
  height: 1px;
  width: 100%;
  background: var(--gray-line);
}

.cart__right {
  background: var(--white);
  border-radius: 24px;
  padding: 52px;
  height: max-content;
  position: sticky;
  top: 30px;
}

.cart__right-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
}

.cart__right-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 24px;
}

.cart__right-item {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
}

.cart__right-name {
  font-size: 18px;
  line-height: 100%;
  display: flex;
  gap: 10px;
  align-items: end;
}

.cart__right-line {
  height: 1px;
  width: 100%;
  background: var(--gray-line);
}

.cart__right-price {
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
}

.cart__right-amount {
  font-size: 18px;
  line-height: 100%;
}

.cart__right-btn {
  background: var(--gold);
  border-radius: 100px;
  padding: 20px 24px;
  margin-top: 32px;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  cursor: pointer;
  transition: 0.3s;
  user-select: none;
}

.cart__right-btn:hover {
  background: #f5e9c0;
}

.cart__right-btn:active {
  background: #ffeba5;
}

.example {
  text-align: center;
  border-radius: 100px;
  margin-top: 20px;
  background: var(--gold);
  padding: 20px 24px;
}

/*===== media Корзина с товарами =====*/
@media (max-width: 1520px) {
  .cart-wrap {
    padding-top: 42px;
    grid-template-columns: 3fr 1fr;
  }

  .cart__left {
    padding: 32px;
    gap: 18px;
  }

  .cart__left-name {
    font-size: 18px;
  }

  .cart__left-value {
    padding-top: 16px;
  }

  .cart__left-price {
    font-size: 20px;
    padding-left: 70px;
  }

  .cart__left-deleted {
    width: 38px;
    height: 38px;
    border-radius: 6px;
  }

  .cart__left-deleted svg {
    width: 22px;
    height: 22px;
  }

  .cart__left-line {
    margin: 18px 0;
  }

  .cart__right {
    padding: 32px;
  }

  .cart__right-title {
    font-size: 20px;
  }

  .cart__right-wrap {
    gap: 16px;
    padding-top: 20px;
  }

  .cart__right-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cart__right-name {
    font-size: 15px;
  }

  .cart__right-line {
    display: none;
  }

  .cart__right-btn {
    margin-top: 24px;
  }
}

@media (max-width: 1180px) {
  .cart-wrap {
    padding-top: 32px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cart__left {
    gap: 24px;
  }

  .cart__left-item {
    padding-bottom: 36px;
  }

  .cart__left-name {
    font-size: 16px;
  }

  .cart__left-value {
    padding-top: 14px;
  }

  .cart__left-price {
    font-size: 18px;
    padding-left: 0;
    position: absolute;
    left: 132px;
    top: 87px;
  }

  .cart__left-deleted {
    top: 0;
    right: 0;
    transform: translate(0);
  }

  .cart__left-line {
    margin: 0;
  }

  .cart__right-wrap {
    gap: 18px;
  }

  .cart__right-item {
    grid-template-columns: 6fr 3fr;
    gap: 10px;
  }

  .cart__right-name {
    font-size: 16px;
  }

  .cart__right-line {
    display: block;
  }

  .cart__right-price {
    font-size: 16px;
  }

  .cart__right-amount {
    font-size: 16px;
  }
}

@media (max-width: 700px) {
  .cart-wrap {
    padding-top: 28px;
  }

  .cart__left {
    padding: 20px;
    gap: 16px;
  }

  .cart__left-item {
    padding-bottom: 54px;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 14px;
  }

  .cart__left-img {
    width: 70px;
  }

  .cart__left-box {
    padding: 0;
  }

  .cart__left-name {
    font-size: 14px;
    width: 90%;
    padding-bottom: 23px;
  }

  .cart__left-value {
    position: absolute;
    width: 100%;
    padding-top: 0;
    gap: 24px;
    left: 0;
    bottom: 0;
  }

  .cart__left-count {
    border: 1px solid var(--gray-line);
    border-radius: 65px;
    padding: 6px;
    font-size: 16px;
    gap: 0;
  }

  .cart__left-count span {
    position: relative;
    margin-right: 10px;
  }

  .cart__left-count sup {
    font-size: 10px;
    position: absolute;
    top: 0;
    transform: translateY(-20%);
  }

  .cart__left-minus {
    width: 32px;
    height: 32px;
  }

  .cart__left-minus svg {
    width: 18px;
    height: 18px;
  }

  .cart__left-plus {
    width: 32px;
    height: 32px;
  }

  .cart__left-plus svg {
    width: 18px;
    height: 18px;
  }

  .cart__left-area {
    border: none;
    border-radius: 0;
    padding: 0px;
    width: 27px;
    height: 18px;
    font-size: 15px;
    margin: 0 6px;
  }

  .cart__left-price {
    font-size: 13px;
    padding-left: 0;
    left: 84px;
    top: auto;
    bottom: 54px;
  }

  .cart__left-deleted {
    width: 26px;
    height: 26px;
    border-radius: 6px;
  }

  .cart__left-deleted svg {
    width: 16px;
    height: 15px;
  }

  .cart__right {
    padding: 20px;
  }

  .cart__right-title {
    font-size: 18px;
  }

  .cart__right-wrap {
    padding-top: 18px;
    gap: 16px;
  }

  .cart__right-item {
    grid-template-columns: 1.5fr 1fr;
    gap: 10px;
  }

  .cart__right-btn {
    margin-top: 18px;
    padding: 16px 24px;
    font-size: 16px;
  }
}

/*===== modal Оформление заказа =====*/
.order-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  z-index: 999;
}

.order-modal__form {
  width: 527px;
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 42px;
}

.order-modal__form-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 110%;
}

.order-modal__form-subtitle {
  padding-top: 14px;
  color: var(--gray-text);
  font-size: 18px;
  line-height: 140%;
  width: 403px;
}

.order-modal__form-wrap {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.order-modal__form-wrap input {
  border: 1px solid var(--gray-line);
  border-radius: 65px;
  padding: 20px 24px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: var(--black);
}

.order-modal__form-wrap input::placeholder {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: rgba(15, 15, 15, 0.6);
}

.order-modal__form-wrap input:focus {
  border: 1px solid var(--black);
}

.order-modal__form-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.order-modal__form-box input {
  display: none;
}

.order-modal__form-box input:checked~label {
  background: var(--gray);
  border-color: var(--gray);
  color: var(--black);
}

.order-modal__form-box label {
  border: 1px solid var(--gray-line);
  border-radius: 65px;
  width: 216px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 15, 15, 0.6);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}

.order-modal__form-btn {
  margin-top: 20px;
  background: var(--gold);
  border-radius: 100px;
  padding: 20px 24px;
  width: 100%;
  text-align: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: var(--black);
  cursor: pointer;
  transition: 0.3s;
}

.order-modal__form-btn:hover {
  background: #f5e9c0;
}

.order-modal__form-btn:active {
  background: #ffeba5;
}

.order-modal__form-bot {
  display: flex;
  gap: 10px;
  padding-top: 12px;
}

.order-modal__form-check {
  display: none;
}

.order-modal__form-check:checked~.order-modal__form-checkmark::after {
  background: var(--black);
  border-color: var(--black);
  background-image: url(/local/templates/.default/images/check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.order-modal__form-checkmark {
  position: relative;
}

.order-modal__form-checkmark::after {
  content: "";
  display: block;
  border: 1px solid var(--gray-line);
  border-radius: 3px;
  width: 14px;
  height: 14px;
  background: transparent;
}

.order-modal__form-text {
  font-size: 14px;
  line-height: 130%;
  color: var(--gray-text);
}

.order-modal__form-text a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  font-size: 14px;
  line-height: 130%;
  color: var(--gray-text);
  display: inline;
}

.order-modal__form-close {
  position: absolute;
  top: 0;
  right: -68px;
  border-radius: 78px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.2);
}

.order-modal__form-close:hover {
  background: var(--black);
}

.order-modal.open {
  display: flex;
}

.just-validate-error-field~.order-modal__form-checkmark::after {
  border: 1px solid #e01616 !important;
}

/*===== media modal Оформление заказа =====*/
@media (max-width: 1400px) {
  .order-modal {
    padding: 60px 0;
  }

  .order-modal__form {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .order-modal.open {
    display: block;
  }
}

@media (max-width: 1160px) {
  .order-modal {
    padding: 40px 0;
  }

  .order-modal__form {
    width: 400px;
    border-radius: 24px;
    padding: 32px;
  }

  .order-modal__form-title {
    font-size: 24px;
  }

  .order-modal__form-subtitle {
    padding-top: 12px;
    font-size: 16px;
    width: 336px;
  }

  .order-modal__form-wrap {
    padding-top: 20px;
    gap: 10px;
  }

  .order-modal__form-wrap input {
    padding: 18px 20px;
  }

  .order-modal__form-box label {
    width: 163px;
    height: 52px;
  }

  .order-modal__form-btn {
    margin-top: 14px;
  }

  .order-modal__form-close {
    right: -54px;
    width: 36px;
    height: 36px;
  }

  .order-modal__form-close svg {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 680px) {
  .order-modal {
    padding: 80px 0;
  }

  .order-modal__form {
    width: 350px;
    padding: 24px;
  }

  .order-modal__form-title {
    font-size: 18px;
  }

  .order-modal__form-subtitle {
    padding-top: 10px;
    font-size: 15px;
    width: 302px;
  }

  .order-modal__form-wrap input {
    padding: 16px 18px;
  }

  .order-modal__form-box label {
    width: 146px;
    height: 48px;
  }

  .order-modal__form-btn {
    font-size: 16px;
  }

  .order-modal__form-text {
    font-size: 13px;
  }

  .order-modal__form-text a {
    font-size: 13px;
  }

  .order-modal__form-close {
    top: -50px;
    right: 0;
  }
}

/*===== modal Оформление заказа second form =====*/
.second-order-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  z-index: 999;
}

.second-order-modal__form {
  width: 527px;
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 42px;
}

.second-order-modal__form-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 110%;
}

.second-order-modal__form-subtitle {
  padding-top: 14px;
  color: var(--gray-text);
  font-size: 18px;
  line-height: 140%;
  width: 403px;
}

.second-order-modal__form-wrap {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.second-order-modal__form-wrap input {
  border: 1px solid var(--gray-line);
  border-radius: 65px;
  padding: 20px 24px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: var(--black);
}

.second-order-modal__form-wrap input::placeholder {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: rgba(15, 15, 15, 0.6);
}

.second-order-modal__form-wrap input:focus {
  border: 1px solid var(--black);
}

.second-order-modal__form-wrap textarea {
  border: 1px solid var(--gray-line);
  border-radius: 24px;
  padding: 24px;
  height: 112px;
  resize: none;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: var(--black);
}

.second-order-modal__form-wrap textarea::placeholder {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: rgba(15, 15, 15, 0.6);
}

.second-order-modal__form-wrap textarea:focus {
  border: 1px solid var(--black);
}

.second-order-modal__form-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.second-order-modal__form-box input {
  display: none;
}

.second-order-modal__form-box input:checked~label {
  background: var(--gray);
  border-color: var(--gray);
  color: var(--black);
}

.second-order-modal__form-box label {
  border: 1px solid var(--gray-line);
  border-radius: 65px;
  width: 216px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 15, 15, 0.6);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}

.second-order-modal__form-btn {
  margin-top: 20px;
  background: var(--gold);
  border-radius: 100px;
  padding: 20px 24px;
  width: 100%;
  text-align: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: var(--black);
  cursor: pointer;
  transition: 0.3s;
}

.second-order-modal__form-btn:hover {
  background: #f5e9c0;
}

.second-order-modal__form-btn:active {
  background: #ffeba5;
}

.second-order-modal__form-bot {
  display: flex;
  gap: 10px;
  padding-top: 12px;
}

.second-order-modal__form-check {
  display: none;
}

.second-order-modal__form-check:checked~.order-modal__form-checkmark::after {
  background: var(--black);
  border-color: var(--black);
  background-image: url(/local/templates/.default/images/check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.second-order-modal__form-checkmark {
  position: relative;
}

.second-order-modal__form-checkmark::after {
  content: "";
  display: block;
  border: 1px solid var(--gray-line);
  border-radius: 3px;
  width: 14px;
  height: 14px;
  background: transparent;
}

.second-order-modal__form-text {
  font-size: 14px;
  line-height: 130%;
  color: var(--gray-text);
}

.second-order-modal__form-text a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  font-size: 14px;
  line-height: 130%;
  color: var(--gray-text);
  display: inline;
}

.second-order-modal__form-close {
  position: absolute;
  top: 0;
  right: -68px;
  border-radius: 78px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.2);
}

.second-order-modal__form-close:hover {
  background: var(--black);
}

.second-order-modal.open {
  display: flex;
}

.just-validate-error-field~.second-order-modal__form-checkmark::after {
  border: 1px solid #e01616 !important;
}

/*===== media modal Оформление заказа =====*/
@media (max-width: 1400px) {
  .second-order-modal {
    padding: 60px 0;
  }

  .second-order-modal__form {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .second-order-modal.open {
    display: block;
  }
}

@media (max-width: 1160px) {
  .second-order-modal {
    padding: 40px 0;
  }

  .second-order-modal__form {
    width: 400px;
    border-radius: 24px;
    padding: 32px;
  }

  .second-order-modal__form-title {
    font-size: 24px;
  }

  .second-order-modal__form-subtitle {
    padding-top: 12px;
    font-size: 16px;
    width: 336px;
  }

  .second-order-modal__form-wrap {
    padding-top: 20px;
    gap: 10px;
  }

  .second-order-modal__form-wrap input {
    padding: 18px 20px;
  }

  .second-order-modal__form-wrap textarea {
    border-radius: 18px;
    padding: 20px;
  }

  .second-order-modal__form-box label {
    width: 163px;
    height: 52px;
  }

  .second-order-modal__form-btn {
    margin-top: 14px;
  }

  .second-order-modal__form-close {
    right: -54px;
    width: 36px;
    height: 36px;
  }

  .second-order-modal__form-close svg {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 680px) {
  .second-order-modal {
    padding: 80px 0;
  }

  .second-order-modal__form {
    width: 350px;
    padding: 24px;
  }

  .second-order-modal__form-title {
    font-size: 18px;
  }

  .second-order-modal__form-subtitle {
    padding-top: 10px;
    font-size: 15px;
    width: 302px;
  }

  .second-order-modal__form-wrap input {
    padding: 16px 18px;
  }

  .second-order-modal__form-box label {
    width: 146px;
    height: 48px;
  }

  .second-order-modal__form-btn {
    font-size: 16px;
  }

  .second-order-modal__form-text {
    font-size: 13px;
  }

  .second-order-modal__form-text a {
    font-size: 13px;
  }

  .second-order-modal__form-close {
    top: -50px;
    right: 0;
  }
}

.empty-cart-subtitle {
  padding-top: 24px;
  font-size: 20px;
  line-height: 140%;
}

.empty-cart-back {
  margin-top: 62px;
  background: var(--gold);
  border-radius: 100px;
  padding: 20px 24px;
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
}

.empty-cart-back:hover {
  background: #f5e9c0;
}

.empty-cart-back:active {
  background: #ffeba5;
}

/*===== media Пустая корзина =====*/
@media (max-width: 1400px) {
  .empty-cart-subtitle {
    padding-top: 18px;
  }
}

@media (max-width: 1160px) {
  .empty-cart-subtitle {
    padding-top: 14px;
    font-size: 16px;
  }

  .empty-cart-back {
    margin-top: 42px;
    padding: 18px;
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .empty-cart-subtitle {
    padding-top: 12px;
    font-size: 15px;
  }

  .empty-cart-back {
    margin-top: 32px;
  }
}

.send-wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1397px;
}

.send__left {
  max-width: 581px;
}

.send__left-title {
  font-weight: 500;
  font-size: 72px;
  line-height: 110%;
}

.send__left-subtitle {
  padding-top: 24px;
  font-size: 20px;
  line-height: 140%;
}

.send__left-back {
  margin-top: 62px;
  background: var(--gold);
  border-radius: 100px;
  padding: 20px 24px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  display: inline-block;
}

.send__left-back:hover {
  background: #f5e9c0;
}

.send__left-back:active {
  background: #ffeba5;
}

.send__right {
  padding-top: 10px;
}

/*===== media Заявка успешно отправлена =====*/
@media (max-width: 1400px) {
  .send-wrap {
    max-width: 1047px;
  }

  .send__left {
    max-width: 412px;
  }

  .send__left-title {
    font-size: 52px;
  }

  .send__left-subtitle {
    padding-top: 18px;
  }

  .send__right {
    padding-top: 0;
  }

  .send__right-img {
    width: 124px;
    height: 124px;
  }
}

@media (max-width: 1160px) {
  .send-wrap {
    max-width: 624px;
  }

  .send__left {
    max-width: 267px;
  }

  .send__left-title {
    font-size: 34px;
  }

  .send__left-subtitle {
    padding-top: 14px;
    font-size: 16px;
    width: 170px;
  }

  .send__left-back {
    margin-top: 42px;
    padding: 18px;
    font-size: 16px;
  }

  .send__right-img {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 680px) {
  .send__left {
    max-width: 206px;
  }

  .send__left-title {
    font-size: 26px;
  }

  .send__left-subtitle {
    padding-top: 12px;
    font-size: 15px;
    width: 160px;
  }

  .send__left-back {
    margin-top: 32px;
  }

  .send__right-img {
    width: 60px;
    height: 60px;
  }
}

.error-wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1397px;
}

.error__left {
  max-width: 637px;
}

.error__left-title {
  font-weight: 500;
  font-size: 72px;
  line-height: 110%;
}

.error__left-subtitle {
  padding-top: 24px;
  font-size: 20px;
  line-height: 140%;
}

.error__left-back {
  margin-top: 62px;
  background: var(--gold);
  border-radius: 100px;
  padding: 20px 24px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  display: inline-block;
}

.error__left-back:hover {
  background: #f5e9c0;
}

.error__left-back:active {
  background: #ffeba5;
}

.error__right {
  padding-top: 10px;
}

/*===== media Данной страницы не существует =====*/
@media (max-width: 1400px) {
  .error-wrap {
    max-width: 1047px;
  }

  .error__left {
    max-width: 482px;
  }

  .error__left-title {
    font-size: 52px;
  }

  .error__left-subtitle {
    padding-top: 18px;
  }

  .error__right {
    padding-top: 0;
  }

  .error__right-img {
    width: 124px;
    height: 124px;
  }
}

@media (max-width: 1160px) {
  .error-wrap {
    max-width: 624px;
  }

  .error__left {
    max-width: 300px;
  }

  .error__left-title {
    font-size: 34px;
  }

  .error__left-subtitle {
    padding-top: 14px;
    font-size: 16px;
    width: 243px;
  }

  .error__left-back {
    margin-top: 42px;
    padding: 18px;
    font-size: 16px;
  }

  .error__right-img {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 680px) {
  .error__left {
    max-width: 230px;
  }

  .error__left-title {
    font-size: 26px;
  }

  .error__left-subtitle {
    padding-top: 12px;
    font-size: 15px;
    width: 230px;
  }

  .error__left-back {
    margin-top: 32px;
  }

  .error__right-img {
    width: 60px;
    height: 60px;
  }
}

/*===== Личный кабинет title =====*/
.cabinet-title {
  padding-top: 52px;
  font-weight: 500;
  font-size: 52px;
  line-height: 110%;
}

/*===== media Личный кабинет title =====*/
@media (max-width: 1400px) {
  .cabinet-title {
    padding-top: 42px;
  }
}

@media (max-width: 1160px) {
  .cabinet-title {
    padding-top: 32px;
    font-size: 34px;
  }
}

@media (max-width: 1160px) {
  .cabinet-title {
    padding-top: 24px;
    font-size: 26px;
  }
}

/*===== Личный кабинет tabs =====*/
.cabinet-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1680px;
  padding: 42px 40px 32px 40px;
  margin: 0 auto;
}

.cabinet__tabs {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cabinet__tabs-tab {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--gray-line);
  border-radius: 65px;
  padding: 12px 24px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  white-space: nowrap;
}

.cabinet__tabs-tab:hover {
  background: var(--gray);
  border-color: var(--gray);
}

.cabinet__tabs-tab:active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.cabinet__tabs-tab.active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.cabinet__tabs-count {
  background: #e01616;
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 13px;
  line-height: 100%;
  color: var(--white);
  border-radius: 27px;
}

.cabinet-exit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--gray-line);
  border-radius: 65px;
  padding: 16px 24px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}

.cabinet-exit:hover {
  background: var(--gray);
  border-color: var(--gray);
}

.cabinet-exit:active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.cabinet-exit-media {
  display: none;
  margin-top: 32px;
  margin-left: 40px;
  border: 1px solid var(--gray-line);
  border-radius: 65px;
  padding: 12px 18px;
  width: 82px;
  height: 39px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: var(--black);
}

.cabinet-exit-media:hover {
  background: var(--gray);
  border-color: var(--gray);
}

.cabinet-exit-media:active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/*===== media Личный кабинет tabs =====*/
@media (max-width: 1400px) {
  .cabinet-top {
    padding: 42px 40px 42px 40px;
  }
}

@media (max-width: 1160px) {
  .cabinet-top {
    padding: 32px 0 28px 0;
  }

  .cabinet__tabs {
    padding: 0 40px;
    gap: 15px;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    /* Скрывает скроллбар в Firefox */
  }

  .cabinet__tabs::-webkit-scrollbar {
    display: none;
  }

  .cabinet__tabs-tab {
    height: 39px;
    padding: 12px 18px;
    font-size: 15px;
  }

  .cabinet__tabs-count {
    height: 20px;
    width: 20px;
    font-size: 13px;
  }

  .cabinet-exit {
    display: none;
  }

  .cabinet-exit-media {
    display: block;
  }
}

@media (max-width: 680px) {
  .cabinet-top {
    padding: 28px 0 24px 0;
  }

  .cabinet-exit-media {
    margin-top: 28px;
  }
}

@media (max-width: 576px) {
  .cabinet__tabs {
    padding: 0 20px;
  }

  .cabinet-exit-media {
    margin-left: 20px;
  }
}

/*===== Личный кабинет История заказов =====*/
.cabinet-history {
  display: none;
}

.cabinet-history-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 52px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cabinet-history__item {
  border: 1px solid var(--gray-line);
  border-radius: 24px;
  padding: 32px;
}

.cabinet-history__item-top {
  display: flex;
  align-items: center;
}

.cabinet-history__item-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  padding-right: 24px;
}

.cabinet-history__item-condition {
  background: #ffe5c5;
  border-radius: 70px;
  padding: 8px 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}

.cabinet-history__item-condition.end {
  background: #caffc5;
}

.cabinet-history__item-date {
  margin-left: 12px;
  border: 1px solid var(--gray-line);
  border-radius: 70px;
  padding: 7px 11px;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}

.cabinet-history__item-wrap {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cabinet-history__item-box {
  display: grid;
  grid-template-columns: 3fr 1.5fr 1fr;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray);
  font-size: 20px;
  line-height: 120%;
}

.cabinet-history__item-box:last-child {
  padding-bottom: 0;
  border: none;
}

.cabinet-history__item-price {
  font-weight: 600;
}

.cabinet-history__item-bot {
  margin-top: 28px;
  border-top: 1px solid #bababa;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
}

.cabinet-history__item-comment {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
}

.cabinet-history__item-comment span {
  font-weight: 400;
}

.cabinet-history__item-total {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  padding-right: 105px;
}

.cabinet-history.active {
  display: block;
}

/*===== media Личный кабинет История заказов =====*/
@media (max-width: 1400px) {
  .cabinet-history-wrap {
    padding: 32px;
    gap: 24px;
  }

  .cabinet-history__item {
    padding: 24px;
  }

  .cabinet-history__item-title {
    font-size: 20px;
    padding-right: 18px;
  }

  .cabinet-history__item-condition {
    font-size: 14px;
  }

  .cabinet-history__item-date {
    margin-left: 8px;
    font-size: 14px;
  }

  .cabinet-history__item-wrap {
    gap: 12px;
  }

  .cabinet-history__item-box {
    padding-bottom: 12px;
    font-size: 16px;
  }

  .cabinet-history__item-bot {
    margin-top: 18px;
    padding-top: 18px;
  }

  .cabinet-history__item-comment {
    font-size: 16px;
  }

  .cabinet-history__item-total {
    font-size: 16px;
    padding-right: 70px;
  }
}

@media (max-width: 1160px) {
  .cabinet-history-wrap {
    padding: 24px;
    gap: 20px;
  }

  .cabinet-history__item-top {
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 8px;
  }

  .cabinet-history__item-title {
    font-size: 18px;
    padding-right: 10px;
  }

  .cabinet-history__item-condition {
    padding: 6px 10px;
    font-size: 13px;
  }

  .cabinet-history__item-date {
    margin: 0;
    padding: 5px 10px;
    font-size: 13px;
  }

  .cabinet-history__item-box {
    grid-template-columns: 5fr 1.5fr;
    grid-template-areas: "name name" "count price";
    gap: 10px;
  }

  .cabinet-history__item-name {
    grid-area: name;
  }

  .cabinet-history__item-count {
    grid-area: count;
  }

  .cabinet-history__item-price {
    grid-area: price;
  }

  .cabinet-history__item-bot {
    margin-top: 16px;
    padding-top: 16px;
  }

  .cabinet-history__item-comment {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .cabinet-history__item-total {
    font-size: 16px;
    padding-right: 10px;
  }
}

@media (max-width: 680px) {
  .cabinet-history-wrap {
    border-radius: 18px;
    padding: 18px;
  }

  .cabinet-history__item-top {
    column-gap: 10px;
  }

  .cabinet-history__item-title {
    font-size: 16px;
    padding-right: 6px;
  }

  .cabinet-history__item-date {
    padding: 5px 8px;
    font-size: 12px;
  }

  .cabinet-history__item-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .cabinet-history__item-count {
    font-size: 14px;
  }

  .cabinet-history__item-price {
    font-size: 14px;
    justify-self: right;
  }

  .cabinet-history__item-bot {
    flex-direction: column-reverse;
    gap: 14px;
  }

  .cabinet-history__item-total {
    font-size: 15px;
    padding-right: 0;
  }
}

/*===== Личный кабинет Помощь =====*/
.cabinet-help {
  display: none;
}

.cabinet-help-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 52px;
}

.cabinet-help-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 110%;
}

.cabinet-help-text {
  color: var(--gray-text);
  font-size: 20px;
  line-height: 140%;
  padding-top: 32px;
  max-width: 733px;
}

.cabinet-help__form {
  padding-top: 32px;
  max-width: 733px;
  display: flex;
  flex-direction: column;
}

.cabinet-help__form textarea {
  width: 100%;
  height: 120px;
  resize: none;
  border: 1px solid var(--gray-line);
  border-radius: 24px;
  padding: 24px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: var(--black);
  outline: none;
}

.cabinet-help__form textarea::placeholder {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: rgba(15, 15, 15, 0.6);
}

.cabinet-help__form textarea:focus {
  border-color: var(--black);
}

.cabinet-help__form-file {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 18px;
}

.cabinet-help__form-file input {
  display: none;
}

.cabinet-help__form-file span {
  border: 1px solid var(--gray-line);
  border-radius: 65px;
  padding: 16px 24px;
  color: rgba(15, 15, 15, 0.6);
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  transition: 0.3s;
}

.cabinet-help__form-file span:hover {
  background: var(--gray);
  border-color: var(--gray);
}

.cabinet-help__form-file span:active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.cabinet-help__form-file p {
  font-size: 16px;
  line-height: 140%;
}

.cabinet-help__form-btn {
  margin-top: 24px;
  background: var(--gold);
  border-radius: 100px;
  padding: 20px 24px;
  width: 220px;
  height: 58px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
}

.cabinet-help__form-btn:hover {
  background: #f5e9c0;
}

.cabinet-help__form-btn:active {
  background: #ffeba5;
}

.just-validate-error-field~span {
  border-color: #e01616;
  color: #e01616;
}

.cabinet-help.active {
  display: block;
}

/*===== media Личный кабинет История заказов =====*/
@media (max-width: 1400px) {
  .cabinet-help-wrap {
    padding: 32px;
  }
}

@media (max-width: 1160px) {
  .cabinet-help-wrap {
    padding: 24px;
  }

  .cabinet-help-title {
    font-size: 24px;
  }

  .cabinet-help-text {
    font-size: 16px;
    padding-top: 18px;
  }
}

@media (max-width: 680px) {
  .cabinet-help-wrap {
    padding: 18px;
    border-radius: 18px;
  }

  .cabinet-help-title {
    font-size: 18px;
  }

  .cabinet-help-text {
    font-size: 15px;
  }

  .cabinet-help__form {
    padding-top: 24px;
  }

  .cabinet-help__form-file {
    display: flex;
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 12px;
    padding-top: 12px;
  }

  .cabinet-help__form-file span {
    padding: 14px 24px;
  }

  .cabinet-help__form-file p {
    font-size: 14px;
  }

  .cabinet-help__form-btn {
    margin-top: 16px;
    padding: 18px 24px;
    width: 220px;
    height: 54px;
  }
}

/*===== Личный кабинет Новости =====*/
.cabinet-news {
  display: none;
}

.cabinet-news-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 52px;
}

.cabinet-news-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 110%;
}

.cabinet-news-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding-top: 32px;
}

.cabinet-news__item {
  display: grid;
  grid-template-columns: 1fr 1.16fr;
  gap: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.cabinet-news__item:hover {
  transform: translateY(-10px);
}

.cabinet-news__item:hover img {
  scale: 1.1;
}

.cabinet-news__item-img {
  overflow: hidden;
  border-radius: 18px;
}

.cabinet-news__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.cabinet-news__item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cabinet-news__item-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
}

.cabinet-news__item-descr {
  padding-top: 14px;
  font-size: 16px;
  line-height: 130%;
  color: var(--gray-text);
  max-width: 350px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.cabinet-news__item-date {
  font-size: 15px;
  line-height: 100%;
  color: rgba(15, 15, 15, 0.4);
}

.cabinet-news.active {
  display: block;
}

/*===== media Личный кабинет Новости =====*/
@media (max-width: 1400px) {
  .cabinet-news-wrap {
    padding: 32px;
  }

  .cabinet-news__item {
    grid-template-columns: 1fr 1fr;
  }

  .cabinet-news__item-title {
    font-size: 18px;
  }

  .cabinet-news__item-descr {
    padding-top: 12px;
    font-size: 15px;
    -webkit-line-clamp: 3;
  }
}

@media (max-width: 1160px) {
  .cabinet-news-wrap {
    padding: 24px;
  }

  .cabinet-news-title {
    font-size: 24px;
  }

  .cabinet-news-box {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cabinet-news__item {
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .cabinet-news-wrap {
    border-radius: 18px;
  }

  .cabinet-news-title {
    font-size: 18px;
  }

  .cabinet-news__item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cabinet-news__item-img {
    aspect-ratio: 1.9/1;
  }

  .cabinet-news__item-title {
    font-size: 16px;
  }

  .cabinet-news__item-descr {
    -webkit-line-clamp: 2;
    max-width: 100%;
  }

  .cabinet-news__item-date {
    padding-top: 6px;
  }
}

/*===== Личный кабинет Новости modal =====*/
.cabinet-news-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 15, 15, 0.4);
  top: 0;
  left: 0;
  overflow-y: auto;
}

.cabinet-news-modal__wrap {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 42px;
  width: 600px;
}

.cabinet-news-modal__wrap-img {
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.cabinet-news-modal__wrap-title {
  padding-top: 24px;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
}

.cabinet-news-modal__wrap-text {
  padding-top: 18px;
  font-size: 18px;
  line-height: 130%;
  color: var(--gray-text);
}

.cabinet-news-modal__wrap-date {
  padding-top: 18px;
  font-size: 15px;
  line-height: 100%;
  color: rgba(15, 15, 15, 0.4);
}

.cabinet-news-modal__wrap-close {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 78px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: 0.3s;
  position: absolute;
  top: 0;
  right: -70px;
  width: 44px;
  height: 44px;
}

.cabinet-news-modal__wrap-close:hover {
  background: var(--black);
}

.cabinet-news-modal__wrap-close:hover svg path {
  fill: var(--white);
}

.cabinet-news-modal.open {
  display: flex;
}

/*===== media Личный кабинет Новости modal =====*/
@media (max-width: 680px) {
  .cabinet-news-modal {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .cabinet-news-modal__wrap {
    padding: 24px;
    width: 350px;
    margin: 0 auto;
  }

  .cabinet-news-modal__wrap-title {
    font-size: 18px;
  }

  .cabinet-news-modal__wrap-text {
    font-size: 16px;
  }

  .cabinet-news-modal__wrap-close {
    top: -48px;
    right: 0;
    width: 36px;
    height: 36px;
  }

  .cabinet-news-modal__wrap-close svg {
    width: 12px;
    height: 12px;
  }

  .cabinet-news-modal.open {
    display: block;
  }
}

/*===== Личный кабинет Профиль =====*/
.cabinet-profil {
  display: none;
}

.cabinet-profil-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 52px;
}

.cabinet-profil-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 110%;
  padding-bottom: 32px;
}

.cabinet-profil-subtitle {
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
  padding: 42px 0 28px 0;
}

.cabinet-profil__container {
  max-width: 682px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
  row-gap: 24px;
}

.cabinet-profil__container-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cabinet-profil__container-label {
  color: var(--gray-text);
  font-size: 18px;
  line-height: 100%;
}

.cabinet-profil__container-inp {
  border: 1px solid var(--gray-line);
  border-radius: 65px;
  padding: 20px 24px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: var(--black);
}

.cabinet-profil__container-inp:hover {
  border-color: var(--black);
}

.cabinet-profil__container-inp:read-only {
  padding: 0;
  border: none;
  font-size: 20px;
  border-radius: 0;
}

.cabinet-profil__btns {
  padding-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 682px;
}

.cabinet-profil__btns-btn {
  border: 1px solid var(--gray-line);
  border-radius: 100px;
  padding: 20px 24px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  transition: 0.3s;
  cursor: pointer;
  width: 220px;
  text-align: center;
  white-space: nowrap;
}

.cabinet-profil__btns-btn:hover {
  background: var(--gray);
  border-color: var(--gray);
}

.cabinet-profil__btns-btn:active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.cabinet-profil__btns-cansel {
  display: none;
}

.cabinet-profil__btns.change .cabinet-profil__btns-btn {
  width: 100%;
  background: var(--gold);
  border: none;
}

.cabinet-profil__btns.change .cabinet-profil__btns-btn:hover {
  background: #f5e9c0;
}

.cabinet-profil__btns.change .cabinet-profil__btns-btn:active {
  background: #ffeba5;
}

.cabinet-profil__btns.change .cabinet-profil__btns-cansel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray);
  border-radius: 100px;
  padding: 20px 24px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid var(--gray);
}

.cabinet-profil__btns.change .cabinet-profil__btns-cansel:hover {
  background: transparent;
}

.cabinet-profil__btns.change .cabinet-profil__btns-cansel:active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.cabinet-profil.active {
  display: block;
}

/*===== media Личный кабинет Профиль =====*/
@media (max-width: 1400px) {
  .cabinet-profil-wrap {
    padding: 32px;
  }
}

@media (max-width: 1160px) {
  .cabinet-profil-wrap {
    padding: 24px;
  }

  .cabinet-profil-title {
    font-size: 24px;
    padding-bottom: 24px;
  }

  .cabinet-profil-subtitle {
    font-size: 20px;
    padding: 24px 0 28px 0;
  }

  .cabinet-profil__container {
    column-gap: 24px;
    row-gap: 20px;
  }

  .cabinet-profil__container-label {
    font-size: 16px;
  }

  .cabinet-profil__container-inp {
    padding: 18px 24px;
  }

  .cabinet-profil__container-inp:read-only {
    font-size: 18px;
  }

  .cabinet-profil__btns {
    padding-top: 24px;
    gap: 24px;
  }

  .cabinet-profil__btns-btn {
    padding: 18px 20px;
    font-size: 16px;
    width: 177px;
  }

  .cabinet-profil__btns.change .cabinet-profil__btns-cansel {
    padding: 18px 24px;
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .cabinet-profil-wrap {
    border-radius: 18px;
    padding: 18px;
  }

  .cabinet-profil-title {
    font-size: 18px;
  }

  .cabinet-profil-subtitle {
    font-size: 18px;
    padding: 32px 0 28px 0;
  }

  .cabinet-profil__container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cabinet-profil__container-inp {
    padding: 16px 24px;
  }

  .cabinet-profil__btns {
    padding-top: 24px;
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .cabinet-profil__btns-btn {
    padding: 16px 20px;
    width: 100%;
  }

  .cabinet-profil__btns.change .cabinet-profil__btns-cansel {
    padding: 16px 24px;
  }
}

/*===== Личный кабинет Каталог =====*/
.cabinet-catalog {
  display: none;
}

.cabinet-catalog .sort {
  padding-top: 0;
}

.cabinet-catalog .sort__wrap {
  padding-top: 32px;
  border-top: 1px solid var(--gray-line);
}

.cabinet-catalog.active {
  display: block;
}

/*===== media Личный кабинет Каталог =====*/
@media (max-width: 1400px) {
  .cabinet-catalog .sort__wrap {
    padding-top: 42px;
  }
}

@media (max-width: 1160px) {
  .cabinet-catalog .sort__wrap {
    padding-top: 24px;
  }

  .cabinet-catalog .sort__wrap-filter {
    top: 24px;
  }
}

@media (max-width: 680px) {
  .cabinet-catalog .sort__wrap {
    padding-top: 0;
    border: none;
  }
}

/*===== Вход в личный кабинет =====*/
.vhod {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(15, 15, 15, 0.4);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}

.vhod__form {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 42px;
  width: 527px;
  height: 100%;
}

.vhod__form-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 110%;
}

.vhod__form-box {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vhod__form-box input {
  border: 1px solid var(--gray-line);
  border-radius: 65px;
  padding: 20px 24px;
  width: 443px;
  height: 56px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: var(--black);
}

.vhod__form-box input::placeholder {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: rgba(15, 15, 15, 0.6);
}

.vhod__form-box input:focus {
  border-color: var(--black);
}

.vhod__form-btn {
  margin-top: 20px;
  background: var(--gold);
  border-radius: 100px;
  padding: 20px 24px;
  width: 443px;
  height: 58px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: var(--black);
  cursor: pointer;
  transition: 0.3s;
}

.vhod__form-btn:hover {
  background: #f5e9c0;
}

.vhod__form-btn:active {
  background: #ffeba5;
}

.vhod__form-bot {
  padding-top: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: var(--gray-text);
}

.vhod__form-reg {
  transition: 0.3s;
  cursor: pointer;
}

.vhod__form-reg:hover {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.vhod__form-forgot {
  transition: 0.3s;
  cursor: pointer;
}

.vhod__form-forgot:hover {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.vhod__form-close {
  position: absolute;
  top: 0;
  right: -60px;
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 78px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: 0.3s;
}

.vhod__form-close:hover {
  background: var(--black);
}

.vhod__form-close:hover svg path {
  fill: var(--white);
}

.vhod.open {
  display: flex;
}

/*===== media Вход в личный кабинет =====*/
@media (max-width: 1160px) {
  .vhod__form {
    padding: 32px;
    width: 400px;
    height: 353px;
  }

  .vhod__form-title {
    font-size: 24px;
  }

  .vhod__form-box input {
    padding: 18px 24px;
    width: 336px;
    height: 52px;
  }

  .vhod__form-btn {
    width: 336px;
  }

  .vhod__form-bot {
    font-size: 15px;
  }

  .vhod__form-close {
    right: -50px;
    height: 36px;
    width: 36px;
  }

  .vhod__form-close svg {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 680px) {
  .vhod__form {
    padding: 24px;
    width: 350px;
    height: 303px;
  }

  .vhod__form-title {
    font-size: 18px;
  }

  .vhod__form-box {
    padding-top: 20px;
  }

  .vhod__form-box input {
    padding: 16px 24px;
    width: 302px;
    height: 48px;
  }

  .vhod__form-btn {
    width: 302px;
    height: 48px;
    font-size: 16px;
  }

  .vhod__form-bot {
    padding-top: 18px;
  }

  .vhod__form-close {
    right: 0;
    top: -50px;
  }
}

/*===== Регистрация =====*/
.reg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(15, 15, 15, 0.4);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}

.reg__form {
  background: var(--white);
  border-radius: 24px;
  padding: 42px;
  width: 527px;
  height: 850px;
  position: relative;
}

.reg__form-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 110%;
}

.reg__form-subtitle {
  padding-top: 14px;
  font-size: 18px;
  line-height: 140%;
  color: var(--gray-text);
}

.reg__form-box {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reg__form-box input {
  border: 1px solid var(--gray-line);
  border-radius: 65px;
  padding: 20px 24px;
  width: 443px;
  height: 56px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: var(--black);
}

.reg__form-box input::placeholder {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: rgba(15, 15, 15, 0.6);
}

.reg__form-box input:focus {
  border-color: var(--black);
}

.reg__form-btn {
  margin-top: 20px;
  background: var(--gold);
  border-radius: 100px;
  padding: 20px 24px;
  width: 443px;
  height: 58px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: var(--black);
  cursor: pointer;
  transition: 0.3s;
}

.reg__form-btn:hover {
  background: #f5e9c0;
}

.reg__form-btn:active {
  background: #ffeba5;
}

.reg__form-close {
  position: absolute;
  top: 0;
  right: -60px;
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 78px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: 0.3s;
}

.reg__form-close:hover {
  background: var(--black);
}

.reg__form-close:hover svg path {
  fill: var(--white);
}

.reg__form-bot {
  display: flex;
  gap: 10px;
  padding-top: 12px;
}

.reg__form-check {
  display: none;
}

.reg__form-check:checked~.reg__form-checkmark::after {
  background: var(--black);
  border-color: var(--black);
  background-image: url(/local/templates/.default/images/check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.reg__form-checkmark {
  position: relative;
}

.reg__form-checkmark::after {
  content: "";
  display: block;
  border: 1px solid var(--gray-line);
  border-radius: 3px;
  width: 14px;
  height: 14px;
  background: transparent;
}

.reg__form-text {
  font-size: 14px;
  line-height: 130%;
  color: var(--gray-text);
}

.reg__form-text a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  font-size: 14px;
  line-height: 130%;
  color: var(--gray-text);
  display: inline;
}

.reg__form-vhod {
  padding-top: 24px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: var(--gray-text);
  display: inline-block;
}

.reg__form-vhod:hover {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.reg.open {
  display: flex;
}

.just-validate-error-field~.reg__form-checkmark::after {
  border: 1px solid #e01616 !important;
}

/*===== media Вход в личный кабинет =====*/
@media (max-width: 1160px) {
  .reg__form {
    padding: 32px;
    width: 400px;
    height: 778px;
  }

  .reg__form-title {
    font-size: 24px;
  }

  .reg__form-subtitle {
    padding-top: 12px;
    font-size: 15px;
  }

  .reg__form-box {
    padding-top: 20px;
    gap: 10px;
  }

  .reg__form-box input {
    padding: 18px 24px;
    width: 336px;
    height: 52px;
  }

  .reg__form-btn {
    margin-top: 14px;
    width: 336px;
  }

  .reg__form-close {
    right: -50px;
    height: 36px;
    width: 36px;
  }

  .reg__form-close svg {
    width: 12px;
    height: 12px;
  }

  .reg__form-vhod {
    padding-top: 18px;
    font-size: 15px;
  }
}

@media (max-width: 680px) {
  .reg__form {
    padding: 24px;
    width: 350px;
    height: 725px;
  }

  .reg__form-title {
    font-size: 18px;
  }

  .reg__form-subtitle {
    padding-top: 10px;
  }

  .reg__form-box input {
    padding: 16px 18px;
    width: 302px;
    height: 48px;
  }

  .reg__form-btn {
    width: 302px;
    font-size: 16px;
  }

  .reg__form-close {
    top: -50px;
    right: 0;
  }

  .reg__form-vhod {
    padding-top: 14px;
  }
}

/*===== Восстановление пароля =====*/
.pas {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(15, 15, 15, 0.4);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}

.pas__form {
  background: var(--white);
  border-radius: 24px;
  padding: 42px;
  width: 527px;
  height: 100%;
  position: relative;
}

.pas__form-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 110%;
}

.pas__form-subtitle {
  padding-top: 14px;
  font-size: 18px;
  line-height: 140%;
  color: var(--gray-text);
}

.pas__form-box {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pas__form-box input {
  border: 1px solid var(--gray-line);
  border-radius: 65px;
  padding: 20px 24px;
  width: 443px;
  height: 56px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: var(--black);
}

.pas__form-box input::placeholder {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: rgba(15, 15, 15, 0.6);
}

.pas__form-box input:focus {
  border-color: var(--black);
}

.pas__form-btn {
  margin-top: 20px;
  background: var(--gold) !important;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  width: 443px;
  height: 58px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: var(--black);
  cursor: pointer;
  transition: 0.3s;
}

.pas__form-btn:hover {
  background: #f5e9c0;
}

.pas__form-btn:active {
  background: #ffeba5;
}

.pas__form-close {
  position: absolute;
  top: 0;
  right: -60px;
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 78px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: 0.3s;
}

.pas__form-close:hover {
  background: var(--black);
}

.pas__form-close:hover svg path {
  fill: var(--white);
}

.pas__form-bot {
  display: flex;
  gap: 10px;
  padding-top: 12px;
}

.pas__form-check {
  display: none;
}

.pas__form-check:checked~.pas__form-checkmark::after {
  background: var(--black);
  border-color: var(--black);
  background-image: url(/local/templates/.default/images/check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pas__form-checkmark {
  position: relative;
}

.pas__form-checkmark::after {
  content: "";
  display: block;
  border: 1px solid var(--gray-line);
  border-radius: 3px;
  width: 14px;
  height: 14px;
  background: transparent;
}

.pas__form-text {
  font-size: 14px;
  line-height: 130%;
  color: var(--gray-text);
}

.pas__form-text a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  font-size: 14px;
  line-height: 130%;
  color: var(--gray-text);
  display: inline;
}

.pas__form-vhod {
  padding-top: 24px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: var(--gray-text);
  display: inline-block;
}

.pas__form-vhod:hover {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.pas.open {
  display: flex;
}

.just-validate-error-field~.pas__form-checkmark::after {
  border: 1px solid #e01616 !important;
}

/*===== media Вход в личный кабинет =====*/
@media (max-width: 1160px) {
  .pas__form {
    padding: 32px;
    width: 400px;
    height: 450px;
  }

  .pas__form-title {
    font-size: 24px;
  }

  .pas__form-subtitle {
    padding-top: 12px;
    font-size: 15px;
  }

  .pas__form-box {
    padding-top: 20px;
    gap: 10px;
  }

  .pas__form-box input {
    padding: 18px 24px;
    width: 336px;
    height: 52px;
  }

  .pas__form-btn {
    margin-top: 14px;
    width: 336px;
  }

  .pas__form-close {
    right: -50px;
    height: 36px;
    width: 36px;
  }

  .pas__form-close svg {
    width: 12px;
    height: 12px;
  }

  .pas__form-vhod {
    padding-top: 18px;
    font-size: 15px;
  }
}

@media (max-width: 680px) {
  .pas__form {
    padding: 24px;
    width: 350px;
    height: 415px;
  }

  .pas__form-title {
    font-size: 18px;
  }

  .pas__form-subtitle {
    padding-top: 10px;
  }

  .pas__form-box input {
    padding: 16px 18px;
    width: 302px;
    height: 48px;
  }

  .pas__form-btn {
    width: 302px;
    font-size: 16px;
  }

  .pas__form-close {
    top: -50px;
    right: 0;
  }

  .pas__form-vhod {
    padding-top: 14px;
  }
}

/*===== Политика конфиденциальности =====*/
.policy-text {
  padding-top: 56px;
  font-size: 16px;
  line-height: 150%;
}

/*===== media Политика конфиденциальности =====*/
@media (max-width: 1400px) {
  .policy-text {
    padding-top: 42px;
  }
}

@media (max-width: 1160px) {
  .policy-text {
    padding-top: 32px;
  }
}

@media (max-width: 680px) {
  .policy-text {
    padding-top: 28px;
    font-size: 15px;
  }
}

.tovar-cards__card-prise-wrap {
  display: none;
  gap: 24px;
  align-items: flex-end;
}

.tovar-cards__card-prise-pieces {
  color: rgba(15, 15, 15, 0.6);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.02em;
}

.tovar-cards__card-counter-counter-wrap {
  position: relative;
  width: 100%;
  margin-top: 26px;
  height: max-content;
}

.tovar-cards__card-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(38, 38, 38, 0.2);
  border-radius: 100px;
  padding: 20px 12px;
  width: 100%;
  height: 60px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #0f0f0f;
}

.tovar-cards__card-counter-round {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  border-radius: 100%;
  cursor: pointer;
  background: #ececec;
}

.tovar-cards__card-counter-plus {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.tovar-cards__card-counter-minus {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}

.catalog__cards.compact .tovar-cards__card-counter-counter-wrap {
  display: none !important;
}

.catalog__cards.compact .tovar-cards__card-prise-wrap {
  display: block;
  gap: unset;
}

.catalog__cards.compact .tovar-cards__card-add {
  display: flex !important;
}

.catalog__cards.compact .tovar-cards__card-prise-wrap .tovar-cards__card-prise-pieces {
  display: none !important;
}

.in-cart .tovar-cards__card-add {
  display: none;
}

.in-cart .tovar-cards__card-prise-wrap {
  display: flex;
}

.tovar-cards__card.in-cart .tovar-cards__card-prise-pieces {
  display: block;
}

.tovar-cards__card:not(.in-cart) .tovar-cards__card-counter-counter-wrap {
  display: none;
}

@media (max-width: 768px) {
  .tovar-cards__card-prise-wrap {
    gap: 16px;
  }

  .tovar-cards__card-counter-counter-wrap {
    margin-top: 12px;
  }

  .tovar-cards__card-counter {
    height: 42px;
    font-size: 16px;
  }

  .tovar-cards__card-counter-round {
    height: 32px;
    width: 32px;
  }

  .tovar-cards__card-counter-minus {
    left: 5px;
  }

  .tovar-cards__card-counter-plus {
    right: 5px;
  }
}

@media (min-width: 769px) and (max-width: 1919px) {
  .tovar-cards__card-counter-counter-wrap {
    margin-top: 18px;
  }

  .tovar-cards__card-counter {
    height: 56px;
  }

  .tovar-cards__card-counter-minus {
    left: 10px;
  }

  .tovar-cards__card-counter-plus {
    right: 10px;
  }

  .tovar-cards__card-prise-wrap {
    gap: 18px;
  }
}


.cabinet-help__form-file .bx-input-file-desc {
  display: none;
}