/* Kompakt kapsayıcı */
.ptk-other-products{
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;

  /* Varsayılan (auto scheme henüz uygulanmadan) */
  --ptk-text: rgba(0,0,0,.65);
  --ptk-border: rgba(0,0,0,.20);
  --ptk-skel: rgba(0,0,0,.25);
  color: var(--ptk-text);
}

/* Scheme */
.ptk-other-products.ptk-scheme-dark{
  --ptk-text: rgba(255,255,255,.85);
  --ptk-border: rgba(255,255,255,.55);
  --ptk-skel: rgba(255,255,255,.60);
}
.ptk-other-products.ptk-scheme-light{
  --ptk-text: rgba(0,0,0,.65);
  --ptk-border: rgba(0,0,0,.20);
  --ptk-skel: rgba(0,0,0,.30);
}

/* Grid */
.ptk-other-products .prd-list{
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;

  height: auto;
  overflow: visible;

  grid-auto-rows: 1fr;
}

/* Kutular */
.ptk-other-products .prd-list > li{
  border: 1px solid var(--ptk-border);
  background: transparent;

  height: 100px;
  min-height: 100px;
  padding: 10px;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  min-width: 0;
}

/* Metin */
.ptk-other-products .prd-list > li a{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;

  width: 100%;
  color: inherit;
  text-decoration: none;

  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;

  line-height: 1.2;
  font-size: 12px;
}

/* Skeleton */
.ptk-op-skel span{
  display: block;
  width: 70%;
  height: 10px;
  margin: 0 auto;
  border-radius: 6px;
  background: var(--ptk-skel);
  opacity: 1;
}

/* Responsive */
@media (max-width: 1199px){
  .ptk-other-products .prd-list{ grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
@media (max-width: 991px){
  .ptk-other-products .prd-list{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 767px){
  .ptk-other-products .prd-list{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}