.myt-pv { margin-bottom: 12px; }
.myt-pv__group-block + .myt-pv__group-block { margin-top: 10px; }
.myt-pv__group-title { font-size: 12px; font-weight: 600; color: #4b5563; margin-bottom: 6px; }
.myt-pv__chips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 10px;
}
.myt-pv__chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 7px;
  padding: 8px;
  border: 1px solid #e7eaee;
  border-radius: 12px;
  text-decoration: none;
  color: #343a40;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.myt-pv__chip:hover {
  color: #212529;
  border-color: #d8dde3;
  box-shadow: 0 6px 18px rgba(24, 39, 75, 0.08);
  transform: translateY(-1px);
}
.myt-pv__chip-img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  border: 1px solid #edf0f2;
  background: #fff;
  padding: 6px;
}
.myt-pv__chip-text {
  width: 100%;
  font-size: 12px;
  line-height: 1.35;
  color: #4b5563;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 32px;
}
.myt-pv__chip-price {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
}
@media (max-width: 575px) {
  .myt-pv__chips { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.myt-pv__hidden { display: none !important; }
