@charset "UTF-8";
.breadcrumbs {
  font-size: 18px;
  color: #666666;
  margin: 15px 15px;
}

.product-page {
  margin: 0 auto 40px;
  font-size: 20px;
}

.product-card {
  background: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.product-media {
  background: #ffffff;
}

.product-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #ffffff;
}

.product-slider-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.product-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.product-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.product-slider-stop {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.product-slider-stop-icon {
  position: relative;
  width: 14px;
  height: 14px;
}

.product-slider-stop-icon::before,
.product-slider-stop-icon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #333333;
  border-radius: 2px;
}

.product-slider-stop-icon::before {
  left: 0;
}

.product-slider-stop-icon::after {
  right: 0;
}

.product-slider-stop.is-paused .product-slider-stop-icon::before {
  left: 2px;
  width: 0;
  height: 0;
  top: 1px;
  bottom: auto;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #333333;
  background: none;
  border-radius: 0;
}

.product-slider-stop.is-paused .product-slider-stop-icon::after {
  display: none;
}

.product-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.product-slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  padding: 0;
  cursor: pointer;
}

.product-slider-dot.is-active {
  width: 9px;
  height: 9px;
  background: #ffffff;
}

.product-info {
  padding: 18px 18px 24px;
}

.product-info__header {
  text-align: center;
  margin-bottom: 16px;
}

.product-title {
  font-size: 34px;
  line-height: 1.2;
}

.product-meta {
  margin-bottom: 16px;
}

.product-meta__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 12px;
}

.product-meta-label {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #777777;
  margin-bottom: 4px;
}

.product-price-value {
  font-size: 26px;
  font-weight: 600;
}

.product-meta-link {
  font-size: 18px;
  text-decoration: underline;
}

.product-specs {
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: grid;
  row-gap: 8px;
}

.product-meta-link {
  color: #15a9ae;
}

.product-specs__item {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}

.product-specs__item dt {
  font-weight: 500;
  color: #444444;
}

.product-specs__item dd {
  margin: 0;
  color: #111111;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 999px;
  border: 1px solid #111111;
  padding: 14px 22px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  background: #ffffff;
}

.btn-primary {
  background: #111111;
  color: #ffffff;
  width: 100%;
}

.btn-outline {
  background: transparent;
  color: #111111;
  width: 100%;
}

.product-description img {
  width: 100%;
}

.product-section-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-description__text {
  font-size: 20px;
  line-height: 1.5;
  color: #555555;
}

.product-description__toggle {
  margin-top: 6px;
  padding: 0;
  border: none;
  background: none;
  font-size: 18px;
  font-weight: 500;
  color: #111111;
  cursor: pointer;
  text-decoration: underline;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.product-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-lightbox__inner {
  position: relative;
  max-width: 1000px;
  width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-lightbox__image {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  background: #000;
}

.product-extra {
  width: 100%;
}

.product-lightbox__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Попап "Other contacts" */
.contacts-overlay {
  position: fixed;
  inset: 0;
  z-index: 1450;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.contacts-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contacts-overlay__backdrop {
  position: absolute;
  inset: 0;
}

.contacts-overlay__panel {
  position: relative;
  max-width: 520px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 20px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.contacts-overlay__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: #f3f3f3;
  color: #111111;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.contacts-overlay__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
}

.contacts-overlay__content {
  display: grid;
  gap: 18px;
}

.contacts-overlay__section {
  padding-top: 4px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contacts-overlay__section:first-of-type {
  border-top: none;
}

.contacts-overlay__subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contacts-overlay__hint {
  font-size: 16px;
  color: #666666;
  margin-bottom: 10px;
}

.contacts-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contacts-form__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contacts-form__label {
  font-size: 16px;
  font-weight: 500;
}

.contacts-form input,
.contacts-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #dddddd;
  font-size: 16px;
  font-family: inherit;
  outline: none;
}

.contacts-form input:focus,
.contacts-form textarea:focus {
  border-color: #15a9ae;
}

.contacts-form__submit {
  align-self: flex-start;
  margin-top: 4px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.contacts-whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: #25d366;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 767px) {
  .product-lightbox {
    padding: 8px;
  }
  .product-lightbox__close {
    top: 4px;
    right: 4px;
  }
}
@media (min-width: 768px) {
  .product-card {
    display: flex;
  }
  .product-media,
  .product-info {
    flex: 1;
  }
  .product-media {
    border-right: 1px solid rgba(0, 0, 0, 0.04);
  }
  .product-slider {
    border-radius: 16px 0 0 0;
  }
}/*# sourceMappingURL=fullstory.css.map */