  .geri-butonu {
    font-weight: 500;
    color: #0d6efd;
    transition: color 0.2s ease;
  }

  .geri-butonu:hover {
    color: #063f9d;
    text-decoration: underline;
border:1px solid #eee;
  }


.collectionList{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.collectionView {
margin-top:12px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.6s ease;
}

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

.fixed-image-container {
  overflow: hidden;
  position: relative;
}
.collectionViewDetail .fixed-image-container img
{
 
}
.fixed-image-container img.base-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.9s ease;
}

.collectionView:hover img.base-image {
  transform: scale(1.95);
  transform-origin: center bottom; 
  transition: transform 0.6s ease;
}

.text-section {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  /*background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);*/
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  pointer-events: none; /* metni tıklanamaz yapar */
}

.card-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  z-index: 2;
}

.text-section span {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease;
  font-size: 0.95rem;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 0.8rem;
  border-radius: 10px;
  margin-top: 0.5rem;
  pointer-events: auto;
}

.collectionView:hover .text-section span {
  opacity: 1;
  max-height: 500px; /* yeterli bir değer */
}


    .productListView .base-image {
  transition: transform 1.9s ease;
    }


.productListView:hover  img.base-image {
   transform: scale(1.95);
  transform-origin: center bottom; /* alt taraf sabit kalır, üstten taşar */
  transition: transform 0.6s ease;
}


.productDetail .img-fluid{
 transition: transform 1.9s ease;
}
.productDetail :hover  img.img-fluid{
  transform: scale(1.95);
  transform-origin: center bottom; /* alt taraf sabit kalır, üstten taşar */
  transition: transform 0.6s ease;
}








 
.product-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}




.productDetail, .productListView  {
  overflow: hidden;
  position: relative;
}

.img-fluid, .base-image {
  transition: transform 1.9s ease, transform-origin 0.3s ease;
  will-change: transform;
}
.productDetail:hover .img-fluid {
  transform: scale(1.95);
  transform-origin: center bottom; /* alt taraf sabit kalır, üstten taşar */
  transition: transform 0.6s ease;
}
.fixed-image-container {
    position: relative;
}

.fixed-image-container[data-prop*="rulo" i]::before {
    content: "✄";
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 20px;
    background: #fff;
    color: #e00000;
    padding: 4px 8px;
    border-radius: 50%;
    z-index: 10;
}



.group-properties .pName {
   font-size: 20px;
   font-weight: bold;
}

.group-properties .pValue {
   font-size: 20px;
   font-weight: bold;
}


/* Rulo kutucuklarını belirginleştirir */
.row.mt-3 .beden {
  flex: 0 0 auto;
  width: auto;
  min-width: 100px;      /* kutunun genişliğini artırır */
  height: 50px;          /* kutunun yüksekliğini artırır */
  font-size: 1.1rem;     /* yazı boyutunu büyütür */
  font-weight: 600;      /* kalınlaştırır */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa; /* açık gri arka plan */
  border: 1px solid #ddd;    /* ince kenarlık */
  border-radius: 8px;        /* köşeleri yuvarlatır */
  margin: 4px;               /* aralarına boşluk koyar */
  transition: transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

/* Hover efekti (isteğe bağlı) */
.row.mt-3 .beden:hover {
  background-color: #eaeaea;
  transform: scale(1.05);
}
/* ===============================
   COLLECTION GRID – TYPOGRAPHY
   (CSS ONLY / HTML DOKUNMADAN)
=============================== */

/* Kart altı başlıklar */
.collectionList .collectionView .text-section h3,
.collectionList .collectionView .text-section h3 span,
.collectionList .collectionView .text-section a{
  font-family: 'Playfair Display', serif !important;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #ffffff; /* görsel üstündeyse */
}

/* Eğer koyu zeminde değilse (alternatif) */
.collectionList .collectionView.light .text-section h3{
  color:#1a1a1a;
}

/* Açıklama / küçük metin varsa */
.collectionList .collectionView .text-section p,
.collectionList .collectionView .text-section span:not(h3 span){
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  opacity: .9;
}

/* ===============================
   FONT SIZE – RESPONSIVE
=============================== */

/* Desktop */
@media (min-width: 769px){
  .collectionList .collectionView .text-section h3{
    font-size: 26px;
  }
}

/* Mobile */
@media (max-width: 768px){
  .collectionList .collectionView .text-section h3{
    font-size: 20px;
  }
}
/* ===============================
   SADECE GÖRÜNÜM DÜZELTME
=============================== */

/* Alt açıklama varsayılan gizli */
.collectionView .text-section span{
  opacity: 0 !important;
  max-height: 0 !important;
  padding: 0 !important;
  margin-top: 0 !important;
  overflow: hidden;
  transition: opacity .3s ease, max-height .3s ease;
}

/* Hover olunca göster */
.collectionView:hover .text-section span{
  opacity: 1 !important;
  max-height: 200px !important;
  padding: 14px 18px !important;
  margin-top: 10px !important;
}
/* ===============================
   ZOOM / SCALE TAMAMEN KAPATILDI
=============================== */

/* Koleksiyon kartları */
.collectionView:hover img.base-image,
.collectionView img.base-image{
  transform: none !important;
}

/* Ürün listeleme kartları */
.productListView:hover img.base-image,
.productListView img.base-image{
  transform: none !important;
}

/* Ürün detay sayfası */
.productDetail:hover .img-fluid,
.productDetail .img-fluid{
  transform: none !important;
}

/* Genel güvenlik (her ihtimale karşı) */
.img-fluid,
.base-image{
  transform: none !important;
  transition: none !important;
}
/* ===============================
   MOBİL ÜRÜN KARTI GÖRSEL DÜZELTME
================================ */
@media (max-width: 768px){

  /* Ürün kartı görsel kapsayıcı */
  .product-card img,
  .product-item img,
  .product-image img{
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    background: #f5f5f5;
  }

  /* Eğer görsel sabit yükseklikliyse */
  .product-card .image,
  .product-item .image,
  .product-image{
    height: auto !important;
    min-height: unset !important;
    aspect-ratio: 3 / 4;
    overflow: visible !important;
  }
}
