.cavok-fixed-cover {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.cavok-fixed-cover .t-cover__carrier {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.cavok-gallery-record {
  padding: 0 16px 90px;
}

.cavok-gallery {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0;
  --slide-width: min(860px, 62vw);
  --slide-gap: clamp(48px, 6.15vw, 118px);
  --button-size: 46px;
}

.cavok-gallery__viewport {
  overflow: hidden;
}

.cavok-gallery__track {
  display: flex;
  align-items: center;
  gap: var(--slide-gap);
  padding-inline: max(0px, calc((100% - var(--slide-width)) / 2));
  transition: transform 280ms ease;
  will-change: transform;
}

.cavok-gallery__slide {
  flex: 0 0 var(--slide-width);
  margin: 0;
  opacity: 0.24;
  transition: opacity 280ms ease;
}

.cavok-gallery.is-normalizing .cavok-gallery__slide {
  transition: none;
}

.cavok-gallery__slide.is-active {
  opacity: 1;
}

.cavok-gallery__slide img {
  display: block;
  width: 100%;
  aspect-ratio: 860 / 550;
  height: auto;
  min-height: 280px;
  object-fit: cover;
}

.cavok-gallery__button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: var(--button-size);
  height: var(--button-size);
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(232, 232, 232, 1);
  color: #111;
  font-size: 0;
  transform: translateY(-50%);
  cursor: pointer;
}

.cavok-gallery__button::before {
  content: "";
  display: block;
  width: 10px;
  height: 18px;
  background-color: currentColor;
  mask: var(--arrow-icon) center / contain no-repeat;
  -webkit-mask: var(--arrow-icon) center / contain no-repeat;
}

.cavok-gallery__button[data-dir="-1"] {
  --arrow-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline fill='none' stroke='black' stroke-width='1.4' stroke-linecap='butt' stroke-linejoin='butt' points='8.8,1 1.2,9 8.8,17'/%3E%3C/svg%3E");
}

.cavok-gallery__button[data-dir="-1"]::before {
  transform: translateX(-1px);
}

.cavok-gallery__button[data-dir="1"] {
  --arrow-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline fill='none' stroke='black' stroke-width='1.4' stroke-linecap='butt' stroke-linejoin='butt' points='1.2,1 8.8,9 1.2,17'/%3E%3C/svg%3E");
}

.cavok-gallery__button[data-dir="1"]::before {
  transform: translateX(1px);
}

.cavok-gallery__button[data-dir="-1"] {
  left: calc(50% - var(--slide-width) / 2 - var(--slide-gap) / 2 - var(--button-size) / 2);
}

.cavok-gallery__button[data-dir="1"] {
  right: calc(50% - var(--slide-width) / 2 - var(--slide-gap) / 2 - var(--button-size) / 2);
}

.cavok-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.cavok-gallery__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c7c7c7;
  cursor: pointer;
}

.cavok-gallery__dot[aria-current="true"] {
  background: #222;
}

.cavok-home-catalog {
  padding: 70px 16px 140px;
}

.cavok-home-catalog__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cavok-home-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 80px;
}

.cavok-product-card {
  min-width: 0;
  color: #000;
  font-family: Osnovnoy, Arial, sans-serif;
  text-align: center;
}

.cavok-product-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 10 / 11;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.cavok-product-card__img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 90ms linear;
}

.cavok-product-card__img.is-active {
  z-index: 2;
  opacity: 1;
}

.cavok-product-card__dots {
  display: none;
}

.cavok-product-card__title {
  display: block;
  margin: 22px auto 0;
  color: #000 !important;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
  text-decoration: none !important;
}

.cavok-product-card__description {
  max-width: 320px;
  margin: 14px auto 0;
  color: #9a9a9a;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
}

.cavok-product-card__price {
  margin-top: 34px;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .cavok-gallery {
    --slide-width: min(760px, 78vw);
    --slide-gap: 32px;
    --button-size: 40px;
  }

  .cavok-gallery__track {
    padding-inline: max(0px, calc((100% - var(--slide-width)) / 2));
  }

  .cavok-home-catalog__grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .cavok-product-card__media {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .cavok-gallery {
    --slide-width: 82vw;
    --slide-gap: 20px;
    --button-size: 34px;
  }

  .cavok-gallery__button {
    width: 34px;
    height: 34px;
  }

  .cavok-gallery__button::before {
    width: 9px;
    height: 9px;
  }
}
