.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; }

/* Kayenne / Hepsi Moda: görsel thumbnail renk seçimi */
.myt-pv--pdp-thumbs { margin: 16px 0 20px; }
.myt-pv__thumbs-label {
  font-size: 13px;
  font-weight: 500;
  color: #737373;
  margin-bottom: 10px;
}
.myt-pv__thumbs-label strong { color: #121210; font-weight: 600; }
.myt-pv__thumb-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.myt-pv__thumb {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e5e5e5;
  background: #fff;
  text-decoration: none;
  flex-shrink: 0;
  transition: border-color .15s ease;
}
.myt-pv__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.myt-pv__thumb-ph {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #737373;
  background: #f5f5f5;
}
.myt-pv__thumb:hover { border-color: #bbb; }
.myt-pv__thumb.is-active { border-color: #121210; }
.myt-pv__thumb.is-oos { opacity: .45; }
