/*
 * KADSU DESIGN - ana sayfa vitrini.
 * Yalnizca JavaScript tarafindan isaretlenen iki urun alanini etkiler.
 * Kategori, hero, kampanya, urun ve kategori sayfalari degistirilmez.
 */

.kds-home-showcase-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: start !important;
  gap: 0 !important;
  width: 100% !important;
  min-width: 0 !important;
  padding: 0 !important;
}

.kds-home-showcase-grid .kds-home-showcase-card {
  display: block !important;
  min-width: 0 !important;
  margin: 0 !important;
}

.kds-home-showcase-grid .kds-product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.kds-home-showcase-grid .kds-product-image-wrapper {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: var(--kds-home-showcase-image-ratio, 1 / 1) !important;
  overflow: hidden !important;
  background: #f7f7f7;
}

.kds-home-showcase-grid .kds-product-image {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.kds-home-showcase-grid .kds-product-info {
  display: block;
  min-width: 0;
  padding: 12px 4px 0;
}

.kds-home-showcase-grid .product-model,
.kds-home-showcase-grid .product-detail,
.kds-home-showcase-grid .kds-product-price {
  display: block;
  overflow-wrap: anywhere;
}

.kds-home-showcase-grid .product-model {
  margin: 0;
  font-weight: 500;
}

.kds-home-showcase-grid .product-detail {
  margin-top: 5px;
  color: #777777;
}

.kds-home-showcase-grid .kds-product-price {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .kds-home-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 26px 0 !important;
  }
}
/* Telefon: vitrin fotoğraflarını standart oranda göster */

@media (max-width: 600px) {
  .kds-home-showcase-grid .kds-product-image-wrapper {
    aspect-ratio: 4 / 5 !important;
    background: #ffffff !important;
  }

  .kds-home-showcase-grid .kds-product-image {
    object-fit: contain !important;
    object-position: center center !important;
  }
}
