/* ===== Структура страницы товара ===== */
.prod-title {
  font-size: 2rem;
  font-weight: 800;
}

.prod-card {
  border: 1px solid #E6E8EB;
  border-radius: 12px;
  overflow: hidden;
}

.prod-photo {
  display: flex;
  justify-content: center;
  background: #fff;
  padding: 1rem;
  border-right: 1px solid #EEF1F4;
}

.prod-photo img {
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
}

.prod-info .name {
  color: #16a34a;
  font-weight: 700;
  font-size: 1.2rem;
}

.badge-tech {
  display: inline-block;
  background: #EAF7EE;
  color: #198754;
  border: 1px solid #D7EFDC;
  border-radius: 8px;
  padding: .35rem .6rem;
  font-weight: 700;
  font-size: .85rem;
}

.price {
  color: #16a34a;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.price small {
  margin-left: .25rem;
  color: #6B7280;
  font-weight: 500;
  font-size: 1rem;
}

.price small sup {
  font-size: 60%;
  top: -.55em;
}

/* ===== Свотчи ===== */
.swatches {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.swatch {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid #e5e7eb;
  display: inline-block;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .8);
  transition: transform .15s;
  cursor: pointer;
}

.swatch:hover {
  transform: translateY(-1px);
}

.swatch.active {
  outline: 2px solid #16a34a;
}

/* ===== Таблица ===== */
.spec-table td {
  vertical-align: middle;
}

.spec-table tr td:first-child {
  color: #334155;
  width: 30%;
}


@media (max-width: 991px) {
.prod-photo img {
  height: 250px;
}

}