.product-page {
  width: 100%;
}

.product-page-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.product-slider-panel,
.product-info-panel {
  min-width: 0;
}

.product-slider-panel {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.product-splide {
  width: 100%;
}

.product-splide .splide__slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.product-info-panel {
  background: #3f3a34;
  color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.product-title {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.2;
}

.product-short {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.98;
}

.product-tabs {
  margin-top: 8px;
}

.product-tabs input {
  display: none;
}

.product-tabs label {
  display: inline-block;
  margin: 0 8px 10px 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.product-tabs label:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.tab-panels {
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 16px;
}

.tab-panel {
  display: none;
  font-size: 15px;
  line-height: 1.7;
}

#tab-price:checked ~ .tab-panels .tab-price,
#tab-tech:checked ~ .tab-panels .tab-tech,
#tab-delivery:checked ~ .tab-panels .tab-delivery,
#tab-video:checked ~ .tab-panels .tab-video {
  display: block;
}

#tab-price:checked + label,
#tab-tech:checked + label,
#tab-delivery:checked + label,
#tab-video:checked + label {
  background: #ffffff;
  color: #3f3a34;
}

.video-button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 6px;
  background: #fff;
  color: #3f3a34;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr;
  }
  .product-title {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .product-page-wrap {
    padding-top: 16px;
  }
  .product-info-panel {
    padding: 16px;
  }
  .product-short,
  .tab-panel {
    font-size: 14px;
  }
  .product-tabs label {
    padding: 9px 12px;
  }
}

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