.product-view-panel {
  margin-bottom: 22px;
  overflow: hidden;
}

.product-view-row {
  display: grid;
  grid-template-columns: 84px minmax(180px, 1fr) minmax(80px, .35fr) minmax(120px, .5fr) minmax(120px, .5fr);
  gap: 18px;
  align-items: start;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}

.product-view-row:last-child { border-bottom: 0; }
.product-view-row > div:not(.product-view-image) { display: grid; gap: 4px; }
.product-view-row small { color: var(--muted); font-size: 12px; }
.product-view-name strong { font-size: 15px; }
.product-view-details { white-space: pre-line; line-height: 1.55; color: #475467; margin-top: 5px; }

.product-view-image {
  width: 76px;
  height: 76px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-view-image img { width: 100%; height: 100%; object-fit: contain; }
.product-image-placeholder { color: #98a2b3; font-size: 22px; }

@media (max-width: 760px) {
  .product-view-row { grid-template-columns: 64px 1fr 1fr; gap: 12px; }
  .product-view-image { width: 60px; height: 60px; grid-row: span 2; }
  .product-view-name { grid-column: 2 / -1; }
  .product-view-row > div:nth-child(5) { grid-column: 2 / -1; }
}
