.pvSummaryBox {
  position: relative;
  border-radius: 18px;
  padding: 16px 16px 12px 16px;
  margin: 0;
  background: linear-gradient(145deg, #fff 0%, #fafbfc 55%, #f4f6f9 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(15, 23, 42, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}
.pvSummaryBox::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(201, 162, 77, 0.45), rgba(15, 23, 42, 0.06) 40%, rgba(201, 162, 77, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.pvSummaryBox::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 77, 0.14) 0%, rgba(201, 162, 77, 0) 70%);
  pointer-events: none;
}
.pvSumRow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 11px 4px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.pvSumRow:last-child { border-bottom: 0; padding-bottom: 2px }
.pvSumIco {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  font-size: 18px;
  color: #7a5d18;
  background: linear-gradient(180deg, #fff 0%, #f3f0e8 100%);
  border: 1px solid rgba(201, 162, 77, 0.22);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24;
}
.pvSumLbl { color: #7b8088; font-size: 12px; font-weight: 500; letter-spacing: 0.02em }
.pvSumVal { font-weight: 700; color: #14171c; text-align: right; font-size: 13px; line-height: 1.35 }
.pvDetailsGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 28px 36px;
  align-items: start;
}
.pvDetailsMain { min-width: 0 }
.pvCatTags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 4px 0;
}
.pvCatTag {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 7px 13px 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #3d4249;
  background: linear-gradient(180deg, #fff 0%, #f6f7f9 100%);
  border: 1px solid #e3e6eb;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.pvCatTagHash {
  color: #9a7b2e;
  font-weight: 700;
  margin-right: 2px;
}
.pvCatTag:hover {
  color: #111;
  border-color: rgba(201, 162, 77, 0.45);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
  text-decoration: none;
}
.pvCatTag:hover .pvCatTagHash { color: #7a5d18 }
.content .tabsProduct .tabsContent .tab.active .pvDetailsGrid { padding-top: 4px }
@media (max-width: 900px) {
  .pvDetailsGrid { grid-template-columns: 1fr; gap: 20px }
  .pvSummaryBox { max-width: 360px }
}
