.collectionViewDetail .fixed-image-container .base-image{
 display: none;
}

.collectionViewDetail div{
  margin-left: -20px;
  font-weight: bold;
}

h5{
  font-weight: bold;
  font-size: 1.5rem;
}

.collectionList {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem 0;
}

.collectionView {
  width: calc(50% - 1rem); /* 2 kart yanyana */
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease;
  margin-top: 200px;
  margin-bottom: 200px;
}

.collectionView:hover {
  transform: translateY(-4px);
}

.fixed-image-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.fixed-image-container img.base-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.collectionView:hover img.base-image {
  transform: scale(1.05);
}

.text-section {
  padding: 1rem;
  text-align: center;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #222;
}

.text-section span {
  font-size: 1rem;
  color: #555;
  display: block;
  line-height: 1.5;
}

/* Mobil görünüm için */
@media (max-width: 768px) {
  .collectionView {
    width: 100%;
  }
}
