* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  border: none;
  font-family: "Inter", sans-serif;
}

/* Фикс горизонтального дергания */
body {
  overflow-x: hidden;
  touch-action: pan-y;
}

.container {
  max-width: 1456px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
}

@media (max-width: 1550px) {
  .container {
    max-width: 1100px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  height: 100vh;
  background-color: #fff;
}

.form-notification {
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
  display: none;
}

.form-notification--black {
  color: #000;
}

.form-notification.show {
  display: block;
}

.hidden {
  visibility: hidden;
}

.g-recaptcha {
  margin-bottom: 15px;
}

@media ((min-width: 1100px) and (max-width: 1550px)) {
  .form-notification {
    font-size: 12px;
    margin-bottom: 11.25px;
  }

  .g-recaptcha {
    zoom: .75;
    margin-bottom: 11.25px;
  }
}

/* ============================================= HEADER ============================================= */
/* ============================================= HEADER ============================================= */
/* ============================================= HEADER ============================================= */

.header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 0;
}

.header__wrapper-separator {
  background: #303030;
  height: 1px;
  width: 100%;
  margin: 25px 0;
}

.header__content-block {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header__content-text {
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__content-text img {
  width: 18px;
}

.header__content-text div {
  display: flex;
  gap: 15px;
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}

.header__logo {
  z-index: 100;
}

.header__logo img {
  max-width: 246px;
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.header__social {
  display: flex;
  gap: 13px;
  margin: 0 auto;
}

.header__social a {
  transition: .15s;
  width: 33px;
  height: 33px;
  text-align: center;
}

.header__social a:active {
  transform: scale(.9);
}

.header__social a svg path {
  transition: .15s;
}

.header__social a:hover svg path {
  fill: #ffbb43;
}

.header__nav a,
.lang,
.lang__list-link,
.header__personal a,
.header__burger a {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  transition: .15s;
}

.header__personal a:first-child {
  color: #fff;
}

.header__nav a:hover,
.lang:hover,
.lang__list-link:hover,
.header__personal a:hover {
  color: #ffbb43;
}

.header__content-text a {
  display: block;
  color: #fff;
  font-weight: 400;
  transition: .15s;
}

.header__content-text a:hover {
  color: #ffbb43;
}

.lang {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  cursor: pointer;
}

.lang svg {
  height: 13px;
}

.langs {
  position: relative;
}

.lang__list {
  position: absolute;
  background-color: #292929;
  padding: 10px;
  border-radius: 5px;
  top: 25px;
  right: 0;
  z-index: 1;
  border: 1px solid #343434;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: scale(0);
  transition: .15s;
}

.lang__list.active {
  max-height: 150px;
  transform: scale(1);
  opacity: 1;
  transition: .15s;
}

.header__personal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.header__personal a:last-child {
  position: relative;
  padding-left: 12px;
}

.header__personal a:last-child::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #ffbb43;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.header__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (max-width: 420px) {
  .header__logo img {
    max-width: 155px;
  }
}

/* ============================================= BURGER ============================================= */
/* ============================================= BURGER ============================================= */
/* ============================================= BURGER ============================================= */

.burger {
  display: none;
  position: relative;
  z-index: 100;
  align-items: center;
  justify-content: flex-end;
  width: 50px;
  height: 11px;
  cursor: pointer;
}

.burger::after,
.burger::before {
  content: '';
  position: absolute;
  height: 1px;
  background-color: #fff;
  transition: all .15s ease 0s;
}

.burger::before {
  width: 50px;
  top: 0;
}

.burger::after {
  width: 31px;
  bottom: 0;
}

.burger.active::before {
  top: 50%;
  transform: rotate(-45deg);
}

.burger.active::after {
  bottom: 50%;
  transform: rotate(45deg);
}

body:has(.burger.active) {
  overflow: hidden;
}

.header__burger {
  display: none;
}

.header__logo--mobile {
  display: none;
}

@media (max-width: 1100px) {
  .header__logo--mobile {
    display: block;
  }

  .header__content {
    flex-direction: column;
  }

  .header__content-block {
    flex-direction: column;
  }

  .burger {
    display: flex;
  }

  .header__wrapper {
    display: none;
  }

  .header__burger {
    flex-direction: column;
    align-items: center;
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -10;
    padding: 100px 20px;
    background-color: #1d1d1d;
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transition: .15s;
    display: flex;
    justify-content: space-between;
  }

  .header__burger.active {
    visibility: visible;
    opacity: 1;
    z-index: 50;
  }

  .header__content-text {
    justify-content: center;
  }

  .header__nav a,
  .lang,
  .lang__list-link,
  .header__personal a,
  .header__content-text,
  .header__burger a {
    font-size: 18px;
  }

  .lang__list {
    top: 30px;
  }
}

@media (max-height: 600px) {
  .header__nav {
    gap: 15px;
  }

  .header__burger {
    padding-bottom: 60px;
  }
}

@media (max-width: 420px) {

  .header__nav a,
  .lang,
  .lang__list-link,
  .header__personal a,
  .header__burger a,
  .header__content-text {
    font-size: 16px;
  }
}

/* ============================================= HERO ============================================= */
/* ============================================= HERO ============================================= */
/* ============================================= HERO ============================================= */

.hero {
  position: relative;
  height: 100vh;
}

.hero__content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  max-width: 750px;
}

.hero__title {
  font-weight: 900;
  font-size: 55px;
  line-height: 126%;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}

.hero__title span {
  background: linear-gradient(180deg, #ffb835 0%, #ffbf4a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  margin-bottom: 35px;
}

.hero__btns {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: start;
  gap: 19px;
}

.hero__btn-1 {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffbb43;
  border-radius: 10px;
  padding: 15px;
  gap: 12px;
  max-width: 283px;
  width: 100%;
  position: relative;
  transition: .15s;
}

.hero__btn-1:hover {
  background-color: #ffbb43;
}

.hero__btn-1:active {
  background-color: #fff;
  color: #ffbb43;
}

.hero__btn-1:active svg path {
  stroke: #ffbb43;
}

.hero__btn-1.inactive {
  background-color: #e4e4e4;
  color: #888888;
  border-color: #e4e4e4;
  cursor: not-allowed;
  pointer-events: none;
}

.hero__btn-1.inactive svg path {
  stroke: #888888;
}

.hero__btn-1 svg {
  position: absolute;
  right: 15px;
}

.hero__btn-2 {
  border: 2px solid #ffbb43;
  border-radius: 10px;
  padding: 15px;
  max-width: 283px;
  width: 100%;
  background: #ffbb43;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  transition: .15s;
}

.hero__btn-2:hover {
  background-color: #ffc869;
  border-color: #ffc869;
}

.hero__btn-2:active {
  background-color: #fff;
  color: #ffbb43;
  border-color: #ffbb43;
}

.hero__btn-2.inactive {
  background-color: #e4e4e4;
  color: #888888;
  border-color: #e4e4e4;
  cursor: not-allowed;
  pointer-events: none;
}

.hero__bg {
  width: 100%;
  height: 100vh;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transform: scaleX(-1);
  position: relative;
  z-index: -2;
}

.hero__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.7));
  pointer-events: none;
  z-index: -1;
}

.hero__social {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-height: 650px) {
  .hero__social {
    padding-bottom: 75px;
  }
}

@media ((max-height: 600px) and (max-width: 440px)) {
  .hero__social {
    padding-bottom: 350px !important;
  }
}

.hero__social::before {
  content: "";
  position: absolute;
  left: -100%;
  background: #ffbb43;
  height: 1px;
  width: calc(100% - 15px);
}

.hero__social a {
  transition: .15s;
  width: 33px;
  height: 33px;
  text-align: center;
}

.hero__social a:active {
  transform: scale(.9);
}

.hero__social a svg path {
  transition: .15s;
}

.hero__social a:hover svg path {
  fill: #ffbb43;
}

@media (max-width: 650px) {
  .hero__social {
    padding-bottom: 200px;
  }

  .hero__btns {
    flex-direction: column-reverse;
    gap: 15px;
  }

  .hero__btn-1 {
    max-width: 100%;
  }

  .hero__btn-2 {
    max-width: 100%;
  }

  .hero__social {
    width: fit-content;
    margin: 0 auto;
  }

  .hero__social::before {
    left: -300px;
    width: calc(300px - 15px);
  }
}

@media (max-width: 600px) {
  .hero__title {
    font-size: 30px;
  }

  .hero__subtitle {
    font-size: 14px;
  }

  .hero__btns {
    margin-bottom: 60px;
  }

  .hero__btns {
    gap: 10px;
  }

  .hero__btn-1 {
    font-size: 15px;
  }

  .hero__btn-2 {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .hero__title {
    font-size: 25px;
    max-width: 250px;
  }

  .hero__subtitle {
    font-size: 14px;
    margin-bottom: 60px;
    max-width: 250px;
  }

  .hero__btns {
    margin-bottom: 60px;
  }

  .hero__btns {
    gap: 10px;
  }

  .hero__btn-1 {
    font-size: 14px;
    padding: 12px 20px 12px 12px;
  }

  .hero__btn-2 {
    font-size: 14px;
    padding: 12px;
  }
}

/* ============================================= CATALOG ============================================= */
/* ============================================= CATALOG ============================================= */
/* ============================================= CATALOG ============================================= */

.catalog {
  padding: 70px 0 70px;
  scroll-margin-top: -35px;
}

.catalog__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.catalog__title-wrapper {
  display: flex;
  gap: 45px;
  align-items: center;
  flex-wrap: wrap;
}

.catalog__title {
  font-style: italic;
  font-weight: 800;
  font-size: 40px;
  text-transform: uppercase;
  color: #2d2d2d;
}

.catalog__title span {
  background: linear-gradient(180deg, #ffb835 0%, #ffbf4a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.catalog__found {
  background: #202020;
  border-radius: 100px;
  padding: 13.5px 29.5px;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  color: #fff;
}

.catalog__search {
  border: 1px solid #dfdfdf;
  border-radius: 100px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  min-width: 250px;
}

.catalog__search input {
  font-weight: 500;
  padding: 13px 0 13px 15px;
  border-radius: 100px;
  font-size: 16px;
  outline: none;
  color: #000;
  width: 100%;
}

.catalog__search input::placeholder {
  color: #a2a2a2;
}

.catalog__search button {
  cursor: pointer;
  background: none;
  padding: 12px 15px;
}

.catalog__search button img {
  width: 18px;
  height: 18px;
}

.catalog__inner {
  display: flex;
  flex-direction: column;
  gap: 37px;
}

.catalog__left {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  background: #fafafa;
  padding: 30px 35px;
}

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

.catalog__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 304px;
  width: 100%;
}

.catalog__item-title {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  position: relative;
}

.catalog__item-title span {
  position: absolute;
  right: 0;
  font-weight: 500;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.4);
}

.catalog__item-title img {
  width: 19px;
}

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

.catalog__select-top {
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  border-radius: 6px;
  padding: 11.5px 17px;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.catalog__select-top img {
  transition: .15s;
}

.catalog__select-list {
  background: #fff;
  border-radius: 6px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 7.5px;
  display: none;
}

.catalog__select-list label {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  padding: 10px;
  background: #fff;
  transition: .15s;
}

.catalog__select-list label input[type="radio"],
.catalog__select-list label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.catalog__select-list label:has(input[type="radio"]:checked),
.catalog__select-list label:has(input[type="checkbox"]:checked) {
  border-color: #ffbf4a;
}

.catalog__select.active .catalog__select-top img {
  transform: rotate(180deg);
}

.catalog__select.active .catalog__select-list {
  display: flex;
}

.catalog__range {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-weight: 600;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.4);
}

.catalog__range input {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  max-width: 117px;
  width: 100%;
  background: #fff;
  padding: 16px;
  font-weight: 600;
  font-size: 15px;
  color: #000;
  outline: none;
  transition: .15s;
}

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

.catalog__range input {
  -moz-appearance: textfield;
  appearance: textfield;
}

.catalog__range input:focus {
  border-color: #ffb936;
}

.catalog__choice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

.catalog__choice label {
  font-weight: 600;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  padding: 14px 11px;
  background: #fff;
  text-align: center;
  width: calc(50% - 6px);
  transition: .15s;
}

.catalog__choice label input[type="radio"],
.catalog__choice label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.catalog__choice label:has(input[type="radio"]:checked),
.catalog__choice label:has(input[type="checkbox"]:checked) {
  color: #000;
  border: 1px solid #ffbf49;
}

.catalog__filters-btns {
  display: flex;
  align-items: center;
  gap: 42px;
}

.catalog__filters-btn {
  border-radius: 6px;
  padding: 17px;
  width: 100%;
  background: #ffb835;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  cursor: pointer;
  transition: .15s;
}

.catalog__filters-btn--clear {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  color: rgba(0, 0, 0, .7);
}

.catalog__filters-btn--clear:disabled {
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}

.catalog__filters-btn:hover {
  background: #ffcb70;
}

.catalog__filters-btn:active {
  background: #ffffff;
  color: #ffbb43;
}

.catalog__filters-btn.inactive {
  background: #e4e4e4;
  color: #888888;
  cursor: not-allowed;
  pointer-events: none;
}

.catalog__filters-btn:last-child {
  margin-bottom: 0;
}

.catalog__right {
  width: 100%;
}

.catalog__cards {
  display: flex;
  gap: 30px 25px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}

.catalog__card-wrapper {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 334px;
  min-width: 275px;
}

.catalog__card {
  display: block;
  border-radius: 8px;
  background: #fafafa;
  width: 100%;
  transition: .15s;
}

.catalog__card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(172deg, #ffa600 0%, #ffb936 100%);
  border-radius: 8px;
  z-index: -1;
  opacity: 0;
  transition: .15s;
}

.catalog__card:hover::before {
  opacity: 1;
}

.catalog__card-img-wrapper {
  position: relative;
  margin-bottom: 15px;
  aspect-ratio: 304 / 221;
}

.catalog__card-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.catalog__card-img-info {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -27.5px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.catalog__card-img-info span {
  display: flex;
  gap: 10px;
  align-items: center;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 13px;
  padding: 5px 18px;
  color: #fff;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.catalog__card-img-info span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffb733;
  border-radius: 6px;
  transform: skewX(-12deg);
  z-index: -1;
}

.catalog__card-img-info-new::before {
  background: #1440cf !important;
}

.catalog__card-img-info-discount::before {
  background: #b20f1c !important;
}

.catalog__card-img-info-sold::before {
  background: #d30c1d !important;
}

.catalog__card-img-info-availability::before {
  background: #ffa600 !important;
}

.catalog__card {
  padding: 15px;
}

.catalog__card-img-article {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 5px;
  padding: 6px 8px;
  color: rgba(0, 0, 0, 0.5);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.catalog__card-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.catalog__card-title h3 {
  font-weight: 800;
  font-size: 21px;
  color: #000;
}

.catalog__card-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.catalog__card-info span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  padding: 8px;
  background: #fff;
  width: fit-content;
}

.catalog__card-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 18px;
}

.catalog__card-price p {
  font-weight: 700;
  font-size: 24px;
  color: #2d2d2d;
}

.catalog__card-price p span {
  color: #ffb835;
}

.catalog__card-price div {
  font-weight: 400;
  font-size: 16px;
  color: rgba(45, 45, 45, 0.5);
  display: flex;
  flex-direction: column;
  align-items: end;
}

.catalog__card-price div span {
  font-weight: 500;
}

.catalog__show {
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  text-align: center;
  color: #ffbb43;
  background: #fafafa;
  border-radius: 6px;
  padding: 15px;
  width: 100%;
  cursor: pointer;
  display: none;
  transition: .15s;
}

.catalog__show:hover {
  background: linear-gradient(172deg, #ffa600 0%, #ff970f 100%);
  color: #fff;
}

.catalog__show.active {
  display: block;
}

.catalog__empty {
  font-style: italic;
  font-weight: 900;
  font-size: 30px;
  background: linear-gradient(172deg, #ffa600 0%, #ff970f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto;
}

@media ((min-width: 1100px) and (max-width: 1550px)) {
  .catalog {
    padding: 52px 0 52px;
    scroll-margin-top: -26px;
  }

  .catalog__top {
    gap: 26.25px;
    margin-bottom: 30px;
  }

  .catalog__title-wrapper {
    gap: 33.75px;
  }

  .catalog__title {
    font-size: 30px;
  }

  .catalog__found {
    padding: 10px 22.5px;
    font-size: 11.25px;
  }

  .catalog__search {
    min-width: 187.5px;
  }

  .catalog__search input {
    padding: 9.75px 0 9.75px 11.25px;
    font-size: 12px;
  }

  .catalog__search button {
    padding: 9px 11.25px;
  }

  .catalog__search button img {
    width: 13.5px;
    height: 13.5px;
  }

  .catalog__inner {
    gap: 27.75px;
  }

  .catalog__left {
    border-radius: 6px;
    padding: 22.5px 26.25px;
  }

  .catalog__filters {
    margin-bottom: 15px;
    gap: 15px;
  }

  .catalog__item {
    gap: 11.25px;
    max-width: 228px;
  }

  .catalog__item-title {
    gap: 8.25px;
    font-size: 12px;
  }

  .catalog__item-title span {
    font-size: 12px;
  }

  .catalog__item-title img {
    width: 14.25px;
  }

  .catalog__select {
    gap: 11.25px;
  }

  .catalog__select-top {
    border-radius: 4.5px;
    padding: 8.5px 12.75px;
    font-size: 12px;
    gap: 7.5px;
  }

  .catalog__select-list {
    border-radius: 4.5px;
    padding: 11.25px;
    gap: 5.5px;
  }

  .catalog__select-list label {
    font-size: 12px;
    border-radius: 4.5px;
    padding: 7.5px;
  }

  .catalog__range {
    gap: 11.25px;
    font-size: 12px;
  }

  .catalog__range input {
    border-radius: 4.5px;
    max-width: 87.75px;
    padding: 10.5px;
    font-size: 12px;
  }

  .catalog__choice {
    gap: 6px 9px;
  }

  .catalog__choice label {
    font-size: 12px;
    border-radius: 4.5px;
    padding: 10.5px 8.25px;
    width: calc(50% - 4.5px);
  }

  .catalog__filters-btns {
    gap: 31.5px;
  }

  .catalog__filters-btn {
    border-radius: 4.5px;
    padding: 12.75px;
    font-size: 12px;
  }

  .catalog__card-wrapper {
    min-width: 250px;
  }

  .catalog__cards {
    gap: 22.5px 18.75px;
    margin-bottom: 15px;
  }

  .catalog__card-wrapper {
    max-width: 250.5px;
    min-width: 206.75px;
  }

  .catalog__card {
    border-radius: 6px;
  }

  .catalog__card::before {
    border-radius: 6px;
  }

  .catalog__card-img-wrapper {
    margin-bottom: 11.25px;
  }

  .catalog__card-img {
    border-radius: 6px 6px 0 0;
  }

  .catalog__card-img-info {
    top: -20.625px;
    gap: 5.25px;
  }

  .catalog__card-img-info span {
    gap: 7.5px;
    font-size: 9.75px;
    padding: 3.75px 13.5px;
  }

  .catalog__card-img-info span::before {
    border-radius: 4.5px;
  }

  .catalog__card {
    padding: 11.25px;
  }

  .catalog__card-img-article {
    right: 7.5px;
    bottom: 7.5px;
    font-size: 10.5px;
    border-radius: 3.75px;
    padding: 4.5px 6px;
  }

  .catalog__card-title {
    margin-bottom: 13.5px;
  }

  .catalog__card-title h3 {
    font-size: 15.75px;
  }

  .catalog__card-info {
    gap: 7.5px;
    margin-bottom: 13.5px;
  }

  .catalog__card-info span {
    gap: 7.5px;
    font-size: 12px;
    border-radius: 3.75px;
    padding: 6px;
  }

  .catalog__card-price {
    padding-top: 13.5px;
  }

  .catalog__card-price p {
    font-size: 18px;
  }

  .catalog__card-price div {
    font-size: 12px;
  }

  .catalog__show {
    font-size: 11.25px;
    border-radius: 4.5px;
    padding: 11.25px;
  }

  .catalog__empty {
    font-size: 22.5px;
  }
}

@media (max-width: 1099px) {
  .catalog__filters {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }

  .catalog__item {
    max-width: 100%;
  }

  .catalog__range input {
    max-width: 100%;
  }

  .catalog__card-wrapper {
    max-width: 100%;
  }

  .catalog__filters-btns {
    gap: 30px;
  }
}

@media (max-width: 1000px) {
  .catalog {
    padding: 50px 0 40px;
    scroll-margin-top: -25px;
  }

  .catalog__title-wrapper {
    gap: 15px;
  }

  .catalog__top {
    gap: 15px;
  }
}

@media (max-width: 700px) {
  .catalog__filters {
    grid-template-columns: 1fr;
  }

  .catalog__filters-btns {
    gap: 12px;
  }

  .catalog__filters-btns {
    flex-direction: column;
  }

  .catalog__left {
    padding: 20px 25px;
  }
}

@media (max-width: 650px) {
  .catalog__inner {
    flex-direction: column;
    align-items: center;
  }

  .catalog__filters-btn {
    max-width: 100%;
  }

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

  .catalog__filters-btns {
    gap: 6px;
  }

  .catalog__card {
    padding: 10px;
  }

  .catalog__card-img-info {
    top: -22.5px;
  }

  .catalog__card-img-info span {
    padding: 3px 10px;
  }

  .catalog__card-img-info span::before {
    border-radius: 5px;
  }
}

@media (max-width: 420px) {
  .catalog {
    padding-bottom: 10px;
  }

  .catalog__top {
    margin-bottom: 15px;
  }

  .catalog__title {
    font-size: 25px;
  }

  .catalog__found {
    padding: 7px 10px;
    font-size: 13px;
  }

  .catalog__search input {
    padding: 10px 0 10px 12px;
    font-size: 13px;
  }

  .catalog__search button {
    padding: 8px 12px;
  }

  .catalog__title-wrapper {
    gap: 10px;
    justify-content: space-between;
    width: 100%;
  }

  .catalog__select-top {
    font-size: 14px;
  }

  .catalog__select-list label {
    font-size: 14px;
  }

  .catalog__filters img {
    width: 14px;
    height: 14px;
  }

  .catalog__card-price p {
    font-size: 18px;
  }

  .catalog__card-price div {
    font-size: 14px;
  }

  .catalog__card-info span img {
    width: 14px;
    height: 14px;
  }

  .catalog__card-title h3 {
    font-size: 18px;
  }

  .catalog__card-info span {
    font-size: 13px;
  }

  .catalog__card-img-info span {
    font-size: 12px;
  }

  .catalog__card-img-info-availability img {
    width: 14px;
    height: 14px;
  }

  .catalog__card-img-article {
    font-size: 12px;
  }
}

/* ============================================= LIZING ============================================= */
/* ============================================= LIZING ============================================= */
/* ============================================= LIZING ============================================= */

.lizing {
  padding: 60px 0;
  background: url('../img/form-bg.jpg') no-repeat center / cover;
}

.lizing__title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.lizing__title-block h2 {
  font-weight: 900;
  font-size: 55px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.lizing__title-block h2 span {
  background: linear-gradient(180deg, #ffb835 0%, #ffbf4a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lizing__title-block p {
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  text-align: center;
}

.lizing__inner {
  display: flex;
  gap: 80px;
}

.lizing__func {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  background: #191919;
  max-width: 582px;
  border-radius: 25px;
}

.lizing__func-title {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

.lizing__calc {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

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

.lizing__calc-block-top,
.lizing__calc-end {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lizing__calc-title {
  font-weight: 600;
  font-size: 17px;
  color: #fff;
}

.lizing__calc-num {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  white-space: nowrap;
}

.lizing__calc-end .lizing__calc-num {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  color: #999;
  padding: 20px 10px 20px 24px;
}

.lizing__calc-end .lizing__calc-num span {
  color: #fff;
}

.lizing__calc-range {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: #fff;
  outline: none;
  border-radius: 4px;
}

.lizing__calc-range::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(to right,
      #ffb835 0%,
      #ffb835 var(--pos),
      #fff var(--pos),
      #fff 100%);
}

.lizing__calc-range::-moz-range-track {
  height: 4px;
  border-radius: 4px;
  background: #fff;
}

.lizing__calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background: #ffb835;
  cursor: pointer;
  margin-top: -5.5px;
}

.lizing__calc-range::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background: #ffb835;
  cursor: pointer;
}

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

.form__inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.form__inputs input,
.form__inputs textarea {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  transition: .15s;
  outline: none;
}

.form__inputs textarea {
  resize: none;
  height: 100px;
}

.form__inputs input::placeholder,
.form__inputs textarea::placeholder {
  color: #999;
}

.form__inputs input:focus,
.form__inputs textarea:focus {
  border-color: rgb(255, 184, 53, 0.5);
}

.form__inputs input.disabled {
  background: #d2d2d238 !important;
  cursor: default;
}

.form__inputs input.disabled:focus {
  border-color: #d2d2d238;
}

.lizing__form--product input:focus,
.lizing__form--product textarea:focus {
  border-color: rgb(255, 184, 53, 1);
}

.form__checkbox {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  position: relative;
  cursor: pointer;
  margin-bottom: 20px;
}

.form__checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.form__checkbox-checkmark {
  position: relative;
  display: inline-block;
  max-width: 21px;
  height: 21px;
  width: 100%;
  border: 2px solid #fff;
}

.form__checkbox-checkmark img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 1;
  width: 100%;
  opacity: 0;
  transition: .15s;
}

.form__checkbox input:checked~.form__checkbox-checkmark img {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.form__checkbox:hover .form__checkbox-checkmark img {
  opacity: 1;
  transform: translate(-50%, -50%) scale(.5);
}

.form__btn {
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 6px 0 rgba(252, 163, 66, 0.1), 0 11px 11px 0 rgba(252, 163, 66, 0.09), 0 25px 15px 0 rgba(252, 163, 66, 0.05), 0 45px 18px 0 rgba(252, 163, 66, 0.01), 0 70px 20px 0 rgba(252, 163, 66, 0);
  background: #ffb835;
  cursor: pointer;
  transition: .15s;
}

.form__btn:hover {
  background: #ffb326;
  transform: translateY(-3px);
}

.form__btn:active {
  transform: scale(.95);
}

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

.form__info-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form__info-title {
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  border-bottom: 2px solid #ffb835;
  width: fit-content;
}

.form__info-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form__info-list li {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form__info-list li div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

.form__info-list li div img {
  width: 25px;
}

.form__info-list li p,
.form__info-text {
  font-weight: 400;
  font-size: 17px;
  color: #fff;
  max-width: 550px;
}

.form__info-text {
  max-width: 750px;
}

@media ((min-width: 1100px) and (max-width: 1550px)) {
  .lizing {
    padding: 45px 0;
  }

  .lizing__title-block {
    gap: 7.5px;
    margin-bottom: 30px;
  }

  .lizing__title-block h2 {
    font-size: 41.25px;
  }

  .lizing__title-block p {
    font-size: 15px;
  }

  .lizing__inner {
    gap: 60px;
  }

  .lizing__func {
    gap: 15px;
    padding: 22.5px;
    max-width: 436.5px;
    border-radius: 18.75px;
  }

  .lizing__func-title {
    font-size: 15px;
  }

  .lizing__calc {
    gap: 26.25px;
  }

  .lizing__calc-block {
    gap: 13.5px;
  }

  .lizing__calc-title {
    font-size: 12.75px;
  }

  .lizing__calc-num {
    font-size: 15px;
  }

  .lizing__calc-end .lizing__calc-num {
    border-radius: 7.5px;
    gap: 11.25px;
    padding: 15px 7.5px 15px 18px;
  }

  .lizing__calc-range {
    height: 3px;
    border-radius: 3px;
  }

  .lizing__calc-range::-webkit-slider-runnable-track {
    height: 3px;
    border-radius: 3px;
  }

  .lizing__calc-range::-moz-range-track {
    height: 3px;
    border-radius: 3px;
  }

  .lizing__calc-range::-webkit-slider-thumb {
    width: 11.25px;
    height: 11.25px;
    margin-top: -4.125px;
  }

  .lizing__calc-range::-moz-range-thumb {
    width: 11.25px;
    height: 11.25px;
    border-radius: 100%;
  }

  .form__inputs {
    gap: 7.5px;
    margin-bottom: 18.75px;
  }

  .form__inputs input,
  .form__inputs textarea {
    font-size: 12px;
    border-radius: 7.5px;
    padding: 15px;
  }

  .form__inputs textarea {
    height: 75px;
  }

  .form__checkbox {
    gap: 11.25px;
    font-size: 12px;
    margin-bottom: 15px;
  }

  .form__checkbox-checkmark {
    max-width: 15.75px;
    height: 15.75px;
    border-width: 1.5px;
  }

  .form__btn {
    font-size: 13.5px;
    border-radius: 7.5px;
    padding: 18.5px;
  }

  .form__info {
    gap: 22.5px;
  }

  .form__info-block {
    gap: 22.5px;
  }

  .form__info-title {
    font-size: 16.5px;
    border-bottom-width: 1.5px;
  }

  .form__info-list {
    gap: 30px;
  }

  .form__info-list li {
    gap: 7.5px;
  }

  .form__info-list li div {
    gap: 6px;
    font-size: 15px;
  }

  .form__info-list li div img {
    width: 18.75px;
  }

  .form__info-list li p,
  .form__info-text {
    font-size: 12.75px;
    max-width: 412.5px;
  }

  .form__info-text {
    max-width: 562.5px;
  }
}

@media (max-width: 1100px) {
  .lizing {
    padding: 50px 0;
  }

  .lizing__title-block {
    margin-bottom: 30px;
  }

  .lizing__inner {
    gap: 40px;
  }
}

@media (max-width: 800px) {
  .lizing__inner {
    flex-direction: column;
  }

  .lizing__func {
    max-width: 100%;
  }

  .form__info {
    gap: 30px;
  }

  .form__info-block {
    gap: 30px;
  }

  .lizing__title-block {
    margin-bottom: 20px;
    gap: 5px;
  }

  .lizing__title-block h2 {
    font-size: 40px;
  }

  .lizing__title-block p {
    font-size: 16px;
  }

  .form__info {
    gap: 15px;
  }

  .form__info-title {
    margin: 0 auto;
  }

  .form__info-block {
    gap: 15px;
  }

  .form__info-block .form__info-title {
    margin: 0;
  }

  .form__info-list li div {
    gap: 8px;
  }

  .form__info-list li {
    gap: 7.5px;
  }

  .form__info-list {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .lizing__calc-title {
    font-size: 16px;
  }

  .lizing__calc-num {
    font-size: 18px;
  }

  .lizing__calc-block {
    gap: 12px;
  }

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

  .form__info-list li div {
    font-size: 18px;
  }

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

@media (max-width: 500px) {
  .lizing__func-title {
    font-size: 18px;
  }

  .lizing__calc-end .lizing__calc-num {
    gap: 5px;
    padding: 15px 7.5px 15px 15px;
  }

  .lizing__func {
    padding: 25px;
  }

  .form__inputs input, .form__inputs textarea {
    padding: 15px;
    font-size: 15px;
  }

  .form__inputs {
    gap: 7.5px;
    margin-bottom: 15px;
  }

  .form__checkbox {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .form__btn {
    font-size: 16px;
    padding: 15px;
  }

  .lizing__inner {
    gap: 30px;
  }

  .lizing {
    padding: 40px 0;
  }
}

@media (max-width: 360px) {
  .lizing__calc-num {
    font-size: 16px;
  }
}

/* ============================================= OFFER ============================================= */
/* ============================================= OFFER ============================================= */
/* ============================================= OFFER ============================================= */

.offer {
  position: relative;
  background: #fafafa;
  padding: 60px 0 192px;
  z-index: 1;
}

.offer__title {
  font-weight: 800;
  font-size: 40px;
  line-height: 126%;
  text-transform: uppercase;
  color: #2d2d2d;
  margin-bottom: 15px;
  max-width: 921px;
}

.offer__descr {
  font-weight: 500;
  font-size: 17px;
  color: #999;
  margin-bottom: 28px;
  max-width: 737px;
}

.offer__btn {
  font-weight: 600;
  font-size: 17px;
  color: #000;
  border-radius: 15px;
  padding: 30px 82.5px;
  background: #ffb835;
  display: block;
  text-align: center;
  width: fit-content;
  transition: .15s;
}

.offer__btn:hover {
  background: #ffb326;
  transform: translateY(-3px);
}

.offer__btn:active {
  transform: scale(.95);
}

.offer__img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  max-width: 750px;
  width: 100%;
}

@media ((min-width: 1100px) and (max-width: 1550px)) {
  .offer {
    padding: 45px 0 144px;
  }

  .offer__title {
    font-size: 30px;
    max-width: 690.75px;
    margin-bottom: 11.25px;
  }

  .offer__descr {
    font-size: 12.75px;
    margin-bottom: 21px;
    max-width: 552.75px;
  }

  .offer__btn {
    font-size: 12.75px;
    border-radius: 11.25px;
    padding: 22.5px 61.875px;
  }

  .offer__img {
    max-width: 500px;
  }
}

@media (max-width: 1100px) {
  .offer__img {
    max-width: 500px;
    top: auto;
    bottom: 0;
    transform: none;
  }
}

@media (max-width: 768px) {
  .offer {
    padding: 30px 0;
  }

  .offer__img {
    display: none;
  }

  .offer__title {
    font-size: 35px;
    margin-bottom: 10px;
  }

  .offer__descr {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .offer__btn {
    font-size: 17px;
    padding: 20px 60px;
  }
}

@media (max-width: 600px) {
  .offer__title {
    font-size: 30px;
  }
}

@media (max-width: 420px) {
  .offer__title {
    font-size: 25px;
  }
}

/* ============================================= COMMISSION ============================================= */
/* ============================================= COMMISSION ============================================= */
/* ============================================= COMMISSION ============================================= */

.commission {
  padding: 42px 0 100px;
}

.commission__title {
  font-weight: 800;
  font-size: 40px;
  text-transform: uppercase;
  color: #2d2d2d;
  margin-bottom: 20px;
}

.commission__grid {
  display: grid;
  grid-template-areas:
    "item1 item2 item3"
    "item4 item4 item3";
  gap: 20px;
}

.commission__grid-item {
  border-radius: 15px;
  background: #f9f9f9;
  max-width: 462px;
  max-height: 401px;
  transition: .15s;
  padding: 0 19px 45px;
  position: relative;
  overflow: hidden;
}

.commission__grid-item:hover {
  background: #000;
}

.commission__grid-item:nth-child(1) {
  grid-area: item1;
}

.commission__grid-item:nth-child(2) {
  grid-area: item2;
}

.commission__grid-item:nth-child(3) {
  grid-area: item3;
  max-height: 100%;
}

.commission__grid-item:nth-child(4) {
  grid-area: item4;
  max-width: 100%;
}

.commission__grid-num {
  font-weight: 900;
  font-size: 163px;
  color: rgba(0, 0, 0, 0.05);
  line-height: 100%;
  transition: .15s;
}

.commission__grid-item:hover .commission__grid-num {
  color: rgba(255, 255, 255, 0.2);
}

.commission__grid-title {
  font-weight: 700;
  font-size: 24px;
  color: #2d2d2d;
  margin-bottom: 15px;
  max-width: 425px;
  transition: .15s;
}

.commission__grid-item:hover .commission__grid-title {
  color: #ffb835;
}

.commission__grid-descr {
  font-weight: 400;
  font-size: 17px;
  line-height: 141%;
  color: #999;
  max-width: 454px;
  transition: .15s;
}

.commission__grid-item:hover .commission__grid-descr {
  color: #fff;
}

.commission__grid-img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 425px;
}

@media ((min-width: 1100px) and (max-width: 1550px)) {
  .commission {
    padding: 31.5px 0 75px;
  }

  .commission__title {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .commission__grid {
    gap: 15px;
  }

  .commission__grid-item {
    border-radius: 11.25px;
    max-width: 346.5px;
    max-height: 300.75px;
    padding: 0 14.25px 33.75px;
  }

  .commission__grid-num {
    font-size: 122.25px;
  }

  .commission__grid-title {
    font-size: 18px;
    margin-bottom: 11.25px;
    max-width: 318.75px;
  }

  .commission__grid-descr {
    font-size: 12.75px;
    max-width: 340.5px;
  }

  .commission__grid-img {
    max-width: 318.75px;
  }
}

@media (max-width: 1100px) {
  .commission__grid {
    grid-template-areas:
      "item1 item2"
      "item3 item3"
      "item4 item4";
  }

  .commission__grid-item {
    max-width: 100%;
  }
}

@media (max-width: 950px) {
  .commission__grid-img {
    max-width: 325px;
  }
}

@media (max-width: 850px) {
  .commission__grid-img {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .commission {
    padding: 30px 0 30px;
  }

  .commission__title {
    font-size: 35px;
    margin-bottom: 15px;
  }

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

  .commission__grid-item {
    max-height: 100%;
    padding: 0 20px 30px;
  }

  .commission__grid-num {
    font-size: 120px;
  }

  .commission__grid-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

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

  .commission__grid-item:nth-child(n) {
    grid-area: auto;
  }

  .commission__grid-img {
    display: none;
  }
}

@media (max-width: 650px) {
  .commission__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .commission__title {
    font-size: 30px;
    margin-bottom: 10px;
  }
}

@media (max-width: 420px) {
  .commission__title {
    font-size: 25px;
  }
}

/* ============================================= SELL ============================================= */
/* ============================================= SELL ============================================= */
/* ============================================= SELL ============================================= */

.sell {
  padding-bottom: 40px;
}

.sell__title {
  font-weight: 900;
  font-size: 40px;
  text-transform: uppercase;
  color: #2d2d2d;
  margin-bottom: 60px;
}

.sell__title span {
  background: linear-gradient(180deg, #ffb835 0%, #ffbf4a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.sell__list-item {
  border-radius: 15px;
  background: #f9f9f9;
  padding: 0 20px 40px;
}

.sell__list-item img {
  display: block;
  max-height: 220px;
  position: relative;
  top: -10%;
}

.sell__list-item h3 {
  font-weight: 700;
  font-size: 20px;
  color: #2d2d2d;
  margin-bottom: 10px;
}

.sell__list-item p,
.sell__list-item ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #626161;
}

.sell__list-item ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sell__form {
  padding: 40px;
  background: #000;
  border-radius: 15px;
  scroll-margin-top: 25px;
}

.sell__form-title {
  font-weight: 800;
  font-size: 40px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 40px;
}

.sell__form-title span {
  background: linear-gradient(180deg, #ffb835 0%, #ffbf4a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sell__form-inner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.sell__form-inputs {
  flex-direction: row;
  width: 66.6%;
  margin: 0;
}

.sell__form-inputs input {
  padding: 25.5px;
}

.sell__form-end {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 33.3%;
}

.sell__form .form__checkbox {
  margin-bottom: 0;
}

.sell__form .g-recaptcha {
  margin-bottom: 0;
}

@media ((min-width: 1100px) and (max-width: 1550px)) {
  .sell {
    padding-bottom: 30px;
  }

  .sell__title {
    font-size: 30px;
    margin-bottom: 45px;
  }

  .sell__list {
    gap: 15px;
    margin-bottom: 22.5px;
  }

  .sell__list-item {
    border-radius: 11.25px;
    padding: 0 15px 30px;
  }

  .sell__list-item img {
    max-height: 165px;
    top: -7.5%;
  }

  .sell__list-item h3 {
    font-size: 15px;
    margin-bottom: 7.5px;
  }

  .sell__list-item p,
  .sell__list-item ul li {
    font-size: 12px;
  }

  .sell__list-item ul {
    gap: 3.75px;
  }

  .sell__form {
    padding: 30px;
    border-radius: 11.25px;
  }

  .sell__form-title {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .sell__form-inner {
    gap: 7.5px;
  }

  .sell__form-inputs input {
    padding: 19.125px;
  }

  .sell__form-end {
    gap: 11.25px;
  }
}

@media (max-width: 1100px) {
  .sell__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .sell__form-title {
    margin-bottom: 20px;
  }
}

@media (max-width: 1000px) {
  .sell__form-inner {
    flex-direction: column;
  }

  .sell__form-inputs {
    width: 100%;
  }

  .sell__form-end {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .sell__title {
    font-size: 35px;
  }

  .sell__form-title {
    font-size: 35px;
  }
}

@media (max-width: 700px) {
  .sell__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .sell__title {
    font-size: 30px;
  }

  .sell__form {
    padding: 30px;
  }

  .sell__form-title {
    font-size: 30px;
  }

  .sell__form-inputs {
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  .sell__form {
    padding: 25px;
  }

  .sell__form-title {
    font-size: 30px;
  }

  .sell__form-title {
    margin-bottom: 15px;
  }
}

@media (max-width: 420px) {
  .sell__title {
    font-size: 25px;
  }

  .sell__form-title {
    font-size: 25px;
  }
}

@media (max-width: 400px) {
  .sell__list-item img {
    width: 80%
  }
}

/* ============================================= FOOTER ============================================= */
/* ============================================= FOOTER ============================================= */
/* ============================================= FOOTER ============================================= */

.footer {
  position: relative;
  padding: 55px 0 45px;
}

.footer__bg {
  position: absolute;
  inset: 0;
  filter: brightness(.15);
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.footer__list:nth-child(1) {
  gap: 25px;
}

.footer__list:nth-child(2) {
  gap: 30px;
}

.footer__list:nth-child(3) {
  gap: 30px;
}

.footer__list:nth-child(4) {
  gap: 50px;
}

.footer__logo {
  max-width: 274px;
  display: block;
}

.footer__logo img {
  width: 100%;
}

.footer__text {
  font-weight: 400;
  font-size: 17px;
  line-height: 129%;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer__social .header__social {
  margin: 0;
}

.footer__title {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
}

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

.footer__nav a {
  font-weight: 400;
  font-size: 17px;
  color: #fff;
  width: fit-content;
  transition: .15s;
}

.footer__nav a:hover {
  color: #ffbb43;
}

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

.footer__block img {
  max-width: 18px;
}

.footer__block-title {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__block p {
  font-weight: 400;
  font-size: 17px;
  color: #fff;
}

.footer__block a {
  font-weight: 400;
  font-size: 17px;
  color: #fff;
  width: fit-content;
  transition: .15s;
}

.footer__block a:hover {
  color: #ffbb43;
}

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

.footer__block ul li {
  font-weight: 400;
  font-size: 17px;
  color: #fff;
}

.footer__copy {
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  text-align: center;
}

@media ((min-width: 1100px) and (max-width: 1550px)) {
  .footer {
    padding: 41.25px 0 33.75px;
  }

  .footer__content {
    gap: 15px;
    margin-bottom: 75px;
  }

  .footer__list:nth-child(1) {
    gap: 18.75px;
  }

  .footer__list:nth-child(2) {
    gap: 22.5px;
  }

  .footer__list:nth-child(3) {
    gap: 22.5px;
  }

  .footer__list:nth-child(4) {
    gap: 37.5px;
  }

  .footer__logo {
    max-width: 205.5px;
  }

  .footer__text {
    font-size: 12.75px;
  }

  .footer__social {
    gap: 11.25px;
  }

  .footer__title {
    font-size: 12px;
  }

  .footer__nav {
    gap: 11.25px;
  }

  .footer__nav a {
    font-size: 12.75px;
  }

  .footer__block {
    gap: 11.25px;
  }

  .footer__block img {
    max-width: 13.5px;
  }

  .footer__block-title {
    font-size: 12px;
    gap: 7.5px;
  }

  .footer__block p {
    font-size: 12.75px;
  }

  .footer__block a {
    font-size: 12.75px;
  }

  .footer__block ul {
    gap: 11.25px;
  }

  .footer__block ul li {
    font-size: 12.75px;
  }

  .footer__copy {
    font-size: 11.25px;
  }
}

@media (max-width: 950px) {
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 50px;
  }

  .footer__list:nth-child(4) {
    gap: 30px;
  }

  .footer__copy {
    text-align: left;
  }
}

@media (max-width: 500px) {
  .footer__logo {
    max-width: 225px;
  }

  .footer__text {
    font-size: 15px;
  }

  .footer__list:nth-child(1) {
    gap: 15px;
  }

  .footer__list:nth-child(2) {
    gap: 25px;
  }

  .footer__list:nth-child(3) {
    gap: 25px;
  }

  .footer__list:nth-child(4) {
    gap: 25px;
  }

  .footer__social {
    gap: 10px;
  }

  .footer__nav a {
    font-size: 16px;
  }

  .footer__block a {
    font-size: 16px;
  }

  .footer__block p {
    font-size: 16px;
  }

  .footer__block ul li {
    font-size: 16px;
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
}

/* ============================================= PRODUCT ============================================= */
/* ============================================= PRODUCT ============================================= */
/* ============================================= PRODUCT ============================================= */

.header.bg {
  position: relative;
  left: 0;
  transform: none;
  overflow: hidden;
}

.header__bg {
  width: 100%;
  height: 100vh;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transform: scaleX(-1);
  position: relative;
  z-index: -2;
}

.header__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(7, 8, 8, 0.75) 28.27%, rgba(7, 8, 8, 0.75) 88.43%);
  pointer-events: none;
  z-index: -1;
}

.header.bg .header__wrapper-separator {
  background: #888;
}

.product {
  padding: 50px 0;
}

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

.product__left {
  max-width: 840px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product__card-img-wrapper {
  border-radius: 20px;
  position: relative;
}

.product__card-img-wrapper a {
  border-radius: 20px;
}

.product__card-img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: fill;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.product__card-img-info {
  position: absolute;
  left: 25px;
  top: 25px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.product__price-discount {
  display: block;
}

.product__card-img-info span,
.product__price-discount span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 13px;
  border-radius: 5px;
  padding: 3px 6px 3px 3px;
}

.product__card-img-info-new {
  color: #fff;
  background: #1440cf;
  font-weight: 500 !important;
  padding: 5px !important;
}

.product__card-img-info-discount {
  color: #fff;
  background: #b20f1c;
}

.product__card-img-info-sold {
  color: #fff;
  background: #d30c1d;
  padding: 5px !important;
}

.product__card-img-info-availability {
  color: #2d2d2d;
  background: #fff;
}

.product__pagination {
  position: relative;
  margin: 0 -6px;
}

.product__pagination .slick-slide {
  margin: 0 6px;
}

.slick-track {
  margin: 0;
}

.product__pagination img {
  border-radius: 10px;
  opacity: .5;
  transition: .15s;
  cursor: pointer;
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.product__pagination .slick-current img {
  opacity: 1;
}

.product__pagination img:hover {
  opacity: 1;
}

.product-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: 28px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 5;
  transition: .15s;
}

.product-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.product-arrow.prev {
  left: -12px;
  padding-right: 3px;
  padding-bottom: 3px;
}

.product-arrow.next {
  right: -12px;
  padding-left: 3px;
  padding-bottom: 3px;
}

.product__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lizing__calc--product {
  background: #000;
  border-radius: 20px;
  padding: 24px 28px;
  gap: 20px;
}

.lizing__calc--product .lizing__calc-num {
  color: #ffb835;
}

.lizing__calc--product .lizing__calc-end .lizing__calc-num {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: none;
}

.lizing__calc--product .lizing__calc-end .lizing__calc-num span {
  color: #ffb835;
}

.lizing__form--product {
  background: #efefef;
  border-radius: 20px;
  padding: 20px;
}

.lizing__form-title--product {
  font-weight: 900;
  font-size: 40px;
  text-transform: uppercase;
  color: #000;
}

.lizing__form-title--product span {
  background: linear-gradient(180deg, #ffb835 0%, #ffbf4a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lizing__form-descr--product {
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  margin-bottom: 30px;
}

.lizing__form--product .form__inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.lizing__form--product .form__inputs input {
  background: #fff;
  color: #000;
}

.lizing__form--product .form__checkbox {
  color: #000;
}

.lizing__form--product .form__checkbox-checkmark {
  border-color: #a2a2a2;
}

.lizing__form--product .form__btn {
  color: #000;
}

@media ((min-width: 1100px) and (max-width: 1550px)) {
  .product {
    padding: 37.5px 0;
  }

  .product__inner {
    gap: 15px;
  }

  .product__left {
    max-width: 649px;
    gap: 9px;
  }

  .product__card-img-wrapper {
    border-radius: 15px;
  }

  .product__card-img-wrapper a {
    border-radius: 15px;
  }

  .product__card-img {
    border-radius: 15px;
  }

  .product__card-img-info {
    left: 18.75px;
    top: 18.75px;
    gap: 5.25px;
  }

  .product__card-img-info span,
  .product__price-discount span {
    gap: 7.5px;
    font-size: 9.75px;
    border-radius: 3.75px;
    padding: 2.25px 4.5px 2.25px 2.25px;
  }

  .product__card-img-info span img,
  .product__price-discount span img {
    width: 15px;
    height: 15px;
  }

  .product__card-img-info-new {
    padding: 3.75px !important;
  }

  .product__card-img-info-sold {
    padding: 3.75px !important;
  }

  .product__pagination {
    margin: 0 -4.5px;
  }

  .product__pagination .slick-slide {
    margin: 0 4.5px;
  }

  .product__pagination img {
    border-radius: 7.5px;
  }

  .product-arrow {
    font-size: 21px;
    width: 30px;
    height: 30px;
  }

  .product-arrow.prev {
    left: -9px;
    padding-right: 2.25px;
    padding-bottom: 2.25px;
  }

  .product-arrow.next {
    right: -9px;
    padding-left: 2.25px;
    padding-bottom: 2.25px;
  }

  .product__right {
    gap: 15px;
  }

  .lizing__calc--product {
    border-radius: 15px;
    padding: 18px 21px;
    gap: 15px;
  }

  .lizing__form--product {
    border-radius: 15px;
    padding: 15px;
  }

  .lizing__form-title--product {
    font-size: 30px;
  }

  .lizing__form-descr--product {
    font-size: 12px;
    margin-bottom: 22.5px;
  }
}

@media (max-width: 1100px) {
  .product__inner {
    flex-direction: column;
  }

  .product__left {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .lizing__form-title--product {
    font-size: 35px;
  }
}

@media (max-width: 500px) {
  .product {
    padding: 30px 0;
  }

  .lizing__form-descr--product {
    margin-bottom: 20px;
  }
}

@media (max-width: 460px) {
  .product__card-img-info {
    left: 15px;
    top: 15px;
  }

  .product__pagination {
    margin: 0 -3px;
  }

  .product__pagination .slick-slide {
    margin: 0 3px;
  }

  .product-arrow {
    width: 30px;
    height: 30px;
    font-size: 22px;
  }

  .product-arrow.prev {
    left: -7px;
    padding-right: 3px;
    padding-bottom: 3px;
  }

  .product-arrow.next {
    right: -10px;
    padding-left: 3px;
    padding-bottom: 3px;
  }
}

@media (max-width: 450px) {
  .lizing__form-title--product {
    font-size: 30px;
  }

  .lizing__form-descr--product {
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .form__checkbox {
    font-size: 12px;
  }

  .lizing__calc--product {
    gap: 25px;
  }
}

/* ============================================= PRODUCT-INFO ============================================= */
.product-info {
  padding: 40px;
  background: #fafafa;
  border-radius: 25px;
}

.product__title {
  font-style: italic;
  font-weight: 900;
  font-size: 45px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.product__price {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.product__price-left {
  font-weight: 800;
  font-size: 25px;
  color: #ffb835;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product__price-left-info {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 10px;
  color: #2d2d2d;
  width: 16px;
  height: 16px;
  border: 1px solid #2D2D2D;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: .15s;
}

.product__price-left-info:hover {
  color: #fff;
  background-color: #2D2D2D;
}

.product__price-left-info-text {
  position: absolute;
  top: -50px;
  left: 50%;
  font-weight: 400;
  font-size: 15px;
  color: #2d2d2d;
  text-align: center;
  border-radius: 10px;
  width: 114px;
  padding: 10px;
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.1), 0 13px 13px 0 rgba(0, 0, 0, 0.09), 0 28px 17px 0 rgba(0, 0, 0, 0.05), 0 50px 20px 0 rgba(0, 0, 0, 0.01), 0 78px 22px 0 rgba(0, 0, 0, 0);
  background: #fff;
  opacity: 0;
  transform: translateX(-50%) scale(0);
  transition: .15s;
}

.product__price-left-info-text.active {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.product__price-right {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 16px;
  color: #2d2d2d;
}

.product__price-right span {
  font-weight: 500;
}

.product__info {
  display: flex;
  flex-wrap: wrap;
  gap: 17.5px;
}

.product__info li {
  border-radius: 10px;
  padding: 15px 50px 15px 15px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 186px;
}

.product__info li div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 15px;
  color: #929292;
}

.product__info li span {
  font-weight: 500;
  font-size: 19px;
  color: #2d2d2d;
}

.product__separator {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
  margin: 30px 0 20px;
}

.product__descr-title {
  font-style: italic;
  font-weight: 900;
  font-size: 40px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 20px;
}

.product__descr {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 17px;
  color: #2d2d2d;
  font-weight: 400;
}

.product__descr p,
.product__descr li {
  font-size: 17px;
  color: #2d2d2d;
  font-weight: 400;
}

.product__descr p span {
  font-weight: 500;
}

.product__spec-title {
  font-style: italic;
  font-weight: 900;
  font-size: 40px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 30px;
}

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

.product__spec-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.product__spec-list h3 {
  font-weight: 600;
  font-size: 20px;
  color: #000;
  margin-bottom: 20px;
}

.product__spec-list ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product__spec-list ul li {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 17px;
  color: #626161;
  position: relative;
  padding-left: 38px;
  min-height: 28px;
}

.product__spec-list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url('/img/check-mark-spec.svg') no-repeat center / contain;
  width: 28px;
  height: 28px;
}

@media ((min-width: 1100px) and (max-width: 1550px)) {
  .product-info {
    padding: 30px;
    border-radius: 18.75px;
  }

  .product__title {
    font-size: 33.75px;
    margin-bottom: 15px;
    gap: 11.25px;
  }

  .product__price {
    gap: 15px;
    margin-bottom: 15px;
  }

  .product__price-left {
    font-size: 18.75px;
    gap: 6px;
  }

  .product__price-left-info {
    font-size: 7.5px;
    width: 12px;
    height: 12px;
  }

  .product__price-left-info-text {
    font-size: 11.25px;
    border-radius: 7.5px;
    width: 85.5px;
    padding: 7.5px;
  }

  .product__price-right {
    font-size: 12px;
  }

  .product__info {
    gap: 13.125px;
  }

  .product__info li {
    border-radius: 7.5px;
    padding: 11.25px 37.5px 11.25px 11.25px;
    gap: 7.5px;
    min-width: 139.5px;
  }

  .product__info li div {
    gap: 7.5px;
    font-size: 11.25px;
  }

  .product__info li span {
    font-size: 14.25px;
  }

  .product__separator {
    margin: 22.5px 0 15px;
  }

  .product__descr-title {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .product__descr {
    gap: 11.25px;
    font-size: 12.75px;
  }

  .product__descr p,
  .product__descr li {
    font-size: 12.75px;
  }

  .product__spec {
    gap: 30px 15px;
  }

  .product__spec-col {
    gap: 22.5px;
  }

  .product__spec-title {
    font-size: 30px;
    margin-bottom: 22.5px;
  }

  .product__spec-list h3 {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .product__spec-list ul {
    gap: 11.25px;
  }

  .product__spec-list ul li {
    font-size: 12.75px;
    padding-left: 28.5px;
    min-height: 21px;
  }

  .product__spec-list ul li::before {
    width: 21px;
    height: 21px;
  }
}

@media (max-width: 1050px) {
  .product__spec {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .product-info {
    padding: 30px;
  }

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

@media (max-width: 600px) {
  .product-info {
    padding: 30px 15px;
  }

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

  .product__title {
    font-size: 35px;
    margin-bottom: 10px;
    gap: 10px;
  }

  .product__price-left {
    font-size: 20px;
  }

  .product__price-right {
    font-size: 15px;
  }

  .product__price {
    margin-bottom: 10px;
  }

  .product__spec-list ul {
    gap: 10px;
  }

  .product__spec-list ul li {
    min-height: auto;
  }

  .product__info li {
    min-width: auto;
    padding: 10px;
    gap: 5px;
  }

  .product__info li div {
    gap: 5px;
    font-size: 14px;
  }

  .product__info li span {
    font-size: 18px;
  }

  .product__separator {
    margin: 20px 0 15px;
  }

  .product__descr-title {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .product__descr p .product__descr li {
    font-size: 15px;
  }

  .product__descr {
    gap: 10px;
  }

  .product__spec-title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .product__spec-list h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .product__spec-list ul li {
    font-size: 16px;
  }

  .product__spec-list ul li::before {
    width: 18px;
    height: 18px;
  }

  .product__spec {
    gap: 20px;
  }
}

@media (max-width: 450px) {
  .product-info {
    padding: 20px 0;
  }

  .product__title {
    font-size: 30px;
  }

  .product__descr-title {
    font-size: 25px;
  }

  .product__spec-title {
    font-size: 25px;
  }
}

/* ============================================= PRODUCT-CATEGORY ============================================= */

.catalog--product {
  padding: 40px 0;
}

.catalog__title--product {
  font-weight: 800;
  font-size: 40px;
  text-transform: uppercase;
  color: #2d2d2d;
  margin-bottom: 30px;
}

@media ((min-width: 1100px) and (max-width: 1550px)) {
  .catalog--product {
    padding: 30px 0;
  }

  .catalog__title--product {
    font-size: 30px;
    margin-bottom: 22.5px;
  }
}

@media (max-width: 600px) {
  .catalog__title--product {
    font-size: 30px;
  }
}

@media (max-width: 450px) {
  .catalog__title--product {
    font-size: 25px;
  }
}

/* ============================================= ARROW TO TOP ============================================= */
/* ============================================= ARROW TO TOP ============================================= */
/* ============================================= ARROW TO TOP ============================================= */

.arrow__to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  border-radius: 5px;
  background: #ffbb43;
  z-index: 100;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0);
  transition: .15s;
}

.arrow__to-top img {
  transform: rotate(-90deg);
  width: 80%;
}

.arrow__to-top.show {
  opacity: 1;
  transform: scale(1);
}

.arrow__to-top:hover {
  background: rgb(255, 200, 83);
}

.arrow__to-top:active {
  transform: scale(.9);
}

/* ============================================= PRELOADER ============================================= */
/* ============================================= PRELOADER ============================================= */
/* ============================================= PRELOADER ============================================= */

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
}

.preloader.active {
  display: block;
}

.preloader .loading {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
}

.preloader .loading div {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: loading 1.2s linear infinite;
}

.preloader .loading div:nth-child(1) {
  animation-delay: 0s;
  top: 37px;
  left: 66px;
}

.preloader .loading div:nth-child(2) {
  animation-delay: -0.1s;
  top: 22px;
  left: 62px;
}

.preloader .loading div:nth-child(3) {
  animation-delay: -0.2s;
  top: 11px;
  left: 52px;
}

.preloader .loading div:nth-child(4) {
  animation-delay: -0.3s;
  top: 7px;
  left: 37px;
}

.preloader .loading div:nth-child(5) {
  animation-delay: -0.4s;
  top: 11px;
  left: 22px;
}

.preloader .loading div:nth-child(6) {
  animation-delay: -0.5s;
  top: 22px;
  left: 11px;
}

.preloader .loading div:nth-child(7) {
  animation-delay: -0.6s;
  top: 37px;
  left: 7px;
}

.preloader .loading div:nth-child(8) {
  animation-delay: -0.7s;
  top: 52px;
  left: 11px;
}

.preloader .loading div:nth-child(9) {
  animation-delay: -0.8s;
  top: 62px;
  left: 22px;
}

.preloader .loading div:nth-child(10) {
  animation-delay: -0.9s;
  top: 66px;
  left: 37px;
}

.preloader .loading div:nth-child(11) {
  animation-delay: -1s;
  top: 62px;
  left: 52px;
}

.preloader .loading div:nth-child(12) {
  animation-delay: -1.1s;
  top: 52px;
  left: 62px;
}

@keyframes loading {
  0%, 20%, 80%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }
}

/* ============================================= ADAPTIVE FOR LAPTOP ============================================= */
/* ============================================= ADAPTIVE FOR LAPTOP ============================================= */
/* ============================================= ADAPTIVE FOR LAPTOP ============================================= */

@media ((min-width: 1100px) and (max-width: 1550px)) {

  /* ============================== HEADER ============================== */
  .header__wrapper-separator {
    margin: 18.75px 0;
  }

  .header__content-block {
    gap: 18.75px;
  }

  .header__content-text {
    font-size: 12px;
    gap: 6px;
  }

  .header__content-text img {
    width: 13.5px;
  }

  .header__inner {
    padding: 20px 0;
  }

  .header__logo img {
    max-width: 184.5px;
  }

  .header__social,
  .hero__social {
    gap: 0;
  }

  .header__nav {
    gap: 21px;
  }

  .header__social a svg,
  .hero__social a svg {
    transform: scale(.75);
  }


  .hero__social::before {
    width: calc(100% - 11.25px);
  }

  .header__nav a,
  .lang,
  .lang__list-link,
  .header__personal a {
    font-size: 12px;
  }

  /* ============================== HERO ============================== */

  .hero__title {
    font-size: 41.25px;
    margin-bottom: 9px;
  }

  .hero__subtitle {
    font-size: 15px;
    margin-bottom: 26.25px;
  }

  .hero__btns {
    gap: 20px;
  }

  .hero__btn-1 {
    border-width: 1.5px;
    font-size: 12px;
    padding: 11.25px;
    gap: 6px;
    border-radius: 7px;
    max-width: 185px;
  }

  .hero__btn-1 svg {
    transform: scale(.75);
  }

  .hero__btn-1 svg {
    right: 11.25px;
  }

  .hero__btn-2 {
    border-width: 1.5px;
    font-size: 12px;
    padding: 11.25px;
    border-radius: 7px;
    max-width: 185px;
  }

  .hero__content {
    max-width: 562.5px;
  }

  /* ============================== ARROW TOP TOP ============================================= */

  .arrow__to-top {
    width: 45px;
    height: 45px;
  }
}

/* ============================== BANNER ============================================= */
.banner-img,
.banner-img-mobile {
  width: 100%;
  border-radius: 10px;
}

.banner-img-mobile {
  display: none;
  margin-top: 20px;
}

@media (max-width: 650px) {
  .banner-img {
    display: none;
  }

  .banner-img-mobile {
    display: inline;
  }
}

/* ============================================= ABOUT POPUP ============================================= */
/* ============================================= ABOUT POPUP ============================================= */
/* ============================================= ABOUT POPUP ============================================= */

.about-popup__overlay {
  background: rgb(0, 0, 0, .75);
  position: fixed;
  z-index: 99998;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  cursor: pointer;
  display: none;
}

.about-popup__content {
  width: 100%;
  display: none;
  z-index: 99999;
  background-color: #fff;
  border-radius: 15px;
  padding: 28px 85px 30px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  flex-direction: column;
  gap: 20px;
  height: auto;
  max-height: 90vh;
  overflow-y: auto;
}

.about-popup__content::-webkit-scrollbar-thumb {
  background-color: #ffba43bd;
}

.about-popup__content {
  scrollbar-width: thin;
  scrollbar-color: #ffba43bd transparent;
}

.about-popup__close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  background: transparent;
  width: 23px;
  height: 23px;
  transition: .15s;
}

.about-popup__close:hover {
  transform: scale(1.15);
}

.about-popup__close img {
  display: block;
  width: 100%;
  height: 100%;
}

.about-popup__img {
  width: 250px;
  padding: 7.5px;
  background: #000;
}

.about-popup__text {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.about-popup__text h2 {
  font-weight: 700;
  line-height: 110%;
  font-size: 34px;
  color: #2a2a2a;
  border-bottom: 2px solid #ffb835;
  width: fit-content;
}

.about-popup__text p,
.about-popup__text ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #2a2a2a;
}

.about-popup.active .about-popup__content,
.about-popup.active .about-popup__overlay {
  display: flex;
}

body:has(.about-popup.active) {
  overflow: hidden;
}

@media ((min-width: 1100px) and (max-width: 1550px)) {
  .about-popup__content {
    border-radius: 11.25px;
    padding: 21px 63.75px 22.5px;
    gap: 15px;
  }

  .about-popup__close {
    right: 15px;
    top: 15px;
    width: 17.25px;
    height: 17.25px;
  }

  .about-popup__img {
    width: 187.5px;
    padding: 5.625px;
  }

  .about-popup__text {
    gap: 9.75px;
  }

  .about-popup__text h2 {
    font-size: 25.5px;
  }

  .about-popup__text p,
  .about-popup__text ul li {
    font-size: 12px;
  }
}

@media (max-width: 1100px) {
  .about-popup__content {
    width: calc(100% - 40px);
    padding: 25px 60px 27px;
  }
}

@media (max-width: 650px) {
  .about-popup__content {
    padding: 25px 35px;
  }
}

@media (max-width: 500px) {
  .about-popup__content {
    padding: 30px;
    gap: 10px;
  }

  .about-popup__img {
    width: 200px;
  }

  .about-popup__text {
    gap: 8px;
  }

  .about-popup__text h2 {
    font-size: 24px;
  }

  .about-popup__text p, .about-popup__text ul li {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .about-popup__content {
    padding: 20px;
  }
}
