.product-page {
  padding-top: 16px;
  padding-bottom: 48px;
}
.product-page__layout {
  width: 100%;
  max-width: 1344px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 768px) and (max-width: 1343px) {
  .product-page__layout {
    padding-inline: 40px;
  }
}
@media (min-width: 1344px) {
  .product-page__layout {
    padding-inline: 0;
  }
}
.product-page__layout {
  display: grid;
  grid-template-columns: 774px 546px;
  gap: 24px;
  align-items: start;
  padding-bottom: 48px;
}
@media (max-width: 1343px) {
  .product-page__layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .product-page__layout {
    gap: 16px;
    padding-bottom: 24px;
  }
}

.product-gallery {
  position: relative;
  width: 774px;
  height: 580px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background-color: #f4f4f4;
}
@media (max-width: 1343px) {
  .product-gallery {
    width: 100%;
    height: auto;
    aspect-ratio: 774/580;
  }
}
.product-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #f4f4f4;
}
.product-gallery__labels {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.product-gallery__nav, .product-gallery__favorite {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 40px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
}
.product-gallery__nav:focus-visible, .product-gallery__favorite:focus-visible {
  outline: 2px solid #3b67db;
  outline-offset: 2px;
}
.product-gallery__nav {
  top: 50%;
  transform: translateY(-50%);
}
.product-gallery__nav--prev {
  left: 7px;
}
.product-gallery__nav--next {
  right: 7px;
}
.product-gallery__favorite {
  top: 7px;
  right: 7px;
}
.product-gallery__favorite-icon {
  width: 24px;
  height: 24px;
}
.product-gallery__dots {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  align-items: center;
}
.product-gallery__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.12);
}
.product-gallery__dot--active {
  background-color: #000;
}

.product-info {
  width: 546px;
  padding: 32px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1343px) {
  .product-info {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .product-info {
    padding: 24px 16px;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
  }
}
.product-info__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.product-info__text-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-info__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.product-info__sku {
  display: flex;
  gap: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.4);
}
.product-info__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #82b443;
}
.product-info__status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #82b443;
}
.product-info__title-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-info__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.84px;
}
@media (max-width: 767px) {
  .product-info__title {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.4px;
  }
}
.product-info__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.4);
}
.product-info__params {
  display: flex;
  flex-direction: column;
}
.product-info__param {
  display: flex;
  gap: 16px;
  padding: 6px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.product-info__param-name {
  width: 176px;
  flex-shrink: 0;
  color: rgba(0, 0, 0, 0.4);
}
.product-info__param-value {
  flex: 1;
}
.product-info__select {
  margin-top: 0;
}
.product-info__price-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-info__price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.product-info__price {
  font-size: 38px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: -1.14px;
}
@media (max-width: 767px) {
  .product-info__price {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.84px;
  }
}
.product-info__price-old {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.4);
  text-decoration: line-through;
}
.product-info__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-info__actions-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.product-info__actions-row .counter {
  width: 144px;
  flex: none;
}
.product-info__actions-row .btn--primary {
  flex: 1;
}
@media (max-width: 767px) {
  .product-info__actions-row {
    flex-direction: column;
  }
  .product-info__actions-row .counter {
    width: 100%;
  }
}

.product-tabs {
  width: 100%;
  max-width: 1344px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 768px) and (max-width: 1343px) {
  .product-tabs {
    padding-inline: 40px;
  }
}
@media (min-width: 1344px) {
  .product-tabs {
    padding-inline: 0;
  }
}
.product-tabs {
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .product-tabs {
    margin-bottom: 32px;
  }
}
.product-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .product-tabs__nav {
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .product-tabs__nav::-webkit-scrollbar {
    display: none;
  }
}
.product-tabs__btn {
  padding: 0 0 8px;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  position: relative;
}
.product-tabs__btn--active {
  color: #000;
  border-bottom: 1px solid #000;
  margin-bottom: -1px;
}
.product-tabs__panel {
  display: none;
  max-width: 752px;
}
.product-tabs__panel--active {
  display: block;
}
@media (max-width: 767px) {
  .product-tabs__panel {
    max-width: none;
  }
}
.product-tabs__panel p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 12px;
}

.select-field {
  position: relative;
  width: 100%;
}
.select-field__control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  height: 72px;
  padding: 0 23px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background-color: #fff;
  cursor: pointer;
}
.select-field__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.select-field__label {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.4);
}
.select-field__value {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.select-field__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.goods-line {
  padding-top: 16px;
  padding-bottom: 48px;
  background-color: #fff;
}
.goods-line__inner {
  width: 100%;
  max-width: 1344px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 768px) and (max-width: 1343px) {
  .goods-line__inner {
    padding-inline: 40px;
  }
}
@media (min-width: 1344px) {
  .goods-line__inner {
    padding-inline: 0;
  }
}
.goods-line__slider {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media (min-width: 1344px) {
  .goods-line__slider {
    overflow: visible;
    flex-wrap: nowrap;
  }
}
@media (max-width: 1343px) {
  .goods-line__slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-inline: -40px;
    padding-inline: 40px;
    scroll-padding-inline: 40px;
  }
  .goods-line__slider::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 767px) {
  .goods-line__slider {
    margin-inline: -16px;
    padding-inline: 16px;
    scroll-padding-inline: 16px;
  }
}
.goods-line__slider.swiper {
  display: block;
  overflow: hidden;
  scroll-snap-type: none;
}

.good-card {
  box-sizing: border-box;
  width: 318px;
  flex: 0 0 318px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background-color: #fff;
}
@media (max-width: 1343px) {
  .good-card {
    scroll-snap-align: start;
  }
}
@media (max-width: 767px) {
  .good-card {
    width: 280px;
    flex: 0 0 280px;
  }
}
.good-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 286px;
}
.good-card__image-wrap {
  position: relative;
  height: 215px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.good-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #ececec;
}
.good-card__label {
  position: absolute;
  top: 8px;
  left: 8px;
}
.good-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.good-card__title-block {
  display: flex;
  flex-direction: column;
}
.good-card__status {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #82b443;
}
.good-card__title {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.good-card__title a {
  color: inherit;
  text-decoration: none;
}
@media (hover: hover) {
  .good-card__title a:hover {
    opacity: 0.7;
  }
}
.good-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.good-card__price {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.4px;
}
.good-card__price-old {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.4);
  text-decoration: line-through;
}
.good-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: stretch;
  width: 100%;
}
.good-card__actions .counter {
  flex: 1 0 112px;
}
.good-card__cart-btn {
  flex: 1 0 auto;
  white-space: nowrap;
}

/*# sourceMappingURL=product.css.map */
