@font-face {
  font-family: "Tilda";
  src: url("../fonts/TildaSans-VF.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --TildaSans: "Tilda", sans-serif;
}

body {
  font-family: var(--TildaSans);
}

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

.header {
  background: #fff;
  padding: 23px 0 19px;
  color: #171717;
  font-family: var(--TildaSans);
}
.header__container {
  padding: 0 46px;
}
.header__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  column-gap: 50px;
  margin-bottom: 27px;
}
.header__left {
  display: flex;
  gap: 40px;
}
.header__logo {
  display: block;
  width: 165px;
  text-decoration: none;
}
.header__logo-img {
  display: block;
  width: 100%;
  height: auto;
}
.header__info {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.header__info:first-of-type {
  margin-left: 15px;
}
.header__info-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}
.header__info-icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.header__info-title {
  margin: 0 0 4px;
  font-family: "Tilda";
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: #111;
}
.header__info-text {
  font-weight: 400;
  font-family: "Tilda";
  font-size: 16px;
  line-height: 120%;
  color: #999;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .header__info-text:hover {
    color: #e5ad24;
  }
}
.header__phone {
  justify-self: end;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: #111;
}
.header__phone-icon {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  display: flex;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}
.header__phone-icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.header__phone-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.header__phone-number, .header__phone-email {
  display: block;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}
@media (hover: hover) {
  .header__phone-number:hover, .header__phone-email:hover {
    color: #e5ad24;
  }
}
.header__phone-number {
  margin: 0 0 4px;
  font-family: "Tilda";
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: #111;
}
.header__phone-email {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  font-family: "Tilda";
  color: #999;
}
.header__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__bottom__left {
  display: flex;
  gap: 40px;
}
.header__catalog {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  text-decoration: none;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-weight: 500;
  font-family: "Tilda";
  font-size: 20px;
  line-height: 120%;
  color: #111;
  cursor: pointer;
  transition: color 0.2s ease;
}
.header__catalog-icon {
  position: relative;
  display: block;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__nav-link {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  font-family: "Tilda";
  font-size: 20px;
  line-height: 120%;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.header__nav-link:hover {
  color: #ffd000;
}
.header__cart {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  color: #111;
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.header__cart-icon {
  display: block;
  width: 20px;
  height: 20px;
}
.header__burger {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}
.header__burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header__burger span:nth-child(1) {
  top: 0;
}
.header__burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__burger span:nth-child(3) {
  bottom: 0;
}
.header__burger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
}
.header__burger.active span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.header__mobile-contacts {
  display: none;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header {
    padding: 16px 0 14px;
  }
  .header__top {
    column-gap: 24px;
    margin-bottom: 18px;
  }
  .header__left {
    gap: 24px;
  }
  .header__logo {
    width: 132px;
  }
  .header__info {
    gap: 10px;
  }
  .header__info:first-of-type {
    margin-left: 8px;
  }
  .header__info-icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
  }
  .header__info-icon svg {
    width: 20px;
    height: 20px;
  }
  .header__info-title {
    margin-bottom: 2px;
    font-size: 17px;
  }
  .header__info-text {
    font-size: 14px;
  }
  .header__phone {
    gap: 12px;
  }
  .header__phone-icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
  }
  .header__phone-icon svg {
    width: 22px;
    height: 22px;
  }
  .header__phone-number {
    margin-bottom: 2px;
    font-size: 17px;
  }
  .header__phone-email {
    font-size: 14px;
  }
  .header__bottom__left {
    gap: 24px;
  }
  .header__catalog {
    gap: 10px;
    font-size: 17px;
  }
  .header__catalog svg {
    width: 16px;
    height: 10px;
  }
  .header__nav {
    gap: 22px;
  }
  .header__nav-link {
    font-size: 17px;
  }
  .header__cart {
    gap: 10px;
    font-size: 17px;
  }
  .header__cart-icon {
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 2000px) {
  .header {
    padding: calc(28px + (100vw - 2000px) * 0.006) 0 calc(24px + (100vw - 2000px) * 0.005);
  }
  .header__container {
    max-width: none;
    width: 100%;
    padding-left: calc(46px + (100vw - 2000px) * 0.02);
    padding-right: calc(46px + (100vw - 2000px) * 0.02);
  }
  .header__top {
    column-gap: calc(50px + (100vw - 2000px) * 0.025);
    margin-bottom: calc(27px + (100vw - 2000px) * 0.008);
  }
  .header__left {
    gap: calc(40px + (100vw - 2000px) * 0.018);
  }
  .header__logo {
    width: calc(165px + (100vw - 2000px) * 0.04);
  }
  .header__info {
    gap: calc(13px + (100vw - 2000px) * 0.004);
  }
  .header__info:first-of-type {
    margin-left: calc(15px + (100vw - 2000px) * 0.006);
  }
  .header__info-icon {
    flex: 0 0 calc(24px + (100vw - 2000px) * 0.006);
    width: calc(24px + (100vw - 2000px) * 0.006);
    height: calc(24px + (100vw - 2000px) * 0.006);
  }
  .header__info-title {
    margin-bottom: calc(4px + (100vw - 2000px) * 0.001);
    font-size: calc(20px + (100vw - 2000px) * 0.006);
  }
  .header__info-text {
    font-size: calc(16px + (100vw - 2000px) * 0.005);
  }
  .header__phone {
    gap: calc(16px + (100vw - 2000px) * 0.006);
  }
  .header__phone-icon {
    flex: 0 0 calc(26px + (100vw - 2000px) * 0.007);
    width: calc(26px + (100vw - 2000px) * 0.007);
    height: calc(26px + (100vw - 2000px) * 0.007);
  }
  .header__phone-number {
    margin-bottom: calc(4px + (100vw - 2000px) * 0.001);
    font-size: calc(20px + (100vw - 2000px) * 0.006);
  }
  .header__phone-email {
    font-size: calc(16px + (100vw - 2000px) * 0.005);
  }
  .header__bottom__left {
    gap: calc(40px + (100vw - 2000px) * 0.018);
  }
  .header__catalog {
    gap: calc(12px + (100vw - 2000px) * 0.004);
    font-size: calc(20px + (100vw - 2000px) * 0.008);
  }
  .header__catalog svg {
    width: calc(19px + (100vw - 2000px) * 0.004);
    height: calc(12px + (100vw - 2000px) * 0.003);
  }
  .header__nav {
    gap: calc(40px + (100vw - 2000px) * 0.012);
  }
  .header__nav-link {
    font-size: calc(20px + (100vw - 2000px) * 0.008);
  }
  .header__cart {
    gap: calc(12px + (100vw - 2000px) * 0.004);
    font-size: calc(20px + (100vw - 2000px) * 0.008);
  }
  .header__cart-icon {
    width: calc(20px + (100vw - 2000px) * 0.005);
    height: calc(20px + (100vw - 2000px) * 0.005);
  }
}
@media (max-width: 768px) {
  .header {
    padding: 12px 0;
  }
  .header__container {
    padding: 0 16px;
  }
  .header__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    column-gap: 0;
    margin-bottom: 0;
  }
  .header__left {
    gap: 0;
  }
  .header__logo {
    width: 110px;
  }
  .header__info {
    display: none;
  }
  .header__phone {
    display: none;
  }
  .header__burger {
    display: block;
  }
  .header__bottom {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1001;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 60px 16px 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }
  .header__bottom.active {
    display: flex;
  }
  .header__bottom__left {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .header__catalog {
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }
  .header__nav {
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: stretch;
  }
  .header__nav-link {
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    width: 100%;
    display: block;
    white-space: normal;
  }
  .header__cart {
    font-size: 16px;
    padding: 12px 0;
    width: 100%;
    margin-left: 0;
    margin-top: 8px;
    border-bottom: 1px solid #eee;
    gap: 10px;
  }
  .header__mobile-contacts {
    display: block;
    width: 100%;
    margin-top: auto;
    padding-top: 20px;
  }
  .header__mobile-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
  }
  .header__mobile-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .header__mobile-info-item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .header__mobile-info-content {
    font-family: "Tilda";
  }
  .header__mobile-info-title {
    font-weight: 700;
    font-size: 14px;
    color: #111;
    margin-bottom: 2px;
  }
  .header__mobile-info-text {
    font-size: 13px;
    color: #999;
  }
  .header__mobile-phone {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none;
    color: #111;
  }
  .header__mobile-phone svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .header__mobile-phone-content {
    display: flex;
    flex-direction: column;
  }
  .header__mobile-phone-number {
    font-family: "Tilda";
    font-weight: 700;
    font-size: 16px;
    color: #111;
    margin-bottom: 2px;
  }
  .header__mobile-phone-email {
    font-family: "Tilda";
    font-size: 13px;
    color: #999;
  }
}
@media (max-width: 480px) {
  .header {
    padding: 10px 0;
  }
  .header__container {
    padding: 0 12px;
  }
  .header__logo {
    width: 90px;
  }
  .header__bottom {
    padding: 52px 12px 16px;
  }
  .header__catalog {
    font-size: 15px;
    padding: 10px 0;
  }
  .header__nav-link {
    font-size: 15px;
    padding: 10px 0;
  }
  .header__cart {
    font-size: 15px;
    padding: 10px 0;
  }
}

.header__cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.header__cart-count {
  position: absolute;
  top: -8px;
  left: 10px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #ffda01;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--TildaSans);
  font-weight: 700;
  font-size: 10px;
  line-height: 1;
  color: #111;
  box-shadow: 0 0 0 2px #fff;
}
.header__cart-count[hidden] {
  display: none !important;
}
@media (min-width: 2000px) {
  .header__cart-count {
    top: calc(-8px + (100vw - 2000px) * -0.001);
    left: calc(10px + (100vw - 2000px) * 0.004);
    min-width: calc(18px + (100vw - 2000px) * 0.004);
    height: calc(18px + (100vw - 2000px) * 0.004);
    padding: 0 calc(4px + (100vw - 2000px) * 0.001);
    font-size: calc(10px + (100vw - 2000px) * 0.003);
    box-shadow: 0 0 0 calc(2px + (100vw - 2000px) * 0.0005) #fff;
  }
}

.hero {
  padding: 50px 0 57px;
  background: #fff;
}
@media (max-width: 768px) {
  .hero {
    padding: 20px 0 30px;
  }
}
.hero__container {
  display: grid;
  grid-template-columns: minmax(0, 2.05fr) minmax(360px, 1fr);
  gap: 20px;
  padding: 0 46px;
}
@media (max-width: 768px) {
  .hero__container {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 16px;
  }
}
.hero__slider {
  position: relative;
  min-height: 436px;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
}
@media (max-width: 768px) {
  .hero__slider {
    min-height: 360px;
  }
}
.hero__slider-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.36) 37%, rgba(0, 0, 0, 0.06) 100%);
}
.hero__slider-content {
  position: relative;
  z-index: 2;
  padding: 240px 40px 39px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  box-sizing: border-box;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .hero__slider-content {
    padding: 0 16px 20px;
    justify-content: flex-end;
  }
}
.hero__title {
  margin: 0 0 25px;
  max-width: 565px;
  font-family: "Tilda", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 97%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 18px;
    line-height: 110%;
    margin: 0 0 12px;
    max-width: 75%;
  }
}
.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  color: #fff;
  text-decoration: none;
  font-family: "Tilda", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
}
@media (max-width: 768px) {
  .hero__link {
    font-size: 13px;
    gap: 8px;
    margin-bottom: 12px;
  }
}
.hero__link-icon, .hero__constructor-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 7px;
  background: #FFDA01;
}
@media (max-width: 768px) {
  .hero__link-icon, .hero__constructor-icon {
    width: 28px;
    height: 28px;
    border-radius: 5px;
  }
}
.hero__link-icon img, .hero__constructor-icon img {
  display: block;
  width: 16px;
  height: 16px;
}
.hero__pagination {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 768px) {
  .hero__pagination {
    gap: 4px;
  }
}
.hero__pagination-item {
  position: relative;
  display: block;
  width: 58px;
  height: 5px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}
@media (max-width: 768px) {
  .hero__pagination-item {
    width: 32px;
    height: 3px;
  }
}
.hero__pagination-progress {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: #FFDA01;
  pointer-events: none;
}
.hero__pagination-progress.is-running {
  animation: hero-pagination-progress var(--hero-autoplay-ms, 5000ms) linear forwards;
}
.hero__slider.is-autoplay-paused .hero__pagination-progress.is-running {
  animation-play-state: paused;
}
.hero__constructor {
  position: relative;
  display: block;
  min-height: 436px;
  border-radius: 8px;
  overflow: hidden;
  background: #f7f8fa;
  color: #111;
  text-decoration: none;
}
@media (max-width: 768px) {
  .hero__constructor {
    min-height: 200px;
  }
}
.hero__constructor-title {
  position: relative;
  z-index: 2;
  padding: 40px 16px 0 40px;
  font-family: "Tilda", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 97%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .hero__constructor-title {
    padding: 20px 16px 0 20px;
    font-size: 18px;
  }
}
.hero__constructor-action {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-family: "Tilda", sans-serif;
  font-weight: 400;
  font-size: 16px;
}
@media (max-width: 768px) {
  .hero__constructor-action {
    left: 20px;
    bottom: 20px;
    font-size: 14px;
    gap: 10px;
  }
}
.hero__constructor-img {
  position: absolute;
  right: -9px;
  bottom: 0;
  width: 80%;
  height: auto;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero__constructor-img {
    width: 60%;
    right: 0;
  }
}

.hero__slider {
  position: relative;
  min-height: 436px;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
}
.hero__slide {
  position: relative;
  min-height: 436px;
}
.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.36) 37%, rgba(0, 0, 0, 0.06) 100%);
  z-index: 1;
}
.hero__slider-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__pagination {
  position: static;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero__pagination .swiper-pagination-bullet {
  width: 58px;
  height: 5px;
  margin: 0 !important;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.65);
  opacity: 1;
}
.hero__pagination .swiper-pagination-bullet-active {
  background: #ffd000;
}

.hero__slider {
  position: relative;
  min-height: 436px;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  transition: opacity 0.25s ease;
}
.hero__slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.36) 37%, rgba(0, 0, 0, 0.06) 100%);
}
.hero__slider.is-changing {
  opacity: 0.75;
}
.hero__slider-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hero__slider-content {
  position: relative;
  z-index: 2;
}
.hero__pagination-item {
  cursor: pointer;
}

@keyframes hero-pagination-progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.hero__slider {
  cursor: grab;
}
.hero__slider:active {
  cursor: grabbing;
}

.hero__slider {
  touch-action: pan-y;
}

.hero__slider {
  user-select: none;
  -webkit-user-select: none;
}
.hero__title, .hero__link, .hero__pagination {
  user-select: none;
  -webkit-user-select: none;
}

:root {
  --base-black-bg: #111;
  --primary: #FFDA01;
  --primary-white: #fff;
  --line: #6f6f6f;
  --line-2: #d9d9d9;
  --transition: 0.2s ease;
}

.container {
  padding: 0 46px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

.image-wrapper {
  display: block;
}
.image-wrapper__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.solid-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 53px;
  border-radius: 4px;
  background: transparent;
  border: 0;
  gap: 10px;
  color: #111;
  font-family: var(--TildaSans);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.title-h2 {
  margin: 0;
  font-family: var(--TildaSans);
  font-size: 28px;
  font-weight: 600;
  line-height: 97%;
  text-transform: uppercase;
}

.categories {
  padding: 62px 0 30px;
}
@media (max-width: 1023px) {
  .categories {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .categories {
    padding: 30px 0;
  }
}
.categories__title {
  font-family: var(--TildaSans);
  color: var(--base-black-bg);
  font-size: 32px;
  line-height: 97%;
  font-weight: 600;
}
@media (max-width: 1023px) {
  .categories__title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .categories__title {
    font-size: 22px;
  }
}
.categories__tabs {
  margin-top: 40px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  border-bottom: 1px solid #B1B1B1;
}
@media (max-width: 768px) {
  .categories__tabs {
    margin-top: 24px;
    overflow-x: auto;
    gap: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .categories__tabs::-webkit-scrollbar {
    display: none;
  }
}
.categories__tab {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
  color: #B1B1B1;
  font-size: 28px;
  width: fit-content;
  font-weight: 600;
  background: none;
  border: none;
  font-family: var(--TildaSans);
  transition: var(--transition);
  cursor: pointer;
}
.categories__tab:first-child {
  justify-content: flex-start;
}
.categories__tab:last-child {
  justify-content: flex-end;
}
@media (hover: hover) {
  .categories__tab:hover {
    color: var(--primary);
  }
}
@media (max-width: 768px) {
  .categories__tab {
    font-size: 16px;
    padding-bottom: 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }
}
.categories__tab--active {
  border-bottom: 1px solid #E5AD24;
  color: #E5AD24;
}
.categories__card {
  margin-top: 40px;
  display: none;
  gap: 70px;
}
@media (max-width: 1023px) {
  .categories__card {
    gap: 30px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .categories__card {
    flex-direction: column;
    margin-top: 24px;
    gap: 20px;
  }
}
.categories__card--active {
  display: flex;
}
.categories__card-image {
  flex: 1 1 433px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .categories__card-image {
    flex: 1 1 auto;
    width: 100%;
    height: auto;
    order: -1;
  }
}
.categories__card-info {
  flex: 1 1 825px;
  display: flex;
  flex-direction: column;
  padding-top: 42px;
}
@media (max-width: 768px) {
  .categories__card-info {
    flex: 1 1 auto;
    padding-top: 0;
  }
}
.categories__card-title {
  color: var(--base-black-bg);
}
@media (max-width: 768px) {
  .categories__card-title {
    font-size: 22px;
  }
}
.categories__card-text {
  margin-top: 31px;
  color: #6F7482;
  max-width: 535px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .categories__card-text {
    margin-top: 16px;
    font-size: 14px;
  }
}
.categories__card-buttons {
  margin-top: 35px;
  margin-bottom: 50px;
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .categories__card-buttons {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.categories__card-button {
  max-width: 293px;
}
@media (max-width: 768px) {
  .categories__card-button {
    max-width: 100%;
    height: 48px;
    font-size: 14px;
  }
}
.categories__card-button svg {
  position: relative;
  top: 2px;
}
.categories__card-button:nth-child(1) {
  background-color: var(--primary);
}
.categories__card-button:nth-child(2) {
  border: 1px solid var(--primary);
}
.categories__card-minies {
  margin-top: auto;
  display: flex;
  gap: 25px;
}
@media (max-width: 1023px) {
  .categories__card-minies {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .categories__card-minies {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0;
  }
}
.categories__card-mini {
  height: 206px;
  flex: 1 1 20%;
  background-color: #ffffff;
  border-radius: 5px;
  overflow: hidden;
}
.categories__card-mini img {
  object-fit: cover;
}
@media (max-width: 1023px) {
  .categories__card-mini {
    max-width: calc(25% - 18.75px);
  }
}
@media (max-width: 768px) {
  .categories__card-mini {
    flex: 1 1 calc(50% - 5px);
    max-width: calc(50% - 5px);
    height: 150px;
    border-radius: 8px;
  }
}

.advantages {
  padding: 63px 0 70px;
  background: #fff;
}
.advantages__title {
  margin: 0 0 60px;
  font-family: var(--TildaSans);
  font-weight: 600;
  font-size: 28px;
  line-height: 97%;
  text-transform: uppercase;
  color: #111;
}
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px 24px;
  align-items: stretch;
}
.advantages__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  grid-column: span 2;
  box-sizing: border-box;
  padding: 130px 25px 35px;
  border-radius: 10px;
  background: #F8FAFC;
}
.advantages__card--wide {
  grid-column: span 3;
}
.advantages__icon {
  position: absolute;
  top: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  border-radius: 6px;
  background: #fff;
}
.advantages__icon img {
  width: 26px;
  height: 26px;
}
.advantages__card-title {
  margin: 0 0 23px;
  font-family: var(--TildaSans);
  font-weight: 600;
  font-size: 24px;
  line-height: 95%;
  color: #060606;
}
.advantages__card-text {
  margin: 0;
  font-family: var(--TildaSans);
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #858c93;
}
.advantages__image {
  position: relative;
  grid-column: span 3;
  align-self: stretch;
  min-height: 0;
  border-radius: 8px;
  overflow: hidden;
}
.advantages__image-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1023px) {
  .advantages__card, .advantages__card--wide {
    height: 282px;
    overflow: hidden;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .advantages__title {
    margin-bottom: 44px;
    font-size: 24px;
  }
  .advantages__card {
    padding: 88px 18px 22px;
  }
  .advantages__card-title {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 120%;
  }
  .advantages__card-text {
    font-size: 14px;
    line-height: 130%;
  }
  .advantages__icon {
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
  }
  .advantages__icon img,
  .advantages__icon svg {
    width: 22px;
    height: 22px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .advantages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
  .advantages__card, .advantages__card--wide {
    grid-column: span 1;
    padding: 20px;
  }
  .advantages__image {
    grid-column: 1/-1;
    min-height: 260px;
  }
  .advantages__card-title {
    font-size: 20px;
  }
  .advantages__card-text {
    font-size: 16px;
    line-height: 130%;
  }
}
@media (max-width: 768px) {
  .advantages {
    padding: 30px 0 50px;
  }
  .advantages .container {
    padding: 0 16px;
  }
  .advantages__title {
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 110%;
  }
  .advantages__grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .advantages__card, .advantages__card--wide {
    grid-column: unset;
    padding: 16px;
    border-radius: 10px;
  }
  .advantages__image {
    height: auto;
    border-radius: 10px;
  }
  .advantages__image-img {
    aspect-ratio: 343/200;
    min-height: 0;
  }
  .advantages__icon {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
  .advantages__icon img,
  .advantages__icon svg {
    width: 22px;
    height: 22px;
  }
  .advantages__card-title {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .advantages__card-text {
    font-size: 16px;
    line-height: 130%;
  }
}

.steps {
  padding: 43px 0 70px;
  background: #fff;
}
@media (max-width: 768px) {
  .steps {
    padding: 30px 0 50px;
  }
}
.steps__title {
  margin: 0 0 64px;
  font-family: var(--TildaSans);
  font-weight: 700;
  font-size: 28px;
  line-height: 110%;
  text-transform: uppercase;
  color: #111;
}
@media (max-width: 768px) {
  .steps__title {
    margin: 0 0 32px;
    font-size: 22px;
  }
}
.steps__content {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 77px;
  align-items: start;
}
@media (max-width: 768px) {
  .steps__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.steps__list {
  padding-top: 1px;
}
@media (max-width: 768px) {
  .steps__list {
    padding-top: 0;
  }
}
.steps__item {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 31px;
  min-height: 125px;
}
@media (max-width: 768px) {
  .steps__item {
    grid-template-columns: 60px 1fr;
    gap: 16px;
    min-height: auto;
    margin-bottom: 24px;
  }
  .steps__item:last-child {
    margin-bottom: 0;
  }
}
.steps__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 77px;
  left: 39px;
  bottom: 0;
  width: 1px;
  background: #ffd000;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .steps__item:not(:last-child)::before {
    top: 60px;
    left: 30px;
    bottom: -24px;
  }
}
.steps__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 77px;
  height: 77px;
  border-radius: 8px;
  background: #FFDA01;
  font-family: var(--TildaSans);
  font-weight: 700;
  font-size: 42px;
  line-height: 100%;
  color: #fff;
}
@media (max-width: 768px) {
  .steps__number {
    width: 60px;
    height: 60px;
    font-size: 32px;
  }
}
.steps__text {
  padding-top: 7px;
}
@media (max-width: 768px) {
  .steps__text {
    padding-top: 4px;
  }
}
.steps__item-title {
  margin: 0 0 7px;
  font-family: var(--TildaSans);
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: #111;
}
@media (max-width: 768px) {
  .steps__item-title {
    font-size: 16px;
    margin: 0 0 4px;
  }
}
.steps__item-text {
  margin: 0;
  max-width: 470px;
  font-family: var(--TildaSans);
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  color: #6f7782;
}
@media (max-width: 768px) {
  .steps__item-text {
    font-size: 14px;
    line-height: 130%;
  }
}
.steps__image {
  display: block;
  width: 100%;
  height: 467px;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .steps__image {
    height: 280px;
  }
}
.steps__image-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vektor-form__field {
  display: block;
  width: 100%;
  margin-bottom: 16px;
  overflow: visible;
}
.vektor-form__field:last-child {
  margin-bottom: 0;
}
.vektor-form__label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--TildaSans), "Tilda", sans-serif;
  font-size: 16px;
  letter-spacing: 0%;
  color: #6F7482;
}
.vektor-form__label > span {
  color: #ed0131;
}
.vektor-form__label-note {
  color: #747b84;
  font-weight: 400;
}
.vektor-form__input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 0;
  border-radius: 4px;
  background: #F8FAFC;
  box-sizing: border-box;
  font-family: var(--TildaSans), "Tilda", sans-serif;
  font-size: 16px;
  letter-spacing: 0%;
  color: #000;
  outline: none;
  transition: box-shadow 0.2s ease;
}
.vektor-form__input::placeholder {
  color: #B1B1B1;
}
.vektor-form__input.is-error {
  box-shadow: 0 0 0 1px #ed0131;
}
.vektor-form .iti {
  display: flex !important;
  align-items: center;
  width: 100% !important;
  height: 44px;
  max-height: 44px;
  background: #f8f9fb;
  border-radius: 4px;
  overflow: visible;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
.vektor-form .iti.iti--open {
  z-index: 2;
}
.vektor-form .iti__country-container {
  position: static !important;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  flex-shrink: 0;
  padding: 0 0 0 12px !important;
  height: 100%;
}
.vektor-form .iti__selected-country {
  height: 100%;
}
.vektor-form .iti__selected-country-primary {
  padding: 0 4px 0 0 !important;
  height: 100%;
}
.vektor-form .iti__arrow {
  display: none;
}
.vektor-form .iti__tel-input,
.vektor-form .phone-input {
  flex: 1 1 auto;
  width: 1% !important;
  min-width: 0;
  height: 44px !important;
  min-height: 0 !important;
  max-height: 44px !important;
  margin: 0 !important;
  padding: 0 12px 0 4px !important;
  border: 0 !important;
  border-radius: 0 4px 4px 0 !important;
  background: transparent !important;
  box-sizing: border-box !important;
  font-family: var(--TildaSans), "Tilda", sans-serif !important;
  font-size: 16px !important;
  line-height: 44px !important;
  color: #111 !important;
  outline: none !important;
}
.vektor-form .iti__tel-input::placeholder,
.vektor-form .phone-input::placeholder {
  color: #b8bcca !important;
}
.vektor-form .iti__tel-input.is-error,
.vektor-form .phone-input.is-error {
  box-shadow: none !important;
}
.vektor-form .iti.is-error {
  box-shadow: 0 0 0 1px #ed0131;
}
.vektor-form .iti__selected-dial-code {
  color: #b8bcca !important;
  font-family: var(--TildaSans), "Tilda", sans-serif;
  font-size: 16px;
  line-height: 1;
  margin: 0 6px 0 0;
  transition: color 0.2s ease;
}
.vektor-form .iti.has-value .iti__selected-dial-code {
  color: #000 !important;
}
.vektor-form .phone-error {
  display: none;
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.3;
  color: #ed0131;
}
.vektor-form .phone-error:not(:empty) {
  display: block;
}
.vektor-form__submit {
  margin-top: 17px;
  width: 100%;
  height: 53px;
  border: 0;
  border-radius: 25px;
  background: #FFDA01;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-family: var(--TildaSans), "Tilda", sans-serif;
  font-size: 16px;
  color: #000;
  letter-spacing: 0%;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
@media (hover: hover) {
  .vektor-form__submit:hover {
    background: #ebc700;
  }
}
.vektor-form__submit:active {
  background: #d9b800;
}
@media (max-width: 768px) {
  .vektor-form__submit {
    height: 48px;
    font-size: 14px;
  }
}
.vektor-form__submit-arrow {
  position: relative;
  top: 4px;
}
@media (max-width: 768px) {
  .vektor-form__field {
    width: 100%;
    max-width: 100%;
  }
  .vektor-form__input,
  .vektor-form .iti {
    width: 100% !important;
    max-width: 100% !important;
  }
  .vektor-form__field--row .vektor-form__control,
  .vektor-form__field--row .vektor-form__input,
  .vektor-form__field--row .iti {
    max-width: 100% !important;
  }
}
.vektor-form__policy {
  display: block;
  position: relative;
  padding-left: 28px;
  font-size: 13px;
  line-height: 140%;
  color: #a3aab2;
  cursor: pointer;
}
.vektor-form__policy input {
  position: absolute;
  left: 0;
  top: 2px;
}
.vektor-form__policy input.is-error {
  outline: 1px solid #ed0131;
}
.vektor-form__policy a {
  color: #e5ad24;
  text-decoration: none;
}
.vektor-form__policy a:hover {
  text-decoration: underline;
}
.vektor-form__success {
  margin: 0;
  padding: 16px 0;
  font-family: var(--TildaSans), "Tilda", sans-serif;
  font-size: 16px;
  line-height: 140%;
  color: #111;
  text-align: center;
}
.vektor-form.is-submitting {
  opacity: 0.7;
  pointer-events: none;
}
.popup-form .vektor-form__label {
  color: #fff;
}
.popup-form .vektor-form__input,
.popup-form .vektor-form .iti__tel-input,
.popup-form .vektor-form .phone-input {
  background: #f8f9fb !important;
  color: #111 !important;
}
.popup-form .vektor-form__policy {
  color: #a3a3a3;
}
.popup-form .vektor-form__policy a {
  color: #e5ad24;
}
.vektor-form--dark .vektor-form__label {
  color: var(--primary-white, #fff);
}
.vektor-form--dark .iti {
  background: var(--base-black-bg, #1a1d24) !important;
  border-radius: 10px;
  overflow: visible;
}
.vektor-form--dark .vektor-form__input,
.vektor-form--dark .iti__tel-input,
.vektor-form--dark .phone-input {
  background: var(--base-black-bg, #1a1d24) !important;
  color: var(--primary-white, #fff) !important;
}
.vektor-form--dark .vektor-form__input::placeholder,
.vektor-form--dark .iti__tel-input::placeholder,
.vektor-form--dark .phone-input::placeholder {
  color: var(--line, #6f7482) !important;
}
.vektor-form--dark .iti.is-error {
  box-shadow: 0 0 0 1px #ed0131;
}
.vektor-form--dark .iti__selected-dial-code {
  color: var(--line, #6f7482) !important;
}
.vektor-form--dark .iti.has-value .iti__selected-dial-code {
  color: var(--primary-white, #fff) !important;
}
.vektor-form--dark .iti__arrow {
  border-top-color: var(--line, #6f7482);
}
.vektor-form--dark .vektor-form__policy {
  color: rgba(255, 255, 255, 0.72);
}
.vektor-form--dark .vektor-form__policy a {
  color: #ffda01;
}
.vektor-form__field--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 1024px) {
  .vektor-form__field--row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
}
.vektor-form__field--row .vektor-form__label {
  flex: 0 0 240px;
  max-width: 240px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.25;
  color: inherit;
}
@media (max-width: 1024px) {
  .vektor-form__field--row .vektor-form__label {
    flex: none;
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .vektor-form__field--row .vektor-form__label {
    font-size: 16px;
  }
}
.vektor-form__field--row .vektor-form__control {
  flex: 1 1 auto;
  max-width: 451px;
  width: 100%;
}
@media (max-width: 1024px) {
  .vektor-form__field--row .vektor-form__control {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .vektor-form__field--row .vektor-form__control {
    max-width: 100%;
  }
}
.vektor-form__field--row .vektor-form__input,
.vektor-form__field--row .iti {
  max-width: 451px;
}
@media (max-width: 1024px) {
  .vektor-form__field--row .vektor-form__input,
  .vektor-form__field--row .iti {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .vektor-form__field--row .vektor-form__input,
  .vektor-form__field--row .iti {
    max-width: 100%;
  }
}

.iti--container {
  z-index: 100000 !important;
}

.iti__dropdown-content {
  z-index: 100001;
  min-width: 280px;
  max-height: 240px;
  overflow: hidden;
}

.faq {
  padding: 70px 0 70px;
  background: #fff;
}
.product-page .faq {
  padding-top: 50px;
}
@media (max-width: 768px) {
  .faq {
    padding: 30px 0 50px;
  }
}
.faq__content {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 768px) {
  .faq__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.faq__title, .faq__form-title {
  margin: 0;
  font-family: var(--TildaSans);
  font-weight: 700;
  font-size: 28px;
  line-height: 110%;
  text-transform: uppercase;
  color: #111;
}
@media (max-width: 768px) {
  .faq__title, .faq__form-title {
    font-size: 22px;
  }
}
.faq__list {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .faq__list {
    margin-top: 24px;
    gap: 8px;
  }
}
.faq__item {
  border-radius: 8px;
  background: #f8f9fb;
  overflow: hidden;
}
.faq__item.is-active .faq__plus {
  transform: rotate(45deg);
}
.faq__item.is-active .faq__answer {
  max-height: 300px;
  opacity: 1;
  padding: 0 32px 22px;
}
@media (max-width: 768px) {
  .faq__item.is-active .faq__answer {
    padding: 0 20px 16px;
  }
}
.faq__question {
  width: 100%;
  min-height: 71px;
  padding: 0 24px 0 32px;
  background: #f8f9fb;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: var(--TildaSans);
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: #111;
  cursor: pointer;
}
@media (max-width: 768px) {
  .faq__question {
    min-height: 60px;
    padding: 0 16px 0 20px;
    font-size: 15px;
    gap: 12px;
  }
}
.faq__plus {
  position: relative;
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
@media (hover: hover) {
  .faq__plus:hover {
    opacity: 0.75;
    transform: scale(1.08);
  }
}
@media (max-width: 768px) {
  .faq__plus {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
  }
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  background: #ffd000;
  border-radius: 2px;
}
.faq__plus::before, .faq__plus::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq__plus::before {
  width: 23px;
  height: 2px;
}
@media (max-width: 768px) {
  .faq__plus::before {
    width: 20px;
  }
}
.faq__plus::after {
  width: 2px;
  height: 23px;
}
@media (max-width: 768px) {
  .faq__plus::after {
    height: 20px;
  }
}
.faq__answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 32px;
  font-family: var(--TildaSans);
  font-size: 16px;
  line-height: 130%;
  color: #747b84;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}
@media (max-width: 768px) {
  .faq__answer {
    padding: 0 20px;
    font-size: 14px;
  }
}
.faq__answer p {
  margin: 0;
}
.faq__form {
  padding-top: 6px;
}
@media (max-width: 768px) {
  .faq__form {
    padding-top: 0;
  }
}
.faq__form-inner {
  margin-top: 39px;
  width: 100%;
}
@media (max-width: 768px) {
  .faq__form-inner {
    margin-top: 24px;
  }
}

.delivery {
  padding: 50px 0 60px;
  background: #fff;
}
.delivery__container {
  padding: 0 46px;
}
.delivery__title {
  margin: 0 0 50px;
  font-family: "Tilda";
  font-weight: 600;
  font-size: 32px;
  line-height: 97%;
  text-transform: uppercase;
  color: #000;
}
.delivery__top {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 130px;
  align-items: start;
  margin-bottom: 50px;
}
.delivery__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.delivery__card {
  padding: 40px;
  border-radius: 8px;
  background: #f8f9fb;
}
.delivery__card-title {
  margin: 0 0 15px;
  font-family: "Tilda";
  font-weight: 600;
  font-size: 28px;
  line-height: 97%;
  text-transform: uppercase;
  color: #000;
}
.delivery__card-text {
  margin: 0 0 18px;
  font-family: "Tilda";
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0%;
  color: #3B4256;
}
.delivery__card-text:last-child {
  margin-bottom: 0;
}
.delivery__card-text a {
  color: #e8a915;
  text-decoration: none;
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .delivery__card-text a:hover {
    color: #d89f00;
  }
}
.delivery__form {
  padding-top: 9px;
}
.delivery__form-title {
  margin: 0 0 39px;
  font-family: "Tilda";
  font-weight: 600;
  font-size: 28px;
  line-height: 97%;
  text-transform: uppercase;
  color: #000;
}
.delivery__map {
  width: 100%;
  height: 482px;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fb;
}
.delivery__map-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 768px) {
  .delivery {
    padding: 20px 0 40px;
  }
  .delivery__container {
    padding: 0 16px;
  }
  .delivery__title {
    margin: 0 0 20px;
    font-size: 22px;
  }
  .delivery__top {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: 32px;
  }
  .delivery__left {
    gap: 12px;
    margin-bottom: 32px;
  }
  .delivery__card {
    min-height: auto;
    padding: 20px 18px;
    border-radius: 8px;
  }
  .delivery__card--large {
    min-height: auto;
  }
  .delivery__card-title {
    margin: 0 0 10px;
    font-size: 18px;
  }
  .delivery__card-text {
    font-size: 14px;
    line-height: 140%;
    margin: 0 0 10px;
  }
  .delivery__card-text br {
    display: none;
  }
  .delivery__form {
    padding-top: 0;
    width: 100%;
  }
  .delivery__form-inner {
    width: 100%;
  }
  .delivery__form-inner .vektor-form__field,
  .delivery__form-inner .vektor-form__input,
  .delivery__form-inner .iti {
    width: 100% !important;
    max-width: 100% !important;
  }
  .delivery__form-inner .vektor-form__submit {
    width: 100%;
    max-width: 100%;
  }
  .delivery__form-title {
    margin: 0 0 24px;
    font-size: 20px;
  }
  .delivery__map {
    height: auto;
    aspect-ratio: 5/4;
    border-radius: 8px;
  }
  .delivery__map-frame {
    min-height: 280px;
  }
}

.catalog {
  padding: 25px 0 90px;
  background: #fff;
}
.catalog__container {
  display: grid;
  grid-template-columns: 286px 1fr;
  gap: 45px;
  padding: 0 40px;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}
.catalog__sidebar {
  width: 286px;
}
.catalog__filter-toggle {
  display: none;
}
.catalog__filter-close {
  display: none;
}
.catalog__sort {
  margin-bottom: 20px;
}
.catalog__sort-button {
  width: 100%;
  height: 48px;
  padding: 0 25px;
  border: 0;
  border-radius: 12px;
  background: #f8f9fb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Tilda";
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  color: #252b33;
  cursor: pointer;
}
.catalog__filter {
  padding: 36px 27px 31px;
  border-radius: 16px;
  background: #f8f9fb;
}
.catalog__filter-group {
  margin-bottom: 29px;
}
.catalog__filter-group:last-child {
  margin-bottom: 0;
}
.catalog__filter-title {
  margin-bottom: 14px;
  font-family: "Tilda";
  font-weight: 700;
  font-size: 17px;
  line-height: 120%;
  color: #111;
}
.catalog__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  cursor: pointer;
}
.catalog__checkbox:last-child {
  margin-bottom: 0;
}
.catalog__checkbox input {
  display: none;
}
.catalog__checkbox input:checked + span {
  background: #ffd000;
  border-color: #ffd000;
}
.catalog__checkbox input:checked + span::after {
  opacity: 1;
}
.catalog__checkbox span {
  position: relative;
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  border: 1px solid #b8c0c8;
  background: #fff;
}
.catalog__checkbox span::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
  opacity: 0;
}
.catalog__checkbox p {
  margin: 0;
  font-family: "Tilda";
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  color: #3d444d;
}
.catalog__number {
  display: block;
  margin-bottom: 15px;
}
.catalog__number:last-child {
  margin-bottom: 0;
}
.catalog__number span {
  display: block;
  margin-bottom: 8px;
  font-family: "Tilda";
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  color: #3d444d;
}
.catalog__number input {
  width: 84px;
  height: 30px;
  border: 1px solid #b8c0c8;
  background: #fff;
  font-family: "Tilda";
  font-size: 12px;
  text-align: center;
  color: #3d444d;
  outline: none;
}
.catalog__content {
  min-width: 0;
}
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 60px;
  row-gap: 58px;
  align-items: stretch;
}
.catalog__filter-hidden-item {
  display: none;
}
.catalog__filter-group.is-expanded .catalog__filter-hidden-item {
  display: flex;
}
.catalog__show-more {
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: "Tilda";
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  color: #d89f00;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.catalog__sort-dropdown {
  position: relative;
}
.catalog__sort-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 50;
  display: none;
  padding: 6px 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}
.catalog__sort-menu a {
  display: block;
  padding: 9px 25px;
  font-family: "Tilda";
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  color: #252b33;
  text-decoration: none;
}
.catalog__sort-menu a:hover {
  background: #f8f9fb;
}
.catalog__sort-dropdown.is-open .catalog__sort-menu {
  display: block;
}
.catalog__filter-hidden-item {
  display: none !important;
}
.catalog__filter-group.is-expanded .catalog__filter-hidden-item {
  display: flex !important;
}
.catalog__show-more {
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: "Tilda";
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  color: #d89f00;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .catalog__show-more:hover {
    color: #e5ad24;
  }
}
.catalog__filter-reset {
  width: 100%;
  height: 36px;
  margin-top: 22px;
  border: 1px solid #dce1e6;
  border-radius: 4px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Tilda";
  font-weight: 500;
  font-size: 13px;
  color: #3d444d;
  text-decoration: none;
}
.catalog__filter-submit {
  width: 100%;
  height: 36px;
  margin-top: 6px;
  border: 0;
  border-radius: 4px;
  background: #ffd000;
  font-family: "Tilda";
  font-weight: 500;
  font-size: 13px;
  color: #111;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
@media (hover: hover) {
  .catalog__filter-submit:hover {
    background: #ebc700;
  }
}
.catalog__filter-reset {
  display: block;
  margin-top: 22px;
  font-family: "Tilda";
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  color: #8b929a;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.catalog__sort-dropdown {
  position: relative;
}
.catalog__sort-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 20;
  display: none;
  padding: 6px 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}
.catalog__sort-menu a {
  display: block;
  padding: 9px 25px;
  font-family: "Tilda";
  font-size: 13px;
  color: #252b33;
  text-decoration: none;
}
.catalog__sort-menu a:hover {
  background: #f8f9fb;
}
.catalog__sort-dropdown.is-open .catalog__sort-menu {
  display: block;
}
.catalog__filter-values {
  max-height: none;
}
.catalog__filter-group.is-expanded .catalog__filter-values {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 6px;
}
.catalog__filter-group.is-expanded .catalog__filter-hidden-item {
  display: flex !important;
}
.catalog__filter-hidden-item {
  display: none !important;
}
.catalog__show-more {
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: "Tilda";
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  color: #d89f00;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.catalog__filter-submit {
  display: none;
}
.catalog__filter-reset {
  width: 100%;
  height: 40px;
  margin-top: 22px;
  border: 1px solid #dce1e6;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Tilda";
  font-weight: 500;
  font-size: 13px;
  line-height: 120%;
  color: #252b33;
  text-decoration: none;
}
.catalog__filter-reset:hover {
  background: #ffd000;
  border-color: #ffd000;
  color: #111;
}
.catalog__pagination {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.catalog__pagination .page-numbers {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  background: #f8f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Tilda";
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #252b33;
  text-decoration: none;
  transition: 0.2s ease;
}
.catalog__pagination .page-numbers:hover {
  background: #ffd000;
  color: #111;
}
.catalog__pagination .page-numbers.current {
  background: #ffd000;
  color: #111;
}
.catalog__pagination .page-numbers.dots {
  background: transparent;
  padding: 0 4px;
  min-width: auto;
  color: #8b929a;
}
.catalog__pagination .page-numbers.prev, .catalog__pagination .page-numbers.next {
  font-size: 18px;
}
@media (max-width: 1200px) {
  .catalog__container {
    gap: 30px;
    padding: 0 24px;
  }
  .catalog__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 30px;
    row-gap: 40px;
  }
}
@media (max-width: 768px) {
  .catalog {
    padding: 16px 0 50px;
  }
  .catalog__container {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 16px;
  }
  .catalog__sidebar {
    width: 100%;
    position: relative;
    margin-bottom: 16px;
  }
  .catalog__filter-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 44px;
    border: 1px solid #dce1e6;
    border-radius: 10px;
    background: #fff;
    font-family: "Tilda";
    font-weight: 500;
    font-size: 14px;
    color: #111;
    cursor: pointer;
    margin-bottom: 12px;
  }
  .catalog__filter-close {
    display: none;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: #f0f0f0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }
  .catalog__sort {
    margin-bottom: 12px;
  }
  .catalog__sort-button {
    height: 44px;
    border-radius: 10px;
    font-size: 13px;
  }
  .catalog__filter {
    display: none;
    padding: 28px 20px 24px;
    border-radius: 14px;
  }
  .catalog__sidebar.is-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px;
    margin-bottom: 0;
    box-sizing: border-box;
  }
  .catalog__sidebar.is-open .catalog__filter-toggle {
    display: none;
  }
  .catalog__sidebar.is-open .catalog__filter-close {
    display: flex;
  }
  .catalog__sidebar.is-open .catalog__filter {
    display: block;
  }
  .catalog__sidebar.is-open .catalog__sort {
    margin-top: 48px;
  }
  .catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 24px;
    width: 100%;
  }
}
@media (max-width: 768px) and (max-width: 425.98px) {
  .catalog__grid {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 32px;
  }
}
@media (max-width: 768px) {
  .catalog__content {
    width: 100%;
  }
}

.product-card {
  width: 100%;
  height: 100%;
  min-width: 0;
  box-sizing: border-box;
  max-width: 100%;
  font-family: "Tilda";
  display: flex;
  flex-direction: column;
  padding: 14px 22px;
  --product-card-action-height: 40px;
}
.product-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 260px;
  margin-bottom: 27px;
  text-decoration: none;
  overflow: visible;
}
.product-card__image img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
  object-position: center center;
}
.product-card__title {
  display: block;
  min-height: 51px;
  margin-bottom: 15px;
  font-family: "Tilda";
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  color: #111;
  text-decoration: none;
}
.product-card__props {
  min-height: 36px;
  margin-bottom: 13px;
}
.product-card__price {
  margin-top: auto;
  margin-bottom: 22px;
  font-family: "Tilda";
  font-weight: 700;
  font-size: 26px;
  line-height: 110%;
  color: #111;
}
.product-card__button {
  width: 100%;
  height: var(--product-card-action-height);
  min-height: var(--product-card-action-height);
  max-height: var(--product-card-action-height);
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: #ffd000;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Tilda";
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  color: #111;
  cursor: pointer;
  text-decoration: none;
}
.product-card__prop {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  margin-bottom: 3px;
}
.product-card__prop:last-child {
  margin-bottom: 0;
}
.product-card__prop span,
.product-card__prop p {
  margin: 0;
  font-family: "Tilda";
  font-weight: 400;
  font-size: 11px;
  line-height: 120%;
  color: #8b929a;
}
.product-card__quick {
  display: block;
  margin-top: 12px;
  text-align: center;
  font-family: "Tilda";
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  color: #d89f00;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.product-card__cart-control {
  width: 100%;
  height: var(--product-card-action-height);
  min-height: var(--product-card-action-height);
  max-height: var(--product-card-action-height);
  border-radius: 4px;
  background: #ffd000;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: var(--product-card-action-height) 1fr var(--product-card-action-height);
  align-items: stretch;
  overflow: hidden;
}
.product-card__cart-btn, .product-card__cart-count {
  height: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--TildaSans);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: #111;
  text-decoration: none;
}
.product-card__cart-btn {
  font-size: 20px;
}
.product-card__cart-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}
.product-card__cart-count {
  border-left: 1px solid rgba(17, 17, 17, 0.16);
  border-right: 1px solid rgba(17, 17, 17, 0.16);
}
@media (max-width: 768px) {
  .product-card {
    --product-card-action-height: 46px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 12px 10px;
  }
  .product-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    margin-bottom: 16px;
    background: #f8f9fb;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .product-card__title {
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
  }
  .product-card__props {
    width: 100%;
    margin-bottom: 10px;
  }
  .product-card__prop {
    grid-template-columns: 55px 1fr;
    gap: 8px;
  }
  .product-card__prop span,
  .product-card__prop p {
    font-size: 12px;
  }
  .product-card__price {
    width: 100%;
    font-size: 24px;
    margin-bottom: 16px;
  }
  .product-card__button {
    font-size: 14px;
    font-weight: 500;
  }
  .product-card__quick {
    width: 100%;
    font-size: 14px;
  }
}

:root {
  --primary-black: #1a1a1a;
  --base-black-bg: #232324;
  --primary-white: #f8f8f8;
  --base-bg: #eef1f5;
  --line: #999999;
  --black-hover: #151516;
  --line-2: #E0E0E0;
  --link: #cecece;
  --primary: #FFDA01;
  --primary-hover: #E5AD24;
  --TildaSans: "Tilda", sans-serif;
  --MontSerrat: "Tilda", sans-serif;
  --transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-text-size-adjust: 100%;
}

.product-banner__head {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 100%;
  gap: 20px;
}

.product-banner__purchase {
  display: grid;
  grid-template-columns: 1fr 293px;
  column-gap: 24px;
  row-gap: 20px;
  align-items: start;
  width: 100%;
}
@media (max-width: 768px) {
  .product-banner__purchase {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
}

.product-banner__purchase > .product-banner__unit-price {
  grid-column: 1;
  grid-row: 1;
}

.product-banner__purchase-left {
  grid-column: 1;
  grid-row: 2;
}

.product-banner__purchase-actions {
  grid-column: 2;
  grid-row: 1/span 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  width: 293px;
  max-width: 100%;
  min-width: 0;
}
@media (max-width: 1024px) {
  .product-banner__purchase-actions {
    width: 100%;
    max-width: 220px;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .product-banner__purchase-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    max-width: none;
  }
}

.product-banner__unit-price {
  margin: 0;
  flex-shrink: 0;
  color: #999999;
  font-family: var(--TildaSans);
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
}
@media (max-width: 768px) {
  .product-banner__unit-price {
    font-size: 28px;
  }
}

.product-banner__toggle {
  font-family: var(--TildaSans);
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-black);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s;
  margin: 10px 0;
  display: block;
  text-align: left;
  width: 100%;
}
.product-banner__toggle:hover {
  opacity: 0.7;
}

.product-banner__loyalty {
  margin-top: 8px;
  color: #6B7280;
  font-family: var(--TildaSans);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}
.product-banner__loyalty a {
  color: #6B7280;
  text-decoration: underline;
}

.product-banner__delivery {
  position: fixed;
  bottom: 25px;
  left: 250px;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  height: 56px;
  border-radius: 10px;
  background-color: #F4F4F4;
  font-family: var(--TildaSans);
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-black);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  cursor: pointer;
}
.product-banner__delivery:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.product-banner__delivery img {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .product-banner__delivery img {
    filter: brightness(0) invert(1);
  }
}
@media (max-width: 768px) {
  .product-banner__delivery {
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 56px;
    font-size: 14px;
    padding: 0 10px;
    background-color: #FFDA01;
    color: #000;
    border-radius: 0;
  }
  .product-banner__delivery:hover {
    transform: none;
    opacity: 0.9;
  }
}

.fancybox__overlay {
  background: rgba(0, 0, 0, 0.1) !important;
}

.fancybox__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 70px 57px;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: #1A1A1A;
  cursor: default;
  border-radius: 16px;
  z-index: 20;
  justify-content: center;
  text-align: center;
  width: 815px;
}
@media (max-width: 815px) {
  .fancybox__content {
    padding: 40px 30px;
    width: 100%;
  }
}

.popup__title {
  font-family: var(--TildaSans);
  font-size: 32px;
  font-weight: 600;
  line-height: 100%;
  color: #F8F8F8;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .popup__title {
    font-size: 24px;
  }
}

.popup__box {
  background: #1A1A1A;
}

.popup__subtitle {
  font-family: var(--TildaSans);
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  color: #F8F8F8;
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .popup__subtitle {
    font-size: 16px;
  }
}

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

.popup-form__label {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 70px;
  text-align: left;
  font-family: var(--TildaSans);
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}
.popup-form__label span {
  color: #8a97a5;
  font-size: 14px;
  display: block;
}
@media (max-width: 768px) {
  .popup-form__label {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.popup-form__input {
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  background: #1f1f1f;
  color: #fff;
  font-family: var(--TildaSans);
  font-size: 16px;
  width: 100%;
  transition: all 0.2s ease;
}
.popup-form__input::placeholder {
  color: #6b7280;
}
.popup-form__input:focus {
  outline: none;
  background: #2b2b2b;
  box-shadow: 0 0 0 1px var(--primary);
}

.popup-form__policy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--TildaSans);
  font-size: 14px;
  color: #a3a3a3;
  line-height: 130%;
  text-align: left;
  margin-left: auto;
  width: fit-content;
  max-width: 451px;
}
.popup-form__policy input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #FFDA01;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  margin-top: 2px;
  flex-shrink: 0;
}
.popup-form__policy input[type=checkbox]:hover {
  border-color: rgb(255, 225.4291338583, 52);
  box-shadow: 0 0 4px rgba(0, 113, 216, 0.2);
}
.popup-form__policy input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 10px;
  border-right: 2px solid #FFDA01;
  border-bottom: 2px solid #FFDA01;
  transform: rotate(45deg);
}
.popup-form__policy a {
  color: #a3a3a3;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .popup-form__policy {
    max-width: 100%;
    margin-left: 0;
    font-size: 12px;
  }
}

.popup-form__label span {
  display: block;
  margin-top: 4px;
}

.popup-form button {
  margin-top: 30px;
  align-self: center;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 18px 32px;
  font-family: var(--TildaSans);
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  transition: 0.2s;
  width: 197px;
  height: 47px;
}
.popup-form button:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .popup-form button {
    align-self: stretch;
    width: 100%;
    height: 54px;
    font-size: 12px;
  }
}

body {
  scroll-behavior: smooth;
}

.product-banner {
  padding: 44px 0 50px;
}
@media (max-width: 1023px) {
  .product-banner {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .product-banner {
    padding: 30px 0;
  }
}
.product-banner__container {
  display: grid;
  grid-template-columns: 43% 55%;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .product-banner__container {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .product-banner__container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.product-banner .product-banner__left {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .product-banner .product-banner__left {
    align-items: center;
  }
}
.product-banner .product-banner__main-image {
  order: 1;
}
.product-banner .product-banner__images {
  order: 2;
  display: flex;
  flex-direction: row;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  align-items: center;
  justify-content: center;
}
.product-banner .product-banner__image {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.product-banner .product-banner__image--active {
  border-color: #E5AD24;
}
.product-banner .product-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1023px) {
  .product-banner__left {
    flex: 1 1 auto;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .product-banner__left {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 1023px) {
  .product-banner__main-image {
    height: 415px;
    max-width: 450px;
  }
}
@media (max-width: 768px) {
  .product-banner__main-image {
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.product-banner .product-banner__main-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.product-banner .product-banner__main-image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 1023px) {
  .product-banner__images {
    gap: 10px;
  }
}
@media (max-width: 5px) {
  .product-banner__images {
    flex-direction: row;
  }
}
@media (hover: hover) {
  .product-banner__image:hover {
    opacity: 0.9;
    border-color: var(--primary-hover);
  }
}
@media (max-width: 1023px) {
  .product-banner__image {
    width: 75px;
    height: 75px;
  }
}
.product-banner__image:active {
  opacity: 0.8;
}
.product-banner__image--active {
  border-color: var(--primary);
}
.product-banner__right {
  flex: 1 2 613px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1439px) {
  .product-banner__right {
    padding-top: 0;
  }
}
@media (max-width: 1023px) {
  .product-banner__right {
    flex: 1 1 auto;
    width: 100%;
  }
}
.product-banner__title {
  font-family: var(--TildaSans);
  font-size: 32px;
  font-weight: 600;
  align-self: flex-start;
}
@media (max-width: 768px) {
  .product-banner__title {
    font-size: 20px;
    line-height: 1.2;
  }
}
.product-banner__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-banner__text {
  font-family: var(--TildaSans);
}
.product-banner__selectors {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-banner__label {
  position: relative;
  background-color: var(--base-bg);
  border-radius: 9px;
  padding: 10px 15px;
  transition: var(--transition);
}
.product-banner__label:has(input:checked:focus)::after {
  inset: -4px;
  content: "";
  position: absolute;
  border: 2px solid var(--primary);
  border-radius: 11px;
}
.product-banner__label:has(input:checked) {
  background-color: var(--primary);
}
.product-banner__label:has(input:checked) .product-banner__label-text {
  color: var(--primary-black);
}
@media (hover: hover) {
  .product-banner__label:hover {
    background-color: var(--primary);
  }
  .product-banner__label:hover .product-banner__label-text {
    color: var(--primary-black);
  }
}
.product-banner__label:active {
  background-color: var(--primary-hover);
}
.product-banner__label:active .product-banner__label-text {
  color: var(--primary-black);
}
.product-banner__label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
}
.product-banner__label-text {
  font-family: var(--TildaSans);
  transition: var(--transition);
  user-select: none;
}
.product-banner__input {
  margin-top: 10px;
  max-width: 169px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 11px 15px;
  font-family: var(--TildaSans);
}
.product-banner__input::placeholder {
  color: var(--line);
}
.product-banner__submit {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
}
@media (max-width: 768px) {
  .product-banner__submit {
    max-width: none;
    width: 100%;
    gap: 10px;
  }
}
.product-banner__price {
  margin: 0;
  flex-shrink: 0;
  text-align: right;
  font-size: 32px;
  font-family: var(--TildaSans);
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .product-banner__price {
    font-size: clamp(18px, 2vw, 26px);
  }
}
@media (max-width: 768px) {
  .product-banner__price {
    font-size: 20px;
    text-align: left;
  }
}
.product-banner__button {
  color: var(--primary-black) !important;
  width: 100% !important;
  min-height: 56px !important;
  max-width: none !important;
  background-color: var(--primary) !important;
  border: 1px solid transparent !important;
}
@media (max-width: 1024px) {
  .product-banner__button {
    min-height: 48px !important;
  }
}
@media (max-width: 768px) {
  .product-banner__button {
    min-height: 42px !important;
    font-size: 13px !important;
  }
}
.product-banner__button-2 {
  width: 100%;
  min-height: 56px;
  max-width: none;
  background-color: var(--primary-white);
  border: 1px solid var(--primary);
  color: var(--base-black-bg);
}
@media (max-width: 1024px) {
  .product-banner__button-2 {
    min-height: 48px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .product-banner__button-2 {
    min-height: 42px;
    font-size: 13px;
  }
}
@media (max-width: 1024px) {
  .product-banner__button.solid-button, .product-banner__button-2.solid-button {
    width: 100% !important;
    max-width: none !important;
    min-height: 48px !important;
    font-size: 14px !important;
  }
}
@media (max-width: 768px) {
  .product-banner__button.solid-button, .product-banner__button-2.solid-button {
    min-height: 42px !important;
    font-size: 13px !important;
  }
}
.product-banner__add-to-cart {
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .product-banner__add-to-cart {
    gap: 10px;
  }
}

@media (max-width: 1023px) {
  .product-banner__left-button {
    width: 100%;
  }
}

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

.product-specs {
  padding: 50px 0;
}
@media (max-width: 1023px) {
  .product-specs {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .product-specs {
    padding: 30px 0;
  }
}
.product-specs__container {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .product-specs__container {
    flex-direction: column;
    align-items: stretch;
  }
}
.product-specs__left {
  flex: 1 1 377px;
}
@media (max-width: 768px) {
  .product-specs__left {
    flex: 1 1 auto;
  }
}
.product-specs__title {
  color: var(--primary-black);
}
.product-specs__row {
  margin-top: 62px;
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .product-specs__row {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .product-specs__row {
    margin-top: 30px;
  }
}
.product-specs__row + .product-specs__row {
  margin-top: 15px;
}
.product-specs__column {
  font-family: var(--TildaSans);
}
.product-specs__column:nth-child(1) {
  flex: 0 0 126px;
}
.product-specs__qna {
  flex: 1 5 881px;
  padding: 59px 35px 35px;
  border-radius: 9px;
  background-color: var(--base-bg);
}
@media (max-width: 1439px) {
  .product-specs__qna {
    padding: 40px 30px 30px;
  }
}
@media (max-width: 768px) {
  .product-specs__qna {
    flex: 1 1 auto;
    padding: 30px 20px;
  }
}
.product-specs__qna-title {
  font-size: 42px;
  font-weight: 600;
  font-family: var(--TildaSans);
}
@media (max-width: 1439px) {
  .product-specs__qna-title {
    font-size: 36px;
  }
}
@media (max-width: 1023px) {
  .product-specs__qna-title {
    font-size: 28px;
  }
}
.product-specs__qna-text {
  margin-top: 15px;
  font-family: var(--TildaSans);
}
.product-specs__qna-link {
  margin-top: 60px;
  background-color: var(--primary);
  color: var(--primary-white);
  font-weight: 600;
  min-height: 62px;
  max-width: 280px;
}
@media (max-width: 768px) {
  .product-specs__qna-link {
    margin-top: 30px;
  }
}

.product-description {
  padding: 50px 0;
}
@media (max-width: 1023px) {
  .product-description {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .product-description {
    padding: 30px 0;
  }
}
.product-description__text {
  font-family: var(--TildaSans);
  line-height: 135%;
}

.product-other {
  margin-bottom: -2px;
  background-color: var(--primary-black);
  padding: 72px 53px;
}
@media (max-width: 1024px) {
  .product-other {
    padding: 40px 46px;
  }
}
@media (max-width: 768px) {
  .product-other {
    padding: 30px 16px;
  }
}
.product-other__container {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 50px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .product-other__container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    row-gap: 24px;
  }
}
@media (max-width: 768px) {
  .product-other__container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 24px;
  }
}
@media (max-width: 768px) and (max-width: 425.98px) {
  .product-other__container {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 32px;
  }
}
.product-other__item {
  flex: 1 1 20%;
  max-width: calc(25% - 10px);
}
@media (min-width: 769px) and (max-width: 1024px) {
  .product-other__item {
    flex: none;
    max-width: none;
    min-width: 0;
    height: 100%;
  }
}
@media (max-width: 768px) {
  .product-other__item {
    flex: none;
    max-width: none;
    min-width: 0;
    width: 100%;
  }
}

.product-items {
  padding: 48px 0;
}
@media (max-width: 1024px) {
  .product-items {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .product-items {
    padding: 30px 0;
  }
}
.product-items__container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .product-items__container {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px 12px;
    align-items: start;
  }
}
@media (max-width: 768px) {
  .product-items__container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
}
.product-items__item {
  display: flex;
  gap: 22px;
  align-items: center;
  min-width: 0;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .product-items__item {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .product-items__item {
    gap: 12px;
    width: 100%;
  }
}
.product-items__item-image {
  min-width: 50px;
  height: 50px;
  flex-shrink: 0;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .product-items__item-image {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .product-items__item-image {
    min-width: 44px;
    width: 44px;
    height: 44px;
  }
}
.product-items__item-content {
  min-width: 0;
}
.product-items__item-title {
  font-weight: 600;
  font-family: var(--TildaSans);
}
@media (min-width: 769px) and (max-width: 1024px) {
  .product-items__item-title {
    font-size: 13px;
    line-height: 1.2;
  }
}
@media (max-width: 768px) {
  .product-items__item-title {
    font-size: 14px;
    line-height: 1.2;
  }
}
.product-items__item-text {
  margin-top: 2px;
  font-family: var(--TildaSans);
}
@media (min-width: 769px) and (max-width: 1024px) {
  .product-items__item-text {
    font-size: 12px;
    line-height: 1.25;
  }
}
@media (max-width: 768px) {
  .product-items__item-text {
    font-size: 13px;
    line-height: 1.25;
  }
}

.product-info {
  padding: 50px 0;
}
@media (max-width: 768px) {
  .product-info {
    padding: 30px 0;
  }
}
.product-info__container {
  display: flex;
  align-items: flex-start;
  gap: 136px;
}
@media (max-width: 1439px) {
  .product-info__container {
    gap: 80px;
  }
}
@media (max-width: 1023px) {
  .product-info__container {
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .product-info__container {
    flex-direction: column;
    gap: 20px;
  }
}
.product-info__tabs {
  flex: 0 2 431px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .product-info__tabs {
    display: none;
  }
}
.product-info__tab {
  padding: 22px 30px;
  text-align: left;
  font-family: var(--TildaSans);
  color: var(--primary-black);
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: var(--transition);
}
@media (hover: hover) {
  .product-info__tab:hover {
    background-color: var(--base-bg);
  }
}
.product-info__tab:active {
  background-color: var(--link);
}
.product-info__tab--active {
  border-left: 5px solid var(--primary);
  padding-left: 26px;
}
.product-info__tab + .product-info__tab {
  border-top: 1px solid var(--line);
}
.product-info__block {
  display: none;
  flex: 0 1 773px;
}
@media (max-width: 768px) {
  .product-info__block {
    width: 100%;
    max-width: none;
    flex: 1 1 100%;
  }
}
.product-info__block[data-active] {
  display: block;
}
.product-info__table {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.product-info__row {
  display: flex;
  padding: 11px 20px;
  gap: 10px;
  background-color: var(--primary-white);
  border-bottom: var(--line) 1px solid;
  color: var(--primary-black);
}
@media (max-width: 768px) {
  .product-info__row {
    padding: 11px 10px;
  }
}
.product-info__row:nth-child(2n) {
  background-color: var(--base-bg);
}
.product-info__column {
  flex: 1 1 33%;
  font-family: var(--TildaSans);
  color: var(--primary-black);
}
.product-info__column:nth-child(3) {
  flex: 0 0 135px;
  text-align: right;
}
@media (max-width: 1023px) {
  .product-info__column:nth-child(3) {
    flex: 0 0 80px;
  }
}
.product-info__anch {
  font-size: 13px;
  text-align: right;
  color: var(--primary-black);
  text-decoration: underline !important;
  transform: var(--transition);
}
@media (hover: hover) {
  .product-info__anch:hover {
    color: var(--black-hover);
  }
}
.product-info__certificates {
  display: flex;
  flex-wrap: wrap;
  column-gap: 42px;
  row-gap: 30px;
}
.product-info__certificates .certificates__item {
  flex: 1 1 40%;
  max-width: calc(50% - 21px);
  min-width: 0;
}
.product-info__certificates .certificates__item-image {
  border-radius: 14px;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  cursor: pointer;
}
.product-info__certificates .certificates__item-title {
  margin-top: 16px;
  font-family: var(--TildaSans);
  font-size: 13px;
  line-height: 140%;
  font-weight: 400;
}
.product-info__certificates .certificates__item--hidden {
  display: none;
}
@media (max-width: 768px) {
  .product-info__certificates {
    column-gap: 20px;
  }
  .product-info__certificates .certificates__item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.product-info__select-wrapper {
  width: 100%;
  position: relative;
  display: none;
}
@media (max-width: 768px) {
  .product-info__select-wrapper {
    display: block;
    max-width: none;
  }
}
.product-info__dropdown {
  width: 100%;
  border: 1px solid var(--primary-black);
  border-radius: 7px;
  overflow: hidden;
  background-color: var(--primary);
}
.product-info__dropdown--open {
  border-radius: 7px;
}
.product-info__dropdown--open .product-info__dropdown-toggle {
  border-bottom: 1px solid var(--primary-black);
}
.product-info__dropdown-toggle {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 40px 16px 20px;
  background-color: var(--primary);
  color: var(--primary-black);
  border: 0;
  font-weight: 600;
  font-family: var(--TildaSans);
  font-size: 18px;
  line-height: 1.2;
  cursor: pointer;
  text-align: left;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.product-info__dropdown-toggle:focus, .product-info__dropdown-toggle:focus-visible {
  outline: none;
}
.product-info__dropdown-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--primary-black);
  border-bottom: 2px solid var(--primary-black);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease;
}
.product-info__dropdown--open .product-info__dropdown-toggle::after {
  transform: translateY(-35%) rotate(-135deg);
}
.product-info__dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-info__dropdown-item {
  display: block;
  width: 100%;
  padding: 16px 20px;
  background-color: var(--primary);
  color: var(--primary-black);
  border: 0;
  border-top: 1px solid var(--primary-black);
  font-weight: 600;
  font-family: var(--TildaSans);
  font-size: 18px;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.product-info__dropdown-item:focus, .product-info__dropdown-item:focus-visible {
  outline: none;
}
.product-info__dropdown-item--active {
  background-color: #E5AD24;
  color: var(--primary-black);
  border-left: 5px solid var(--primary-black);
  padding-left: 15px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .product-banner__head {
    display: flex;
    width: 100%;
  }
  .product-banner__purchase {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 220px);
    column-gap: 16px;
  }
  .product-banner__unit-price {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .product-banner__head {
    display: flex;
    width: 100%;
    gap: 16px;
  }
  .product-banner__purchase > .product-banner__unit-price,
  .product-banner__purchase-left,
  .product-banner__purchase-actions,
  .product-banner__purchase-actions .product-banner__price,
  .product-banner__submit {
    grid-column: unset;
    grid-row: unset;
  }
  .product-banner__loyalty {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.3;
  }
}
.offer {
  padding: 70px 0;
}
@media (max-width: 1023px) {
  .offer {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .offer {
    padding: 30px 0;
  }
}
.offer__container {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .offer__container {
    gap: 40px;
    flex-direction: column;
  }
}
.offer__left {
  flex: 0 1 660px;
  display: flex;
  flex-direction: column;
  gap: 65px;
}
@media (max-width: 768px) {
  .offer__left {
    flex: 1 1 auto;
    gap: 40px;
  }
}
.offer__title {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-black);
}
.offer__text {
  margin-top: 30px;
  font-family: var(--TildaSans);
  color: var(--line);
}
@media (max-width: 768px) {
  .offer__text {
    margin-top: 20px;
  }
}
.offer__button {
  color: var(--primary-white);
  background-color: var(--primary);
  max-width: 280px;
  min-height: 62px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .offer__button {
    margin-top: 20px;
  }
}
.offer__right {
  flex: 0 1 547px;
  min-width: 436px;
}
@media (max-width: 1023px) {
  .offer__right {
    min-width: 380px;
  }
}
@media (max-width: 768px) {
  .offer__right {
    flex: 1 1 auto;
    min-width: auto;
  }
}
.offer__clients {
  margin-top: 46px;
  justify-content: flex-start;
}
@media (max-width: 1023px) {
  .offer__clients {
    margin-top: 30px;
    justify-content: center;
  }
}

.advantages {
  padding: 70px 0;
}
@media (max-width: 1023px) {
  .advantages {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .advantages {
    padding: 30px 0;
  }
}
.advantages__title {
  color: var(--primary-black);
}
.advantages__container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
}
@media (max-width: 1023px) {
  .advantages__container {
    margin-top: 40px;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .advantages__container {
    margin-top: 30px;
  }
}
.advantages__item {
  flex: 1 1 40%;
  max-width: calc(50% - 10px);
  background-color: var(--primary);
  border-radius: 13px;
  padding: 30px 30px 40px;
}
@media (max-width: 1023px) {
  .advantages__item {
    padding: 20px 20px 30px;
  }
}
@media (max-width: 500px) {
  .advantages__item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .advantages__item-image {
    width: 60px;
  }
}
.advantages__item-title {
  margin-top: 87px;
}
@media (max-width: 768px) {
  .advantages__item-title {
    margin-top: 40px;
  }
}
.advantages__item-text {
  font-family: var(--TildaSans);
  margin-top: 10px;
  color: var(--primary-white);
}

.callback-form {
  background-color: var(--primary-black);
  padding: 100px 0 76px;
}
@media (max-width: 1023px) {
  .callback-form {
    padding: 70px 0;
  }
}
@media (max-width: 768px) {
  .callback-form {
    padding: 40px 0;
  }
}
.callback-form__container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1023px) {
  .callback-form__container {
    flex-direction: column;
    align-items: stretch;
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .callback-form__container {
    gap: 53px;
  }
}
.callback-form__form {
  max-width: 700px;
  width: 100%;
}
@media (max-width: 1023px) {
  .callback-form__form {
    margin-top: 0;
    max-width: 100%;
  }
}
.callback-form__input-wrapper,
.callback-form .vektor-form__field--row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1023px) {
  .callback-form__input-wrapper,
  .callback-form .vektor-form__field--row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.callback-form .vektor-form__field--row .vektor-form__control {
  flex: 0 1 451px;
  width: 100%;
  max-width: 451px;
  min-width: 0;
}
@media (max-width: 1023px) {
  .callback-form .vektor-form__field--row .vektor-form__control {
    flex: 1 1 auto;
    max-width: 100%;
  }
}
.callback-form .vektor-form__field--row .vektor-form__control .iti {
  width: 100% !important;
  max-width: 100% !important;
}
.callback-form__label,
.callback-form .vektor-form__label {
  font-family: "Tilda", sans-serif;
  font-size: 20px;
  flex: 0 0 240px;
  max-width: 240px;
  line-height: 1.25;
  color: var(--primary-white);
}
@media (max-width: 1023px) {
  .callback-form__label,
  .callback-form .vektor-form__label {
    flex: 1 1 auto;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .callback-form__label,
  .callback-form .vektor-form__label {
    font-size: 16px;
  }
}
.callback-form__fields {
  width: 100%;
}
.callback-form__input-wrapper + .callback-form__input-wrapper {
  margin-top: 20px;
}
.callback-form .iti {
  display: flex !important;
  align-items: center;
  max-width: 451px;
  width: 100%;
  height: 74px;
  min-height: 74px;
  max-height: 74px;
  background-color: var(--base-black-bg);
  border-radius: 10px;
  overflow: visible;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .callback-form .iti {
    height: 64px;
    min-height: 64px;
    max-height: 64px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .callback-form .iti {
    max-width: 600px;
  }
}
.callback-form .iti__country-container {
  position: static !important;
  flex-shrink: 0;
  padding: 0 0 0 20px !important;
  height: 100%;
}
.callback-form .iti__tel-input,
.callback-form .phone-input {
  flex: 1 1 auto !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 74px !important;
  height: 74px !important;
  max-height: 74px !important;
  padding: 0 35px 0 8px !important;
  font-size: 20px !important;
  line-height: 74px !important;
  color: var(--primary-white) !important;
  background: transparent !important;
  box-sizing: border-box !important;
}
@media (max-width: 1023px) {
  .callback-form .iti__tel-input,
  .callback-form .phone-input {
    min-height: 64px !important;
    height: 64px !important;
    max-height: 64px !important;
    padding: 0 25px 0 8px !important;
    font-size: 16px !important;
    line-height: 64px !important;
  }
}
.callback-form .iti__tel-input::placeholder,
.callback-form .phone-input::placeholder {
  color: var(--line, #6f7482) !important;
}
.callback-form .iti__selected-dial-code {
  color: var(--line, #6f7482) !important;
  font-size: 20px;
  transition: color 0.2s ease;
}
@media (max-width: 1023px) {
  .callback-form .iti__selected-dial-code {
    font-size: 16px;
  }
}
.callback-form .iti.has-value .iti__selected-dial-code {
  color: var(--primary-white, #fff) !important;
}
.callback-form__input,
.callback-form .vektor-form__input {
  background-color: var(--base-black-bg);
  height: 74px;
  min-height: 74px;
  max-height: 74px;
  padding: 0 35px;
  box-sizing: border-box;
  font-size: 20px;
  line-height: 74px;
  font-family: "Tilda", sans-serif;
  border-radius: 10px;
  border: 0;
  color: var(--primary-white);
  max-width: 451px;
  width: 100%;
}
@media (max-width: 1023px) {
  .callback-form__input,
  .callback-form .vektor-form__input {
    height: 64px;
    min-height: 64px;
    max-height: 64px;
    padding: 0 25px;
    font-size: 16px;
    line-height: 64px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .callback-form__input,
  .callback-form .vektor-form__input {
    max-width: 600px;
  }
}
.callback-form__input::placeholder {
  color: var(--line);
}
.callback-form__lower {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 451px;
  width: 100%;
  margin-left: calc(240px + 16px);
  margin-top: 30px;
}
@media (max-width: 1023px) {
  .callback-form__lower {
    margin-left: 0;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .callback-form__lower {
    margin-top: 20px;
  }
}
.callback-form__policy {
  user-select: none;
  position: relative;
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
  font-family: var(--TildaSans), sans-serif;
}
.callback-form__policy a {
  color: var(--primary-white);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (hover: hover) {
  .callback-form__policy a:hover {
    color: rgba(255, 255, 255, 0.85);
  }
}
.callback-form__policy input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.callback-form__policy::after {
  position: absolute;
  transition: var(--transition);
  background-image: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px 8px;
  content: "";
  top: 2px;
  left: 0;
  border-radius: 3px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--primary);
  background-color: transparent;
  box-sizing: border-box;
}
.callback-form__policy:has(input:checked)::after {
  background-color: var(--primary);
  border-color: var(--primary);
  background-image: url("../images/svg/checkbox-checked.svg");
}
.callback-form__button.solid-button {
  max-width: 197px;
  height: 47px;
  margin-top: 24px;
  background-color: var(--primary-white);
  color: var(--primary-black);
  border: 0;
  font-size: 16px;
  font-weight: 400;
}
@media (hover: hover) {
  .callback-form__button.solid-button:hover {
    background-color: rgba(255, 255, 255, 0.92);
    color: var(--primary-black);
  }
}
.callback-form__button.solid-button:active {
  background-color: rgba(255, 255, 255, 0.85);
  color: var(--primary-black);
}
@media (max-width: 768px) {
  .callback-form__button.solid-button {
    max-width: 100% !important;
    width: 100%;
  }
}
.callback-form .vektor-form--dark .vektor-form__policy a {
  color: var(--primary-white);
}
.callback-form__contacts {
  max-width: 433px;
  width: 100%;
}
@media (max-width: 1023px) {
  .callback-form__contacts {
    align-self: stretch;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .callback-form__contacts {
    align-self: stretch;
  }
}
.callback-form__title {
  font-size: 32px;
  color: var(--primary-white);
  font-family: var(--TildaSans), sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.callback-form__title span {
  font-weight: 600;
}
@media (max-width: 1023px) {
  .callback-form__title {
    font-size: 28px;
    display: none;
  }
}
.callback-form__title--mobile {
  display: none;
}
@media (max-width: 1023px) {
  .callback-form__title--mobile {
    display: block;
  }
}
.callback-form__subtitle {
  margin-top: 50px;
  font-size: 24px;
  text-transform: uppercase;
  padding-left: 14px;
  color: var(--primary-white);
}
@media (max-width: 1023px) {
  .callback-form__subtitle {
    padding-left: 0;
    margin-top: 0;
  }
}
.callback-form__contact {
  margin-top: 26px;
  padding-left: 14px;
  display: flex;
  align-items: center;
  width: fit-content;
  font-family: "Tilda", sans-serif;
  font-size: 20px;
  gap: 20px;
  color: var(--primary-white);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (max-width: 1023px) {
  .callback-form__contact {
    padding-left: 0;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .callback-form__contact {
    font-size: 16px;
  }
}
@media (hover: hover) {
  .callback-form__contact:hover {
    color: var(--primary-white);
    opacity: 0.85;
  }
}
.callback-form__contact:active {
  color: var(--primary-white);
  opacity: 0.75;
}
.callback-form__contact + .callback-form__contact {
  margin-top: 10px;
}
.callback-form__contact-image {
  display: block;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}
@media (max-width: 1024px) {
  .callback-form {
    padding: 70px 0;
  }
  .callback-form__container {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
  .callback-form__form {
    max-width: 560px;
    margin-top: 0;
  }
  .callback-form__input-wrapper,
  .callback-form .vektor-form__field--row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
  }
  .callback-form__label,
  .callback-form .vektor-form__label {
    flex: none;
    width: 100%;
    max-width: none;
    font-size: 16px;
  }
  .callback-form .vektor-form__field--row .vektor-form__control {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }
  .callback-form__input,
  .callback-form .vektor-form__input,
  .callback-form .iti {
    max-width: 100%;
    width: 100%;
  }
  .callback-form__lower {
    margin-left: 0;
    max-width: 100%;
    width: 100%;
  }
  .callback-form__button.solid-button {
    width: 100%;
    max-width: 100%;
  }
  .callback-form__contacts {
    align-self: stretch;
    max-width: 100%;
  }
  .callback-form__title {
    display: none;
  }
  .callback-form__title--mobile {
    display: block;
    margin-bottom: 28px;
    font-size: 28px;
  }
  .callback-form__subtitle {
    padding-left: 0;
    margin-top: 0;
  }
  .callback-form__contact {
    padding-left: 0;
    font-size: 18px;
  }
}

.catalog-item {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.catalog-item__image {
  border-radius: 20px;
  background-color: var(--primary-white);
  padding: 60px 10%;
  aspect-ratio: 2/3;
}
@media (max-width: 1023px) {
  .catalog-item__image {
    max-height: 400px;
  }
}
@media (max-width: 768px) {
  .catalog-item__image {
    padding: 30px 10%;
    max-height: 350px;
  }
}
.catalog-item__image img {
  object-fit: contain;
}
.catalog-item__title {
  font-family: var(--TildaSans);
  padding: 0 10px;
  font-size: 24px;
  line-height: 115%;
  color: var(--primary-white);
  margin-top: 30px;
}
@media (max-width: 768px) {
  .catalog-item__title {
    font-size: 20px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .catalog-item__title {
    margin-top: 20px;
  }
}
.catalog-item__price {
  padding: 0 10px;
  font-family: var(--TildaSans);
  font-size: 32px;
  font-weight: 600;
  margin-top: 20px;
  color: var(--primary-white);
  line-height: 0.99;
}
@media (max-width: 1023px) {
  .catalog-item__price {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .catalog-item__price {
    font-size: 24px;
    margin-top: 15px;
  }
}
.catalog-item__specs {
  margin-top: 30px;
  display: flex;
  gap: 28px;
  padding: 0 10px;
}
@media (max-width: 1439px) {
  .catalog-item__specs {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .catalog-item__specs {
    gap: 15px;
    margin-top: 20px;
  }
}
.catalog-item__specs:nth-of-type(2) {
  flex: 1 1 auto;
}
.catalog-item__specs + .catalog-item__specs {
  margin-top: 10px;
}
.catalog-item__spec {
  font-size: 14px;
  color: var(--primary-white);
  font-family: var(--TildaSans);
}
.catalog-item__spec:nth-child(1) {
  flex: 0 0 64px;
  font-weight: 600;
}
.catalog-item__spec:nth-child(2) {
  flex: 1 0;
}
.catalog-item__link {
  margin-top: 30px;
  max-width: 100%;
  min-height: 56px;
}
@media (max-width: 768px) {
  .catalog-item__link {
    margin-top: 20px;
  }
}

.item-card {
  position: relative;
  overflow: hidden;
  border-radius: 9px;
  display: flex;
  flex-direction: column;
}
.item-card__image {
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
  width: 100%;
  aspect-ratio: 2/1;
}
.item-card__image--white-bg {
  border-radius: 13px;
}
@media (hover: hover) {
  .item-card:hover .item-card__image img {
    transform: scale(1.1);
  }
  .item-card:hover .item-card__title {
    color: var(--primary);
  }
}
.item-card:active:hover .item-card:active__image img {
  transform: scale(1.1);
}
.item-card:active:hover .item-card:active__title {
  color: var(--primary);
}
.item-card:has(.item-card__image--white-bg) .item-card__content {
  padding-bottom: 0 !important;
}
.item-card__content {
  background-color: var(--primary-white);
  padding: 30px;
  font-family: "Tilda", sans-serif;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .item-card__content {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .item-card__content {
    padding: 15px;
  }
}
.item-card__title {
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-black);
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  max-width: 440px;
}
@media (max-width: 768px) {
  .item-card__title {
    font-size: 18px;
  }
}
.item-card__lower {
  margin-top: 15px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1023px) {
  .item-card__lower {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.item-card__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.item-card__info-row {
  display: flex;
}
.item-card__info-cell:nth-child(1) {
  color: var(--line);
  flex: 0 0 70px;
}
.item-card__info-cell {
  color: var(--primary-black);
  min-width: max-content;
}
@media (max-width: 768px) {
  .item-card__info-cell {
    font-size: 14px;
  }
}
.item-card__link {
  display: flex;
  align-items: center;
  gap: 15px;
  line-height: 0.99;
  align-self: flex-end;
}
.item-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
}
.item-card__link-image {
  background-color: var(--primary);
  padding: 6.18px;
  border-radius: 5.25px;
}

.product-other .image-wrapper {
  max-width: 100%;
  overflow: hidden;
  align-items: center;
  display: flex;
  position: relative;
  justify-content: center;
}
.product-other .image-wrapper__image {
  object-fit: contain;
  object-position: center center;
  height: 100%;
  width: auto;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.product-other .title-h2 {
  color: var(--primary-white);
}
@media (min-width: 769px) and (max-width: 1024px) {
  .product-other .catalog-item__image {
    padding: 20px 8%;
    aspect-ratio: 1/1.15;
    max-height: none;
  }
  .product-other .catalog-item__title {
    font-size: 15px;
    line-height: 1.2;
    margin-top: 14px;
    padding: 0 4px;
  }
  .product-other .catalog-item__price {
    font-size: 18px;
    margin-top: 10px;
    padding: 0 4px;
  }
  .product-other .catalog-item__specs {
    margin-top: 10px;
    gap: 10px;
    padding: 0 4px;
  }
  .product-other .catalog-item__spec {
    font-size: 11px;
  }
  .product-other .catalog-item__spec:nth-child(1) {
    flex: 0 0 52px;
  }
  .product-other .catalog-item__link.solid-button {
    margin-top: auto;
    padding-top: 12px;
    min-height: 40px;
    font-size: 11px;
    max-width: 100% !important;
  }
}
@media (max-width: 768px) {
  .product-other .catalog-item__image {
    padding: 16px 10%;
    aspect-ratio: 1/1.1;
    max-height: none;
  }
  .product-other .catalog-item__title {
    font-size: 14px;
    line-height: 1.2;
    margin-top: 12px;
    padding: 0 4px;
  }
  .product-other .catalog-item__price {
    font-size: 16px;
    margin-top: 8px;
    padding: 0 4px;
  }
  .product-other .catalog-item__specs {
    margin-top: 8px;
    gap: 8px;
    padding: 0 4px;
  }
  .product-other .catalog-item__spec {
    font-size: 10px;
  }
  .product-other .catalog-item__link.solid-button {
    margin-top: auto;
    padding-top: 10px;
    min-height: 38px;
    font-size: 11px;
    max-width: 100% !important;
  }
}

.cart-page {
  padding: 42px 0 70px;
  background: #fff;
  font-family: "Tilda", sans-serif;
}
.cart-page__container {
  padding: 0 46px;
}
.cart-page__title {
  margin: 0 0 28px;
  font-weight: 700;
  font-size: 30px;
  line-height: 110%;
  text-transform: uppercase;
  color: #111;
}
.cart-page__table-wrap {
  margin-bottom: 56px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8ebef;
}
.cart-page__table {
  width: 100%;
  border-collapse: collapse;
}
.cart-page__head th {
  padding: 0 12px 18px 0;
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  color: #8b929a;
  text-align: left;
}
.cart-page__head th:nth-child(2), .cart-page__head th:nth-child(3) {
  width: 140px;
}
.cart-page__head th:last-child {
  width: 120px;
  text-align: right;
  padding-right: 0;
}
.cart-page__row td {
  padding: 22px 12px 22px 0;
  vertical-align: middle;
  border-top: 1px solid #e8ebef;
  font-size: 15px;
  line-height: 120%;
  color: #111;
}
.cart-page__row td:last-child {
  text-align: right;
  padding-right: 0;
  font-weight: 600;
}
.cart-page__product {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}
.cart-page__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 6px;
  background: #f8f9fb;
  overflow: hidden;
}
.cart-page__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-page__name {
  font-weight: 500;
  font-size: 15px;
  line-height: 130%;
  color: #111;
  text-decoration: none;
}
.cart-page__name:hover {
  color: #d89f00;
}
.cart-page__price {
  white-space: nowrap;
}
.cart-page__qty {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  box-sizing: border-box;
  width: 99px;
  height: 31px;
  padding: 3px 6px;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  background: #fff;
}
.cart-page__qty-btn {
  flex-shrink: 0;
  position: relative;
  width: 23px;
  height: 23px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f7f5f9;
  font-size: 0;
  line-height: 0;
  color: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.cart-page__qty-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffda01;
  border-radius: 1px;
}
.cart-page__qty-btn:first-child::before {
  width: 10px;
  height: 2px;
}
.cart-page__qty-btn:last-child::before {
  width: 10px;
  height: 2px;
}
.cart-page__qty-btn:last-child::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 10px;
  background: #ffda01;
  border-radius: 1px;
}
.cart-page__qty-btn:hover {
  background: #ede9f2;
}
.cart-page__qty-value {
  flex: 1;
  min-width: 20px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--TildaSans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #1a1a1a;
}
.cart-page__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px 60px;
  align-items: start;
}
.cart-page__checkout-title {
  margin: 0 0 32px;
  font-weight: 700;
  font-size: 30px;
  line-height: 110%;
  text-transform: uppercase;
  color: #111;
}
.cart-page__summary {
  position: sticky;
  top: 24px;
  padding: 28px 26px 24px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(17, 17, 17, 0.08);
}
.cart-page__summary-title {
  margin: 0 0 22px;
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  color: #111;
}
.cart-page__summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 120%;
  color: #6d757f;
}
.cart-page__summary-row strong {
  font-weight: 600;
  font-size: 15px;
  color: #111;
}
.cart-page__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 53px;
  margin-top: 22px;
  margin-bottom: 16px;
  border: 0;
  border-radius: 40px;
  background: #ffd000;
  font-family: inherit;
  font-weight: 500;
  font-size: 15px;
  color: #111;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.cart-page__submit-arrow {
  font-size: 22px;
  line-height: 1;
}
.cart-page__legal {
  margin: 0;
  font-size: 11px;
  line-height: 140%;
  color: #a3aab2;
}
.cart-page__legal a {
  color: #e5ad24;
  text-decoration: none;
}
.cart-page__legal a:hover {
  text-decoration: underline;
}
.cart-page__cart-total {
  display: none;
}
@media (max-width: 768px) {
  .cart-page {
    padding: 20px 0 40px;
  }
  .cart-page__container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 16px;
    box-sizing: border-box;
  }
  .cart-page__title {
    margin: 0 0 20px;
    font-weight: 600;
    font-size: 24px;
    line-height: 0.97;
    text-align: center;
    color: #0a0d14;
  }
  .cart-page__table-wrap {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .cart-page__table {
    display: block;
  }
  .cart-page__table thead {
    display: none;
  }
  .cart-page__table tbody {
    display: block;
  }
  .cart-page__row {
    display: grid !important;
    grid-template-columns: 79px 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 15px;
    row-gap: 10px;
    align-items: center;
    padding: 20px 0 16px;
    border-top: none !important;
  }
  .cart-page__row:not(:last-child) {
    border-bottom: 1px solid #e8ebef;
  }
  .cart-page__row td {
    display: block;
    padding: 0;
    border-top: none;
    width: auto;
    font-size: 16px;
    color: #070707;
  }
  .cart-page__row td:first-child {
    grid-column: 1/-1;
    grid-row: 1;
    width: 100% !important;
    margin: 0;
  }
  .cart-page__product {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  .cart-page__thumb {
    width: 79px;
    height: 79px;
    border-radius: 10px;
    background: #f8fafc;
  }
  .cart-page__name {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: #070707;
  }
  .cart-page__meta {
    font-size: 14px;
    color: #6f7482;
  }
  .cart-page__row td:nth-child(2) {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    padding-left: 0;
    font-weight: 700;
    font-size: 16px;
    color: #000;
    text-align: left;
  }
  .cart-page__row td:nth-child(3) {
    grid-column: 3;
    grid-row: 2;
    margin: 0;
    justify-self: end;
  }
  .cart-page__row td:nth-child(4) {
    display: none;
  }
  .cart-page__cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 20px;
    border-top: 1px solid #e8ebef;
  }
  .cart-page__cart-total-label {
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    color: #6f7482;
  }
  .cart-page__cart-total-value {
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #000;
  }
  .cart-page__bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .cart-page__checkout {
    padding: 0;
    border: 0;
    margin: 0;
  }
  .cart-page__checkout, .cart-page__form {
    width: 100%;
    max-width: 100%;
  }
  .cart-page .vektor-form__field {
    display: block;
    width: 100%;
    max-width: 100%;
  }
  .cart-page .vektor-form__input,
  .cart-page .vektor-form .iti {
    width: 100% !important;
    max-width: 100% !important;
  }
  .cart-page__checkout-title {
    margin: 0 0 20px;
    font-weight: 600;
    font-size: 24px;
    line-height: 0.97;
    text-transform: uppercase;
    color: #0a0d14;
  }
  .cart-page .vektor-form__label {
    margin-bottom: 5px;
    font-size: 16px;
    color: #6f7482;
  }
  .cart-page .vektor-form__input:not(.phone-input)::placeholder {
    color: #b1b1b1;
  }
  .cart-page__summary {
    width: 100%;
    max-width: 100%;
    position: static;
    padding: 30px 15px 24px;
    border-radius: 10px;
    background: #f8fafc;
    box-shadow: 0 4px 9px rgba(152, 160, 180, 0.25);
    box-sizing: border-box;
  }
  .cart-page__summary-title {
    margin: 0 0 24px;
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    color: #0a0d14;
  }
  .cart-page__summary-row {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1;
    color: #060606;
  }
  .cart-page__summary-row strong {
    font-weight: 400;
    font-size: 16px;
    color: #060606;
  }
  .cart-page__summary-row--total {
    display: none;
  }
  .cart-page__submit {
    justify-content: center;
    gap: 12px;
    height: 53px;
    margin-top: 24px;
    margin-bottom: 15px;
    border-radius: 25px;
    background: #ffda01;
    font-size: 16px;
    font-weight: 400;
    color: #060606;
  }
  .cart-page__submit-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: #ffda01;
    font-size: 22px;
    line-height: 1;
    transform: none;
  }
  .cart-page__legal {
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
    color: #b1b1b1;
  }
  .cart-page__legal a {
    color: #e5ad24;
  }
}

.payment {
  padding: 50px 0 80px;
  background: #fff;
  font-family: "Tilda", sans-serif;
}
.payment__container {
  padding: 0 46px;
}
.payment__title {
  margin: 0 0 16px;
  font-weight: 600;
  font-size: 32px;
  line-height: 97%;
  text-transform: uppercase;
  color: #111;
}
.payment__subtitle {
  margin: 0 0 40px;
  max-width: 720px;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: #4f5660;
}
.payment__cards {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: 20px;
  align-items: stretch;
}
.payment__card {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: 100%;
  box-sizing: border-box;
  padding: 34px 38px 38px;
  border-radius: 8px;
  background: #f8f9fb;
}
.payment__card-label {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 120%;
  color: #8b929a;
}
.payment__card-title {
  margin: 0 0 16px;
  font-weight: 600;
  font-size: 24px;
  line-height: 97%;
  text-transform: uppercase;
  color: #111;
}
.payment__card--cash .payment__card-title {
  margin-bottom: 0;
}
.payment__card-text {
  margin: 0;
  max-width: 100%;
  font-size: 16px;
  letter-spacing: 0%;
  color: #3B4256;
}
@media (max-width: 768px) {
  .payment {
    padding: 24px 0 40px;
  }
  .payment__container {
    padding: 0 16px;
  }
  .payment__title {
    margin: 0 0 12px;
    font-size: 22px;
  }
  .payment__subtitle {
    margin: 0 0 28px;
    font-size: 14px;
  }
  .payment__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .payment__card {
    height: auto;
    padding: 24px 20px;
  }
  .payment__card-label {
    margin: 0 0 12px;
  }
  .payment__card-title {
    margin: 0 0 12px;
    font-size: 22px;
  }
  .payment__card--cash .payment__card-title {
    margin-bottom: 0;
  }
  .payment__card-text {
    font-size: 14px;
  }
}

.certificates-page {
  padding: 50px 0 90px;
  background: #fff;
  font-family: "Tilda", sans-serif;
}
.certificates-page__container {
  max-width: 1348px;
  margin: 0 auto;
  padding: 0 46px;
}
.certificates-page__title {
  margin: 0 0 40px;
  font-weight: 700;
  font-size: 30px;
  line-height: 110%;
  text-transform: uppercase;
  color: #111;
}
.certificates-page__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 36px;
  row-gap: 48px;
}
.certificates-page__item {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.certificates-page__image {
  display: block;
  margin-bottom: 16px;
  text-decoration: none;
  border-radius: 2px;
  overflow: hidden;
  background: #f8f9fb;
  box-shadow: 0 1px 4px rgba(17, 17, 17, 0.06);
}
.certificates-page__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 280/396;
  object-fit: cover;
}
.certificates-page__image:hover img {
  opacity: 0.92;
}
.certificates-page__caption {
  margin: 0;
  font-weight: 400;
  font-size: 13px;
  line-height: 140%;
  color: #111;
}
@media (max-width: 1023px) {
  .certificates-page {
    padding: 40px 0 70px;
  }
  .certificates-page__container {
    padding: 0 24px;
  }
  .certificates-page__title {
    margin-bottom: 32px;
    font-size: 28px;
  }
  .certificates-page__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 36px;
  }
}
@media (max-width: 768px) {
  .certificates-page {
    padding: 20px 0 40px;
  }
  .certificates-page__container {
    max-width: 360px;
    padding: 0 10px;
  }
  .certificates-page__title {
    margin: 0 0 20px;
    font-size: 22px;
    line-height: 110%;
  }
  .certificates-page__grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
  .certificates-page__image {
    margin-bottom: 12px;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(17, 17, 17, 0.08);
  }
  .certificates-page__image img {
    aspect-ratio: auto;
    max-height: none;
  }
  .certificates-page__caption {
    font-size: 13px;
    line-height: 140%;
    color: #070707;
  }
}

.gallery-page {
  padding: 50px 0 90px;
  background: #fff;
  font-family: "Tilda", sans-serif;
}
.gallery-page__container {
  padding: 0 46px;
}
.gallery-page__title {
  margin: 0 0 40px;
  font-weight: 700;
  font-size: 30px;
  line-height: 110%;
  text-transform: uppercase;
  color: #111;
}
.gallery-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.gallery-page__item {
  display: block;
  aspect-ratio: 3/4;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  background: #f8f9fb;
}
.gallery-page__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.gallery-page__item:hover img {
  transform: scale(1.03);
}
@media (max-width: 1023px) {
  .gallery-page {
    padding: 40px 0 70px;
  }
  .gallery-page__container {
    padding: 0 24px;
  }
  .gallery-page__title {
    margin-bottom: 32px;
    font-size: 28px;
  }
  .gallery-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .gallery-page {
    padding: 20px 0 40px;
  }
  .gallery-page__container {
    padding: 0 16px;
  }
  .gallery-page__title {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 110%;
  }
  .gallery-page__grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .gallery-page__item {
    width: 100%;
    aspect-ratio: 343/430;
    border-radius: 10px;
  }
}

.guarantees {
  padding: 50px 0 80px;
  background: #fff;
  font-family: "Tilda", sans-serif;
}
.guarantees__container {
  padding: 0 46px;
}
.guarantees__title {
  margin: 0 0 57px;
  font-weight: 600;
  font-size: 32px;
  line-height: 97%;
  text-transform: uppercase;
  color: #000;
}
.guarantees__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.guarantees__card {
  display: flex;
  flex-direction: column;
  padding: 40px 31px 40px 25px;
  border-radius: 8px;
  background: #f8f9fb;
}
.guarantees__card-title {
  margin: 0 0 50px;
  font-weight: 600;
  font-size: 28px;
  line-height: 97%;
  text-transform: uppercase;
  color: #000;
}
.guarantees__list {
  padding: 0;
  font-size: 16px;
  letter-spacing: 0%;
  color: #3B4256;
}
.guarantees__list li:last-child {
  margin-bottom: 0;
}
.guarantees__list a {
  color: #e8a915;
  text-decoration: none;
}
.guarantees__list a:hover {
  text-decoration: underline;
}
.guarantees__list--bullets {
  list-style: none;
}
.guarantees__list--bullets li {
  position: relative;
  padding-left: 33px;
  margin-bottom: 20px;
}
.guarantees__list--bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(0.5em - 6.5px);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #e8a915;
}
.guarantees__list--numbers {
  list-style: none;
  counter-reset: guarantees-counter;
}
.guarantees__list--numbers li {
  position: relative;
  padding-left: 52px;
  margin-bottom: 50px;
  counter-increment: guarantees-counter;
}
.guarantees__list--numbers li::before {
  content: counter(guarantees-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  font-weight: 600;
  font-size: 28px;
  line-height: 97%;
  color: #111;
}
.guarantees__note {
  margin-top: auto;
  padding-top: 28px;
  font-size: 13px;
  color: #6F7482;
}
.guarantees__note--bottom {
  margin-top: 15px;
  padding-top: 0;
  padding-left: 52px;
  font-size: 15px;
  color: #3B4256;
}
@media (max-width: 1023px) {
  .guarantees__container {
    padding: 0 24px;
  }
  .guarantees__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .guarantees__card {
    min-height: 0;
  }
}
@media (max-width: 768px) {
  .guarantees {
    padding: 20px 0 40px;
  }
  .guarantees__container {
    padding: 0 16px;
  }
  .guarantees__title {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 110%;
  }
  .guarantees__grid {
    gap: 12px;
  }
  .guarantees__card {
    padding: 25px 10px;
    border-radius: 10px;
  }
  .guarantees__card-title {
    margin-bottom: 40px;
    font-size: 20px;
  }
  .guarantees__list {
    font-size: 14px;
    line-height: 140%;
  }
  .guarantees__list li:last-child {
    margin-bottom: 0;
  }
  .guarantees__list--bullets li {
    padding-left: 33px;
    margin-bottom: 20px;
  }
  .guarantees__list--bullets li::before {
    top: 50%;
    transform: translateY(-50%);
    background: #ffd000;
  }
  .guarantees__list--numbers li {
    padding-left: 52px;
    margin-bottom: 50px;
  }
  .guarantees__list a {
    color: #ffd000;
    font-weight: 500;
  }
  .guarantees__note {
    padding-top: 55px;
    font-size: 13px;
    letter-spacing: 0%;
    color: #6F7482;
  }
  .guarantees__note--bottom {
    margin-top: 15px;
    padding-top: 0;
    padding-left: 52px;
    font-size: 14px;
    line-height: 140%;
    color: #3B4256;
  }
}

.privacy {
  padding: 50px 0 80px;
  background: #fff;
  font-family: "Tilda", sans-serif;
}
.privacy__container {
  padding: 0 46px;
}
.privacy__header {
  margin-bottom: 40px;
  max-width: 920px;
}
.privacy__title {
  margin: 0 0 16px;
  font-weight: 600;
  font-size: 32px;
  line-height: 110%;
  text-transform: uppercase;
  color: #111;
}
.privacy__intro {
  margin: 0;
  font-size: 15px;
  line-height: 150%;
  color: #4f5660;
}
.privacy__intro a {
  color: #e8a915;
  text-decoration: none;
}
.privacy__intro a:hover {
  text-decoration: underline;
}
.privacy__layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.privacy__layout--single {
  grid-template-columns: minmax(0, 1fr);
}
.privacy__nav {
  position: sticky;
  top: 24px;
  padding: 24px 20px;
  border-radius: 8px;
  background: #f8f9fb;
}
.privacy__nav-title {
  margin: 0 0 16px;
  font-weight: 600;
  font-size: 13px;
  line-height: 120%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8b929a;
}
.privacy__nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: privacy-nav;
}
.privacy__nav-list li {
  margin-bottom: 10px;
}
.privacy__nav-list li:last-child {
  margin-bottom: 0;
}
.privacy__nav-list a {
  display: block;
  font-size: 14px;
  line-height: 140%;
  color: #3b4256;
  text-decoration: none;
  transition: color 0.2s ease;
}
.privacy__nav-list a:hover {
  color: #e8a915;
}
.privacy__content {
  min-width: 0;
}
.privacy__document {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.privacy__section {
  padding: 32px 34px;
  border-radius: 8px;
  background: #f8f9fb;
}
.privacy__section-title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 24px;
  font-weight: 600;
  font-size: 22px;
  line-height: 120%;
  text-transform: uppercase;
  color: #111;
}
.privacy__section-title span {
  flex-shrink: 0;
  min-width: 36px;
  padding: 4px 0;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  color: #111;
  background: #ffda01;
  border-radius: 4px;
}
.privacy__section-body {
  font-size: 15px;
  line-height: 155%;
  color: #3b4256;
}
.privacy__section-body p {
  margin: 0 0 16px;
}
.privacy__section-body p:last-child {
  margin-bottom: 0;
}
.privacy__section-body a {
  color: #e8a915;
  text-decoration: none;
}
.privacy__section-body a:hover {
  text-decoration: underline;
}
.privacy__lead {
  padding: 16px 18px;
  border-left: 3px solid #ffda01;
  background: rgba(255, 218, 1, 0.12);
  border-radius: 0 6px 6px 0;
}
.privacy__list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.privacy__list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 22px;
}
.privacy__list li:last-child {
  margin-bottom: 0;
}
.privacy__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e8a915;
}
.privacy__list--ordered {
  counter-reset: privacy-item;
}
.privacy__list--ordered li {
  padding-left: 28px;
  counter-increment: privacy-item;
}
.privacy__list--ordered li::before {
  content: counter(privacy-item) ".";
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  font-weight: 600;
  color: #111;
}
.privacy__definitions {
  margin: 0;
}
.privacy__definition {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(59, 66, 86, 0.08);
}
.privacy__definition:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.privacy__definition dt {
  margin: 0;
  font-weight: 600;
  color: #111;
}
.privacy__definition dd {
  margin: 0;
}
.privacy__table-wrap {
  overflow-x: auto;
}
.privacy__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.privacy__table th,
.privacy__table td {
  padding: 18px 20px;
  border: 1px solid rgba(59, 66, 86, 0.1);
  vertical-align: top;
  text-align: left;
}
.privacy__table th {
  width: 34%;
  font-weight: 600;
  color: #111;
  background: rgba(255, 218, 1, 0.18);
}
.privacy__table-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.privacy__table-list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 16px;
}
.privacy__table-list li:last-child {
  margin-bottom: 0;
}
.privacy__table-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e8a915;
}
@media (max-width: 1023px) {
  .privacy__container {
    padding: 0 24px;
  }
  .privacy__layout {
    grid-template-columns: 1fr;
  }
  .privacy__nav {
    position: static;
  }
}
@media (max-width: 768px) {
  .privacy {
    padding: 24px 0 40px;
  }
  .privacy__container {
    padding: 0 16px;
  }
  .privacy__header {
    margin-bottom: 24px;
  }
  .privacy__title {
    font-size: 22px;
  }
  .privacy__intro {
    font-size: 14px;
  }
  .privacy__nav {
    padding: 18px 16px;
  }
  .privacy__section {
    padding: 22px 18px;
  }
  .privacy__section-title {
    margin-bottom: 18px;
    font-size: 18px;
  }
  .privacy__section-title span {
    min-width: 32px;
    font-size: 16px;
  }
  .privacy__section-body {
    font-size: 14px;
  }
  .privacy__definition {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .privacy__table th,
  .privacy__table td {
    display: block;
    width: 100%;
    padding: 14px 16px;
  }
  .privacy__table th {
    border-bottom: none;
  }
}

.about {
  padding: 50px 0 0;
  background: #fff;
  font-family: "Tilda", sans-serif;
}
.about__container {
  padding: 0 46px;
}
.about__intro-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 40px;
}
.about__title {
  margin: 0;
  grid-column: 1;
  font-weight: 700;
  font-size: 30px;
  line-height: 97%;
  text-transform: uppercase;
  color: #000;
}
.about__intro-text {
  margin: 0;
  grid-column: 2;
  font-size: 15px;
  line-height: 140%;
  color: #4f5660;
  max-width: none;
}
.about__intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 50px;
}
.about__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-self: start;
  align-content: start;
  align-items: stretch;
}
.about__feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  gap: 40px;
  padding: 20px 15px;
  border-radius: 8px;
  background: #f8f9fb;
}
.about__feature-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #fff;
}
.about__feature-icon svg {
  display: block;
  flex-shrink: 0;
}
.about__feature-title {
  margin: auto 0 0;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0%;
  color: #3b4256;
  max-width: 229px;
}
.about__intro-image {
  display: block;
  align-self: stretch;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fb;
}
.about__intro-image-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}
.about__values {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 20px;
}
.about__values-image {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fb;
}
.about__values-image-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.about__values-text p {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 140%;
  color: #4f5660;
}
.about__values-text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .about__container {
    padding: 0 24px;
  }
  .about__intro-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }
  .about__title, .about__intro-text {
    grid-column: 1;
  }
  .about__intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .about__features {
    grid-template-columns: 1fr;
  }
  .about__intro-image-img, .about__values-image-img {
    min-height: 0;
    height: auto;
    aspect-ratio: 343/220;
  }
  .about__values {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 20px 0 0;
  }
  .about__container {
    padding: 0 16px;
  }
  .about__intro-head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }
  .about__title, .about__intro-text {
    grid-column: 1;
  }
  .about__title {
    font-size: 22px;
    line-height: 110%;
  }
  .about__intro-text {
    font-size: 14px;
    line-height: 140%;
    color: #4f5660;
  }
  .about__intro-grid {
    gap: 16px;
    margin-bottom: 24px;
  }
  .about__features {
    gap: 12px;
  }
  .about__feature {
    height: 178px;
    padding: 18px 16px;
    border-radius: 10px;
    gap: 14px;
    overflow: hidden;
  }
  .about__feature-icon {
    width: 32px;
    height: 32px;
  }
  .about__intro-image, .about__values-image {
    border-radius: 10px;
  }
  .about__intro-image-img, .about__values-image-img {
    min-height: 0;
    height: auto;
    aspect-ratio: 343/200;
  }
  .about__values {
    gap: 24px;
    margin-bottom: 0;
  }
  .about__values-text p {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 140%;
  }
  .about ~ .advantages {
    padding: 30px 0 24px;
  }
  .about ~ .advantages .advantages__image {
    margin-top: 4px;
  }
  .about ~ .faq {
    padding: 24px 0 40px;
  }
  .about ~ .faq .faq__item {
    background: #fff;
    box-shadow: 0 2px 8px rgba(152, 160, 180, 0.12);
  }
  .about ~ .faq .faq__question {
    min-height: 56px;
    padding: 12px 16px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 130%;
  }
}
@media (min-width: 2000px) {
  .about {
    padding-top: calc(64px + (100vw - 2000px) * 0.012);
  }
  .about__container {
    max-width: none;
    width: 100%;
  }
  .about__intro-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(48px + (100vw - 2000px) * 0.025);
    margin-bottom: calc(56px + (100vw - 2000px) * 0.014);
  }
  .about__title {
    grid-column: 1;
    font-size: calc(52px + (100vw - 2000px) * 0.022);
    line-height: 97%;
  }
  .about__intro-text {
    grid-column: 1;
    max-width: none;
    font-size: calc(22px + (100vw - 2000px) * 0.013);
    line-height: 150%;
  }
  .about__intro-grid {
    display: flex;
    flex-direction: column;
    gap: calc(32px + (100vw - 2000px) * 0.012);
    margin-bottom: calc(72px + (100vw - 2000px) * 0.016);
  }
  .about__features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: calc(20px + (100vw - 2000px) * 0.008);
    width: 100%;
  }
  .about__feature {
    min-height: calc(168px + (100vw - 2000px) * 0.045);
    padding: calc(28px + (100vw - 2000px) * 0.008) calc(24px + (100vw - 2000px) * 0.006);
    gap: calc(36px + (100vw - 2000px) * 0.014);
    border-radius: calc(10px + (100vw - 2000px) * 0.002);
  }
  .about__feature-icon {
    width: calc(48px + (100vw - 2000px) * 0.012);
    height: calc(48px + (100vw - 2000px) * 0.012);
    border-radius: calc(8px + (100vw - 2000px) * 0.001);
  }
  .about__feature-icon svg {
    width: calc(26px + (100vw - 2000px) * 0.006);
    height: calc(26px + (100vw - 2000px) * 0.006);
  }
  .about__feature-title {
    max-width: none;
    font-size: calc(18px + (100vw - 2000px) * 0.009);
    line-height: 130%;
  }
  .about__intro-image {
    width: 100%;
    align-self: auto;
    border-radius: calc(10px + (100vw - 2000px) * 0.002);
  }
  .about__intro-image-img {
    width: 100%;
    min-height: calc(420px + (100vw - 2000px) * 0.1);
    max-height: calc(620px + (100vw - 2000px) * 0.06);
    height: auto;
    object-fit: cover;
  }
  .about__values {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: calc(48px + (100vw - 2000px) * 0.022);
    align-items: stretch;
    margin-bottom: calc(48px + (100vw - 2000px) * 0.012);
  }
  .about__values-image {
    border-radius: calc(10px + (100vw - 2000px) * 0.002);
  }
  .about__values-image-img {
    width: 100%;
    height: 100%;
    min-height: calc(420px + (100vw - 2000px) * 0.1);
    object-fit: cover;
  }
  .about__values-text p {
    font-size: calc(22px + (100vw - 2000px) * 0.013);
    line-height: 150%;
    margin-bottom: calc(28px + (100vw - 2000px) * 0.008);
  }
}

@media (min-width: 2000px) {
  .about ~ .advantages {
    padding-top: calc(80px + (100vw - 2000px) * 0.014);
    padding-bottom: calc(88px + (100vw - 2000px) * 0.014);
  }
  .about ~ .advantages .container {
    max-width: none;
    width: 100%;
  }
  .about ~ .advantages .advantages__title {
    margin-bottom: calc(56px + (100vw - 2000px) * 0.012);
    font-size: calc(48px + (100vw - 2000px) * 0.018);
    line-height: 97%;
  }
  .about ~ .advantages .advantages__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-template-rows: 1fr;
    gap: calc(20px + (100vw - 2000px) * 0.008);
    align-items: stretch;
  }
  .about ~ .advantages .advantages__card,
  .about ~ .advantages .advantages__card--wide {
    grid-column: span 1 !important;
    grid-row: 1;
    justify-content: flex-start;
    min-height: calc(280px + (100vw - 2000px) * 0.055);
    padding: calc(88px + (100vw - 2000px) * 0.018) calc(28px + (100vw - 2000px) * 0.008) calc(36px + (100vw - 2000px) * 0.008);
    border-radius: calc(10px + (100vw - 2000px) * 0.002);
  }
  .about ~ .advantages .advantages__card-title {
    max-width: none;
    margin: 0 0 calc(16px + (100vw - 2000px) * 0.004);
    font-size: calc(24px + (100vw - 2000px) * 0.008);
    line-height: 120%;
  }
  .about ~ .advantages .advantages__card-text {
    max-width: none;
    margin: 0;
    font-size: calc(18px + (100vw - 2000px) * 0.007);
    line-height: 135%;
  }
  .about ~ .advantages .advantages__icon {
    top: calc(24px + (100vw - 2000px) * 0.006);
    right: calc(24px + (100vw - 2000px) * 0.006);
    width: calc(56px + (100vw - 2000px) * 0.012);
    height: calc(56px + (100vw - 2000px) * 0.012);
  }
  .about ~ .advantages .advantages__icon img,
  .about ~ .advantages .advantages__icon svg {
    width: calc(28px + (100vw - 2000px) * 0.006);
    height: calc(28px + (100vw - 2000px) * 0.006);
  }
  .about ~ .advantages .advantages__image {
    grid-column: span 1 !important;
    grid-row: 1;
    align-self: stretch;
    min-height: 0;
    border-radius: calc(10px + (100vw - 2000px) * 0.002);
  }
  .about ~ .advantages .advantages__image-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: cover;
  }
  .about ~ .faq {
    padding-top: calc(88px + (100vw - 2000px) * 0.014);
    padding-bottom: calc(88px + (100vw - 2000px) * 0.014);
  }
  .about ~ .faq .container {
    max-width: none;
    width: 100%;
    padding-left: calc(46px + (100vw - 2000px) * 0.02);
    padding-right: calc(46px + (100vw - 2000px) * 0.02);
  }
  .about ~ .faq .faq__content {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: calc(72px + (100vw - 2000px) * 0.025);
    align-items: start;
  }
  .about ~ .faq .faq__title,
  .about ~ .faq .faq__form-title {
    font-size: calc(48px + (100vw - 2000px) * 0.018);
    line-height: 110%;
  }
  .about ~ .faq .faq__list {
    margin-top: calc(42px + (100vw - 2000px) * 0.008);
    gap: calc(10px + (100vw - 2000px) * 0.003);
  }
  .about ~ .faq .faq__item {
    border-radius: calc(10px + (100vw - 2000px) * 0.002);
  }
  .about ~ .faq .faq__item.is-active .faq__answer {
    max-height: calc(400px + (100vw - 2000px) * 0.08);
    padding: 0 calc(32px + (100vw - 2000px) * 0.008) calc(22px + (100vw - 2000px) * 0.006);
  }
  .about ~ .faq .faq__question {
    min-height: calc(80px + (100vw - 2000px) * 0.012);
    padding: 0 calc(28px + (100vw - 2000px) * 0.006) 0 calc(36px + (100vw - 2000px) * 0.008);
    gap: calc(20px + (100vw - 2000px) * 0.006);
    font-size: calc(20px + (100vw - 2000px) * 0.006);
  }
  .about ~ .faq .faq__plus {
    flex: 0 0 calc(23px + (100vw - 2000px) * 0.006);
    width: calc(23px + (100vw - 2000px) * 0.006);
    height: calc(23px + (100vw - 2000px) * 0.006);
  }
  .about ~ .faq .faq__plus::before {
    width: calc(23px + (100vw - 2000px) * 0.006);
    height: calc(2px + (100vw - 2000px) * 0.0005);
  }
  .about ~ .faq .faq__plus::after {
    width: calc(2px + (100vw - 2000px) * 0.0005);
    height: calc(23px + (100vw - 2000px) * 0.006);
  }
  .about ~ .faq .faq__answer {
    padding-left: calc(32px + (100vw - 2000px) * 0.008);
    padding-right: calc(32px + (100vw - 2000px) * 0.008);
    font-size: calc(18px + (100vw - 2000px) * 0.005);
    line-height: 140%;
  }
  .about ~ .faq .faq__form-inner {
    margin-top: calc(39px + (100vw - 2000px) * 0.008);
  }
  .about ~ .faq .vektor-form__field {
    margin-bottom: calc(16px + (100vw - 2000px) * 0.004);
  }
  .about ~ .faq .vektor-form__label {
    margin-bottom: calc(8px + (100vw - 2000px) * 0.002);
    font-size: calc(18px + (100vw - 2000px) * 0.005);
  }
  .about ~ .faq .vektor-form__input,
  .about ~ .faq .iti {
    height: calc(52px + (100vw - 2000px) * 0.01) !important;
    max-height: calc(52px + (100vw - 2000px) * 0.01) !important;
    border-radius: calc(4px + (100vw - 2000px) * 0.001);
  }
  .about ~ .faq .vektor-form__input,
  .about ~ .faq .iti__tel-input,
  .about ~ .faq .phone-input {
    font-size: calc(18px + (100vw - 2000px) * 0.005) !important;
    line-height: calc(52px + (100vw - 2000px) * 0.01) !important;
  }
  .about ~ .faq .iti__selected-dial-code {
    font-size: calc(18px + (100vw - 2000px) * 0.005);
  }
  .about ~ .faq .vektor-form__submit {
    margin-top: calc(17px + (100vw - 2000px) * 0.004);
    height: calc(58px + (100vw - 2000px) * 0.012);
    font-size: calc(18px + (100vw - 2000px) * 0.005);
    border-radius: calc(25px + (100vw - 2000px) * 0.004);
  }
  .about ~ .faq .vektor-form__submit-arrow {
    top: calc(4px + (100vw - 2000px) * 0.001);
  }
  .about ~ .faq .vektor-form__submit-arrow svg {
    width: calc(23px + (100vw - 2000px) * 0.005);
    height: calc(23px + (100vw - 2000px) * 0.005);
  }
  .about ~ .faq .vektor-form__policy {
    padding-left: calc(28px + (100vw - 2000px) * 0.004);
    font-size: calc(15px + (100vw - 2000px) * 0.003);
  }
}
.vektor-form__submit,
.cart-page__submit,
.catalog__filter-submit {
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
@media (hover: hover) {
  .vektor-form__submit:hover,
  .cart-page__submit:hover,
  .catalog__filter-submit:hover {
    background-color: #ebc700;
  }
}
.vektor-form__submit:active,
.cart-page__submit:active,
.catalog__filter-submit:active {
  background-color: #d9b800;
}

@media (hover: hover) {
  .product-banner__button:hover {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
  }
}

@media (hover: hover) {
  .product-banner__button-2:hover {
    background-color: rgba(255, 218, 0, 0.14) !important;
    border-color: var(--primary-hover) !important;
    color: var(--base-black-bg) !important;
  }
}

.product-card__button {
  transition: background-color 0.2s ease;
}
@media (hover: hover) {
  .product-card__button:hover {
    background-color: #ebc700;
  }
}

.product-card__title {
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .product-card__title:hover {
    color: #d89f00;
  }
}

@media (hover: hover) {
  .product-card__image:hover img {
    opacity: 0.92;
  }
}
.product-card__image img {
  transition: opacity 0.2s ease;
}

.product-card__quick,
.catalog__show-more {
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .product-card__quick:hover,
  .catalog__show-more:hover {
    color: #e5ad24;
  }
}

.catalog__sort-button {
  transition: background-color 0.2s ease;
}
@media (hover: hover) {
  .catalog__sort-button:hover {
    background-color: #eef1f5;
  }
}

.catalog__filter-toggle,
.catalog__filter-close {
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

@media (hover: hover) {
  .catalog__filter-toggle:hover {
    opacity: 0.85;
  }
}

.categories__card-button {
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
@media (hover: hover) {
  .categories__card-button:nth-child(1):hover {
    background-color: var(--primary-hover) !important;
  }
}
@media (hover: hover) {
  .categories__card-button:nth-child(2):hover {
    background-color: rgba(255, 218, 0, 0.1);
    border-color: var(--primary-hover) !important;
  }
}

.gallery-page__item img {
  transition: transform 0.2s ease, opacity 0.2s ease;
}
@media (hover: hover) {
  .gallery-page__item:hover img {
    opacity: 0.92;
    transform: scale(1.02);
  }
}

.certificates-page__image img {
  transition: transform 0.2s ease, opacity 0.2s ease;
}
@media (hover: hover) {
  .certificates-page__image:hover img {
    opacity: 0.92;
    transform: scale(1.02);
  }
}

.header__logo {
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .header__logo:hover {
    opacity: 0.82;
  }
}
@media (hover: hover) {
  .header__catalog:hover, .header__cart:hover, .header__catalog:hover, .header__cart:hover {
    color: #e5ad24;
  }
}
@media (hover: hover) {
  .header__phone-number:hover, .header__phone-email:hover, .header__mobile-phone-email:hover {
    color: #e5ad24;
  }
}
@media (hover: hover) {
  .header__mobile-phone:hover {
    opacity: 0.88;
  }
}
@media (hover: hover) {
  .header__burger:hover {
    opacity: 0.7;
  }
}

.footer__link, .footer__phone, .footer__policy {
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .footer__link:hover, .footer__phone:hover, .footer__policy:hover {
    color: #e5ad24;
  }
}
.footer__info-item a, .footer__phone {
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .footer__info-item a:hover, .footer__phone:hover {
    color: #e5ad24;
  }
}
.footer__social {
  transition: background-color 0.2s ease, transform 0.2s ease;
}
@media (hover: hover) {
  .footer__social:hover {
    background-color: #d4961a;
    transform: translateY(-1px);
  }
}

.hero__link, .hero__constructor {
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .hero__link:hover, .hero__constructor:hover {
    opacity: 0.88;
  }
}
.hero__link-icon, .hero__constructor-icon {
  transition: background-color 0.2s ease, transform 0.2s ease;
}
@media (hover: hover) {
  .hero__link:hover .hero__link-icon {
    background-color: #ebc700;
    transform: scale(1.04);
  }
}
@media (hover: hover) {
  .hero__constructor:hover .hero__constructor-icon {
    background-color: #ebc700;
    transform: scale(1.04);
  }
}
@media (hover: hover) {
  .hero__pagination-item:hover:not(.is-active) {
    background: rgba(255, 255, 255, 0.9);
  }
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 16px 0;
  font-family: var(--TildaSans);
  font-size: 13px;
}
.breadcrumbs__link {
  color: #6f7482;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
@media (hover: hover) {
  .breadcrumbs__link:hover {
    color: #d89f00;
  }
}
.breadcrumbs__sep {
  color: #b1b1b1;
}
.breadcrumbs__link--current {
  cursor: default;
  pointer-events: none;
}
.breadcrumbs img {
  display: block;
  width: 16px;
  height: 16px;
}
@media (min-width: 2000px) {
  .breadcrumbs {
    gap: calc(6px + (100vw - 2000px) * 0.003);
    padding: calc(16px + (100vw - 2000px) * 0.006) 0;
    font-size: calc(13px + (100vw - 2000px) * 0.005);
  }
  .breadcrumbs img {
    width: calc(16px + (100vw - 2000px) * 0.005);
    height: calc(16px + (100vw - 2000px) * 0.005);
  }
}

@media (min-width: 2000px) {
  .container:has(> .breadcrumbs) {
    max-width: none;
    width: 100%;
    padding-left: calc(46px + (100vw - 2000px) * 0.02);
    padding-right: calc(46px + (100vw - 2000px) * 0.02);
  }
}
.product-banner__loyalty a {
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .product-banner__loyalty a:hover {
    color: #d89f00;
  }
}

.footer {
  padding: 50px 0 40px;
  background: #fff;
}
.footer__container {
  padding: 0 46px;
}
.footer__top {
  display: grid;
  grid-template-columns: 160px 1fr 1fr 1fr;
  gap: 60px;
}
.footer__logo {
  display: block;
  width: 150px;
}
.footer__logo-img {
  width: 100%;
}
.footer__title {
  margin: 0 0 20px;
  font-family: "Tilda";
  font-weight: 700;
  font-size: 18px;
  color: #111;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__link {
  font-family: "Tilda";
  font-size: 15px;
  color: #111;
  text-decoration: none;
}
.footer__right {
  justify-self: end;
  max-width: 420px;
}
.footer__phone {
  display: block;
  margin-bottom: 20px;
  font-family: "Tilda";
  font-weight: 700;
  font-size: 20px;
  color: #111;
  text-decoration: none;
}
.footer__socials {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}
.footer__social {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: #E5AD24;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__social img {
  width: 26px;
  height: 26px;
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__info-item {
  font-family: "Tilda";
  font-size: 16px;
  color: #111;
}
.footer__info-item span {
  font-weight: 700;
  margin-right: 5px;
}
.footer__info-item a,
.footer__info-item p {
  display: inline;
  font-weight: 700;
  margin: 0;
  color: #111;
  text-decoration: none;
}
.footer__bottom {
  margin-top: 90px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 80px;
  align-items: center;
}
.footer__copy {
  font-family: "Tilda";
  font-size: 14px;
  color: #b7b7b7;
}
.footer__policy {
  font-family: "Tilda";
  font-size: 14px;
  color: #b7b7b7;
  text-decoration: none;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer {
    padding: 38px 0 32px;
  }
  .footer__top {
    grid-template-columns: 132px 1fr 1fr 1fr;
    gap: 36px;
  }
  .footer__logo {
    width: 120px;
  }
  .footer__title {
    margin-bottom: 14px;
    font-size: 16px;
  }
  .footer__list {
    gap: 12px;
  }
  .footer__link {
    font-size: 14px;
  }
  .footer__right {
    max-width: 340px;
  }
  .footer__phone {
    margin-bottom: 14px;
    font-size: 17px;
  }
  .footer__socials {
    gap: 10px;
    margin-bottom: 28px;
  }
  .footer__social {
    width: 48px;
    height: 48px;
  }
  .footer__social img,
  .footer__social svg {
    width: 22px;
    height: 22px;
  }
  .footer__info {
    gap: 12px;
  }
  .footer__info-item {
    font-size: 14px;
  }
  .footer__bottom {
    margin-top: 56px;
    gap: 48px;
  }
  .footer__copy, .footer__policy {
    font-size: 13px;
  }
}
@media (min-width: 2000px) {
  .footer {
    padding: calc(50px + (100vw - 2000px) * 0.012) 0 calc(40px + (100vw - 2000px) * 0.01);
  }
  .footer__container {
    max-width: none;
    width: 100%;
    padding-left: calc(46px + (100vw - 2000px) * 0.02);
    padding-right: calc(46px + (100vw - 2000px) * 0.02);
  }
  .footer__top {
    grid-template-columns: calc(160px + (100vw - 2000px) * 0.04) 1fr 1fr 1fr;
    gap: calc(60px + (100vw - 2000px) * 0.022);
  }
  .footer__logo {
    width: calc(150px + (100vw - 2000px) * 0.038);
  }
  .footer__title {
    margin-bottom: calc(20px + (100vw - 2000px) * 0.006);
    font-size: calc(18px + (100vw - 2000px) * 0.006);
  }
  .footer__list {
    gap: calc(14px + (100vw - 2000px) * 0.004);
  }
  .footer__link {
    font-size: calc(15px + (100vw - 2000px) * 0.005);
  }
  .footer__right {
    max-width: none;
  }
  .footer__phone {
    margin-bottom: calc(20px + (100vw - 2000px) * 0.006);
    font-size: calc(20px + (100vw - 2000px) * 0.008);
  }
  .footer__socials {
    gap: calc(12px + (100vw - 2000px) * 0.004);
    margin-bottom: calc(40px + (100vw - 2000px) * 0.012);
  }
  .footer__social {
    width: calc(56px + (100vw - 2000px) * 0.012);
    height: calc(56px + (100vw - 2000px) * 0.012);
    border-radius: calc(10px + (100vw - 2000px) * 0.002);
  }
  .footer__social img {
    width: calc(26px + (100vw - 2000px) * 0.006);
    height: calc(26px + (100vw - 2000px) * 0.006);
  }
  .footer__social svg {
    width: calc(26px + (100vw - 2000px) * 0.006);
    height: calc(26px + (100vw - 2000px) * 0.006);
  }
  .footer__info {
    gap: calc(14px + (100vw - 2000px) * 0.004);
  }
  .footer__info-item {
    font-size: calc(16px + (100vw - 2000px) * 0.005);
  }
  .footer__bottom {
    margin-top: calc(90px + (100vw - 2000px) * 0.015);
    gap: calc(80px + (100vw - 2000px) * 0.025);
  }
  .footer__copy, .footer__policy {
    font-size: calc(14px + (100vw - 2000px) * 0.004);
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 30px 0 20px;
  }
  .footer__container {
    padding: 0 15px;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer__logo {
    width: 100px;
  }
  .footer__title {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .footer__list {
    gap: 10px;
  }
  .footer__link {
    font-size: 13px;
  }
  .footer__right {
    justify-self: start;
    max-width: 100%;
  }
  .footer__phone {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .footer__socials {
    gap: 10px;
    margin-bottom: 20px;
  }
  .footer__social {
    width: 44px;
    height: 44px;
  }
  .footer__social svg {
    width: 20px;
    height: 20px;
  }
  .footer__info-item {
    font-size: 13px;
  }
  .footer__bottom {
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .footer__copy {
    font-size: 11px;
  }
  .footer__policy {
    font-size: 11px;
  }
}
