@charset "UTF-8";
/* line 1, ../sass/shop-post/shop-post-top.scss */
.shop-post-top {
  padding-top: 56px;
}

/* line 5, ../sass/shop-post/shop-post-top.scss */
.shopSwiper {
  width: 100%;
}

/* line 9, ../sass/shop-post/shop-post-top.scss */
.shopSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
  /* важно для "бегущей строки" */
}

/* line 13, ../sass/shop-post/shop-post-top.scss */
.shopSwiper .swiper-slide {
  width: auto;
  /* чтобы было как лента */
  flex-shrink: 0;
  width: 28vw;
  height: 36vw;
}

/* line 20, ../sass/shop-post/shop-post-top.scss */
.shopSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* курсор grab */
/* line 28, ../sass/shop-post/shop-post-top.scss */
.shopSwiper {
  cursor: grab;
}

/* line 32, ../sass/shop-post/shop-post-top.scss */
.shopSwiper:active {
  cursor: grabbing;
}

/* line 38, ../sass/shop-post/shop-post-top.scss */
.shop-post-top-info {
  padding: 8px 10px 8px 35px;
}
/* line 41, ../sass/shop-post/shop-post-top.scss */
.shop-post-top-info .title {
  font-size: 32px;
  display: block;
  font-weight: 500;
}

/* line 49, ../sass/shop-post/shop-post-top.scss */
.shop-post-top-info-wr {
  display: flex;
  margin-top: 20px;
  /* цвета */
}
/* line 53, ../sass/shop-post/shop-post-top.scss */
.shop-post-top-info-wr .product-colors, .shop-post-top-info-wr .product-sizes {
  font-size: 16px;
  font-weight: 600;
  padding-top: 11px;
}
/* line 59, ../sass/shop-post/shop-post-top.scss */
.shop-post-top-info-wr .size-switch {
  display: flex;
  gap: 8px;
  /* margin: 0 -6px; */
  margin-top: 11px;
}
/* line 66, ../sass/shop-post/shop-post-top.scss */
.shop-post-top-info-wr .size-item input {
  display: none;
}
/* line 70, ../sass/shop-post/shop-post-top.scss */
.shop-post-top-info-wr .size-item span {
  display: block;
  padding: 6px 18px;
  border: 1px solid rgba(33, 33, 33, 0.25);
  color: rgba(33, 33, 33, 0.65);
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: .2s;
}
/* line 81, ../sass/shop-post/shop-post-top.scss */
.shop-post-top-info-wr .size-item input:checked + span {
  border-color: #000;
  color: #000;
}
/* line 89, ../sass/shop-post/shop-post-top.scss */
.shop-post-top-info-wr .color-switch {
  display: flex;
  gap: 4px;
  margin-top: 10px;
}
/* line 95, ../sass/shop-post/shop-post-top.scss */
.shop-post-top-info-wr .color-item input {
  display: none;
}
/* line 99, ../sass/shop-post/shop-post-top.scss */
.shop-post-top-info-wr .color-item span {
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  transition: .25s;
  cursor: pointer;
}
/* line 108, ../sass/shop-post/shop-post-top.scss */
.shop-post-top-info-wr .color-item input:checked + span {
  width: 50px;
  border-radius: 15px;
}
/* line 113, ../sass/shop-post/shop-post-top.scss */
.shop-post-top-info-wr .products-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
/* line 118, ../sass/shop-post/shop-post-top.scss */
.shop-post-top-info-wr .products-btns .site-btn {
  flex: 1;
}
/* line 123, ../sass/shop-post/shop-post-top.scss */
.shop-post-top-info-wr .col {
  width: 32%;
}
/* line 126, ../sass/shop-post/shop-post-top.scss */
.shop-post-top-info-wr .col:nth-child(2) {
  width: 26%;
}
/* line 130, ../sass/shop-post/shop-post-top.scss */
.shop-post-top-info-wr .col:nth-child(3) {
  width: 42%;
}

/* line 1, ../sass/shop-post/shop-post-line.scss */
.shop-post-line {
  position: relative;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 40px;
  background-color: #EFEFEF;
}
/* line 10, ../sass/shop-post/shop-post-line.scss */
.shop-post-line .col {
  display: flex;
  gap: 16px;
  align-items: center;
}
/* line 15, ../sass/shop-post/shop-post-line.scss */
.shop-post-line .col svg, .shop-post-line .col img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
  min-width: 16px;
}
/* line 23, ../sass/shop-post/shop-post-line.scss */
.shop-post-line .col span {
  font-size: 15px;
  display: block;
}

/* line 1, ../sass/index/index-category.scss */
.i-category {
  position: relative;
}

/* line 5, ../sass/index/index-category.scss */
.i-category-wr {
  position: relative;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
/* line 12, ../sass/index/index-category.scss */
.i-category-wr.grid2 {
  grid-template-columns: repeat(2, 1fr);
}

/* line 17, ../sass/index/index-category.scss */
.i-category-box {
  position: relative;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
}
/* line 23, ../sass/index/index-category.scss */
.i-category-box img, .i-category-box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* line 33, ../sass/index/index-category.scss */
.i-category-box p {
  position: sticky;
  left: 0;
  padding: 16px;
  font-size: 40px;
  z-index: 2;
  color: #fff;
  bottom: 0;
  margin-top: auto;
}
/* line 44, ../sass/index/index-category.scss */
.i-category-box:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .4;
}

/* line 1, ../sass/index/index-config.scss */
.i-config {
  position: relative;
}

/* line 5, ../sass/index/index-config.scss */
.i-config-wr {
  position: relative;
}
/* line 8, ../sass/index/index-config.scss */
.i-config-wr .bg {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0 8px;
}
/* line 15, ../sass/index/index-config.scss */
.i-config-wr .bg img, .i-config-wr .bg video {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 25, ../sass/index/index-config.scss */
.i-config-desc {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  padding: 20px 15px;
  z-index: 2;
}
/* line 33, ../sass/index/index-config.scss */
.i-config-desc h4 {
  font-size: 39px;
  display: block;
  margin-bottom: 16px;
  color: #fff;
}
/* line 39, ../sass/index/index-config.scss */
.i-config-desc h4 b {
  display: block;
  opacity: .7;
}

/* line 1, ../sass/shop-post/shop-post-desc.scss */
.shop-post-desc {
  position: relative;
  padding: 48px 0;
  display: flex;
  justify-content: flex-end;
}

/* line 8, ../sass/shop-post/shop-post-desc.scss */
.shop-post-desc-wr {
  font-size: 40px;
  width: 50%;
  padding-right: 32px;
}
/* line 13, ../sass/shop-post/shop-post-desc.scss */
.shop-post-desc-wr span {
  color: #21212173;
}

/* line 1, ../sass/shop-post/shop-post-spec.scss */
.shop-post-spec {
  padding: 50px 0;
}

/* line 5, ../sass/shop-post/shop-post-spec.scss */
.shop-post-spec-wr {
  max-width: 1440px;
  /* margin: 0 auto; */
  padding: 0 20px;
  margin-left: auto;
  width: 100%;
}
/* line 12, ../sass/shop-post/shop-post-spec.scss */
.shop-post-spec-wr .site-btn {
  background-color: #21212108;
  border: none;
}

/* line 19, ../sass/shop-post/shop-post-spec.scss */
.shop-post-spec .title {
  font-size: 24px;
  line-height: 1.1;
  max-width: 940px;
  margin-bottom: 10px;
  color: #222;
  text-indent: calc((100% / 12) * 2);
}

/* line 28, ../sass/shop-post/shop-post-spec.scss */
.shop-post-spec .undertitle {
  font-size: 15px;
  color: #777;
  margin-bottom: 80px;
}

/* line 35, ../sass/shop-post/shop-post-spec.scss */
.shop-post-spec-info {
  display: grid;
  grid-template-columns: 405px 1fr;
  gap: 60px;
  align-items: start;
}

/* line 43, ../sass/shop-post/shop-post-spec.scss */
.col-title {
  font-size: 19px;
  font-weight: 500;
  color: #111;
}

/* line 51, ../sass/shop-post/shop-post-spec.scss */
.shop-post-spec-info .cols:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* line 57, ../sass/shop-post/shop-post-spec.scss */
.shop-post-spec-info picture img {
  max-width: 320px;
  width: 100%;
  display: block;
}

/* line 64, ../sass/shop-post/shop-post-spec.scss */
.product-specs {
  width: 100%;
}

/* line 68, ../sass/shop-post/shop-post-spec.scss */
.spec-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  padding: 18px 0;
  border-top: 1px solid #ddd;
}

/* line 75, ../sass/shop-post/shop-post-spec.scss */
.spec-row:last-child {
  border-bottom: 1px solid #ddd;
}

/* line 79, ../sass/shop-post/shop-post-spec.scss */
.spec-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #111;
}

/* line 86, ../sass/shop-post/shop-post-spec.scss */
.spec-value {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  max-width: 700px;
}

/* line 95, ../sass/shop-post/shop-post-spec.scss */
.spec-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
  font-size: 13px;
  line-height: 1.7;
  color: #555;
}

/* line 105, ../sass/shop-post/shop-post-spec.scss */
.spec-columns h4 {
  font-weight: 700;
  letter-spacing: 1px;
  color: #000;
  display: inline-block;
}

@media (max-width: 992px) {
  /* line 117, ../sass/shop-post/shop-post-spec.scss */
  .shop-post-spec-info {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* line 122, ../sass/shop-post/shop-post-spec.scss */
  .shop-post-spec-info picture img {
    max-width: 260px;
  }
}
@media (max-width: 768px) {
  /* line 129, ../sass/shop-post/shop-post-spec.scss */
  .shop-post-spec {
    padding: 60px 0;
  }

  /* line 133, ../sass/shop-post/shop-post-spec.scss */
  .shop-post-spec .title {
    font-size: 16px;
  }

  /* line 137, ../sass/shop-post/shop-post-spec.scss */
  .spec-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  /* line 142, ../sass/shop-post/shop-post-spec.scss */
  .spec-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* line 1, ../sass/shop-post/shop-post-modif.scss */
.shop-post-modif {
  position: relative;
}

/* line 6, ../sass/shop-post/shop-post-modif.scss */
.shop-post-modif-size {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  padding: 42px;
}
/* line 20, ../sass/shop-post/shop-post-modif.scss */
.shop-post-modif-size .color-switch {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 5px;
  border-radius: 50px;
  gap: 4px;
  margin-top: 10px;
}
/* line 30, ../sass/shop-post/shop-post-modif.scss */
.shop-post-modif-size .color-item input {
  display: none;
}
/* line 34, ../sass/shop-post/shop-post-modif.scss */
.shop-post-modif-size .color-item span {
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  transition: .25s;
  cursor: pointer;
}
/* line 43, ../sass/shop-post/shop-post-modif.scss */
.shop-post-modif-size .color-item input:checked + span {
  height: 50px;
  border-radius: 15px;
}

/* line 49, ../sass/shop-post/shop-post-modif.scss */
.shop-post-modif-imgs {
  width: 100%;
  height: 100%;
  min-height: 100vh;
}
/* line 55, ../sass/shop-post/shop-post-modif.scss */
.shop-post-modif-imgs .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
/* line 68, ../sass/shop-post/shop-post-modif.scss */
.shop-post-modif-imgs .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* line 75, ../sass/shop-post/shop-post-modif.scss */
.shop-post-modif-imgs .img.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
