.product__options {
  display: block !important;
  width: 100%;
}
.product__options-item {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.product__options-item:after {
  content: "";
  width: 100%;
  height: 0;
  border: 1px dotted #e3e3e3;
  position: absolute;
  bottom: 6px;
  left: 0;
}
.product__options-item span {
  display: inline-block;
  background: #fff;
  position: relative;
  z-index: 2;
}
.product__option-title {
  width: 50%;
  background: #fff;
}
.product__option-value {
  width: 50%;
  text-align: right;
  background: #fff;
}

.page.product {
  margin-top: 30px;
}

.product__media {
  flex: 1 1 auto;
  width: 100%;
  max-width: 660px;
  min-width: 0;
}

.product__images_df {
  width: 100%;
  max-width: none;
  max-height: 660px;
  background: #e9e9e7;
}
.product__images_df .swiper-slide {
  display: flex;
  align-items: center;
  max-height: 660px;
}
@media (max-width: 991px) {
  .product__images_df .swiper-slide {
    max-height: calc(100vw - 30px);
  }
}
.product__images_df .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product__images_df .swiper-btn-prev {
  left: 15px;
}
.product__images_df .swiper-btn-next {
  right: 15px;
  left: auto;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.product-gallery__item {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  background: #e9e9e7;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.product-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-gallery__item:hover {
  border-color: var(--color-green);
  box-shadow: 0 4px 18px rgba(108, 108, 108, 0.14);
}
.product-gallery__item:focus-visible {
  outline: 3px solid var(--focus-color);
  outline-offset: 2px;
}
.product-gallery__zoom {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-green-hover);
  box-shadow: 0 2px 10px rgba(45, 45, 45, 0.16);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.product-gallery__item:hover .product-gallery__zoom,
.product-gallery__item:focus-visible .product-gallery__zoom {
  opacity: 1;
}

@media (hover: none) {
  .product-gallery__zoom {
    opacity: 1;
  }
}
@media (max-width: 575px) {
  .product-gallery {
    gap: 7px;
    margin-top: 10px;
  }
  .product-gallery__zoom {
    right: 5px;
    bottom: 5px;
    width: 28px;
    height: 28px;
  }
}

.product-series {
  margin-top: 72px;
  padding-top: 42px;
  border-top: 1px solid #d9d9d9;
}
.product-series__header {
  margin-bottom: 26px;
}
.product-series__eyebrow {
  margin: 0 0 8px !important;
  color: var(--color-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-series__title {
  font-family: var(--font-text);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
}
.product-series__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.product-series__card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-series__image {
  display: block;
  background: #e9e9e7;
}
.product-series__no-image {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-text);
  font-size: 14px;
}
.product-series__card-title {
  margin-bottom: 0 !important;
}
.product-series__card-title a:hover {
  color: var(--color-green-hover);
}
.product-series__prices {
  margin-top: auto;
  padding-top: 12px;
}

@media (max-width: 1199px) {
  .product-series__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .product-series {
    margin-top: 52px;
    padding-top: 32px;
  }
  .product-series__title {
    font-size: 27px;
  }
  .product-series__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}
@media (max-width: 479px) {
  .product-series__grid {
    gap: 8px;
  }
  .product-series__card {
    padding: 10px 10px 16px;
  }
  .product-series__card-title {
    margin-top: 12px;
    font-size: 14px;
  }
  .product-series__card .card-product__btn {
    height: 44px;
    font-size: 12px;
  }
}

/*# sourceMappingURL=style.css.map */

h3 {
	margin-bottom:20px;
}
