.main-content.wide-content {
  width: 100%;
  padding-top: 0;
}

.product-detail-area {
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px); /* Ekranı tam kaplamadan ortalar */
}

.product-info-container {
  width: 100%;
}

.product-title-wrapper {
  text-align: center;
  width: 100%;
}

.product-main-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; /* Sitedeki boşluk yapısına uygun şekilde ayarlandı */
  align-items: center; /* Görsel açıklamanın ortasında duracak şekilde dikey hizalandı */
  background-color: transparent;
  padding: 3rem 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  width: 100%;
}

.product-description-side {
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 3rem; /* Başlık ile içerik arası geniş boşluk */
  padding-bottom: 1.2rem;
  /* text-transform: uppercase; */
  text-align: center; /* Ürün adı ortalandı */
  display: inline-block; /* Yazı uzunluğuna göre ayarlanması için */
  position: relative;
}

.card-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 3px;
  background-color: #e2e8f0;
  border-radius: 2px;
}

.short-desc-container {
  margin-bottom: 0.5rem; /* Mesafe azaltıldı */
}

.short-desc-container p {
  color: #0f172a;
  display: block;
  margin-bottom: 0;
  font-size: 1.25rem; /* Boyut büyütüldü */
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap; /* Tek sıraya sığması için */
  overflow: hidden;
  text-overflow: ellipsis; /* Çok uzunsa taşmasın */
}

.product-long-desc {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
  text-align: justify; /* Yazılar iki yana yaslandı */
}

.product-long-desc strong {
  color: #0f172a;
  display: block;
  margin-top: 0.8rem; /* ShortDesc ile mesafe azaltıldı */
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.product-spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-spec-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: #475569;
}

.product-spec-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

.product-image-side .image-box {
  border-radius: 0;
  overflow: hidden;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: flex-start; /* Üst hizada kalması için */
  width: 100%;
  height: auto; /* Dinamik yükseklik */
  max-height: 400px; /* Sitedeki ölçeğe uygun max sınır */
  box-shadow: none;
}

.product-image-side {
  display: flex;
}

.product-image-side img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

/* ÇOKLU ÜRÜN (MULTI-PRODUCT) ÖZEL STİLLERİ */
.multi-product-list {
  margin-top: 2rem;
}

.multi-product-item {
  padding: 5rem 0;
  border-bottom: 1px solid #f1f5f9; /* Ürünler arası ince çizgi */
}

.multi-product-item:first-child {
  padding-top: 0; /* İlk ürün ile başlık arası boşluk tamamen kaldırıldı */
}

.multi-product-item:last-child {
  border-bottom: none;
}

.multi-item-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

/* Bİ SAĞ Bİ SOL DÜZEN VE DIŞ KENARA YASLAMA (SİTE REFERANSI) */
.multi-product-item:nth-child(even)
  .product-main-info
  .product-description-side {
  order: 2;
}

.multi-product-item:nth-child(even) .product-main-info .product-image-side {
  order: 1;
}

/* Sol kolondaki görseller sol kenara yaslanır */
.multi-product-item:nth-child(even) .image-box {
  justify-content: flex-start;
}

/* Sağ kolondaki görseller sağ kenara yaslanır */
.multi-product-item:nth-child(odd) .image-box {
  justify-content: flex-end;
}

/* Tekli ürün sayfası için varsayılan (sağ kolondaki görsel sağa yaslanır) */
.product-image-side .image-box {
  justify-content: flex-end;
}

@media (max-width: 1024px) {
  .multi-product-item {
    padding: 3rem 0;
  }

  /* Mobilde bi sağ bi sol düzenini iptal et (hepsi alt alta standart olsun) */
  .multi-product-item:nth-child(even)
    .product-main-info
    .product-description-side {
    order: unset;
  }

  .multi-product-item:nth-child(even) .product-main-info .product-image-side {
    order: unset;
  }

  .product-main-info {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0;
    text-align: center;
  }

  .card-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .product-description-side {
    order: 2; /* Mobilde metin alta gelsin */
  }

  .product-image-side {
    order: 1; /* Mobilde görsel üstte kalsın */
  }

  .product-image-side .image-box {
    max-height: none;
    justify-content: center;
  }

  .product-image-side img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .product-detail-area {
    overflow-x: hidden;
  }

  .short-desc-container p {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .product-long-desc {
    text-align: justify;
  }
}
