#goods-block {
  padding: 40px 0;
}
#goods-block .goods__terms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
#goods-block .goods__single-term {
  padding: 20px 70px;
  font-family: "Optima Cyr";
  font-size: clamp(16px, 0.0025 * 100vw + 15.2px, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 60px */
  text-transform: uppercase;
  color: var(--primary);
  background-color: #fff;
  border-radius: 100px;
  transition: 0.3s ease;
  cursor: pointer;
}
#goods-block .goods__single-term:hover {
  background-color: var(--primary);
  color: #fff;
}
#goods-block .goods__single-term.active {
  color: #fff;
  background-color: var(--head);
}
#goods-block .goods__tab-item {
  display: none;
}
#goods-block .goods__tab-item.active {
  display: block;
}
#goods-block .swiper-slide {

}
#goods-block .goods__single-good {
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  min-height: 900px;
  height: 100%;
  display: grid;
}
#goods-block .goods__single-good-img {
  max-width: 345px;
  max-height: 345px;
  width: 100%;
  height: 100%;
  margin-bottom: 18px;
}
#goods-block .goods__single-good-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
#goods-block .goods__single-good-title {
  font-family: "Optima Cyr";
  font-size: clamp(16px, 0.0025 * 100vw + 15.2px, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--head);
  height: 100px;
}
#goods-block .goods__single-good-volume {
  font-family: "Avenir Next Cyr";
  font-size: clamp(14px, 0 * 100vw + 14px, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--maintext);
}
#goods-block .goods__single-good-desc {
  font-family: "Avenir Next Cyr";
  font-size: clamp(14px, 0 * 100vw + 14px, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--maintext);
  margin-bottom: 20px;
}
#goods-block .goods__single-good-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#goods-block .goods__single-good-price-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#goods-block .goods__single-good-price {
  font-family: "Optima Cyr";
  font-size: clamp(18px, 0.00375 * 100vw + 16.8px, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--head);
}
#goods-block .goods__single-good-price-title {
  font-family: "Avenir Next Cyr";
  font-size: clamp(14px, 0 * 100vw + 14px, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--maintext);
}
#goods-block .goods__swiper-bottom {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#goods-block .goods__swiper-pagination {
  width: -moz-fit-content;
  width: fit-content;
}
#goods-block .goods__swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  border-radius: 50%;
  border: 1px solid var(--primary);
  transition: 0.3s ease;
  background-color: transparent;
  width: 12px;
  height: 12px;
}
#goods-block .goods__swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary);
}
#goods-block .goods__swiper-navigation {
  display: flex;
  align-items: center;
  gap: 10px;
}
#goods-block .goods__swiper-prev {
  background-color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
}
#goods-block .goods__swiper-prev svg path {
  stroke: var(--primary);
  transition: 0.5s ease;
}
#goods-block .goods__swiper-prev:hover {
  background-color: var(--primary);
}
#goods-block .goods__swiper-prev:hover svg path {
  stroke: #fff;
}
#goods-block .goods__swiper-next {
  background-color: var(--primary);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
}
#goods-block .goods__swiper-next svg path {
  stroke: #fff;
  transition: 0.5s ease;
}
#goods-block .goods__swiper-next:hover {
  background-color: var(--head);
}
.goods__swiper  .swiper-wrapper {
  height: auto;
}



@media (max-width: 1000px) {
  #goods-block {
    padding: 30px 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  #goods-block .goods__terms {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    
  }
  #goods-block .goods__single-term {
    display: flex;
    justify-content: center;
    padding: 20px;
  }
}
@media only screen and (max-width: 480px) {
  #goods-block .goods__single-good-bottom {
    gap: 10px;
  }
  #goods-block .goods__single-good-bottom .btn {
    width: auto;
  }
  #goods-block .goods__swiper-bottom {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }



}/*# sourceMappingURL=block.css.map */