/* ===============================
   COLLECTION VIEW DETAIL – RESET
=============================== */

.collectionViewDetail{
  width:100%;
  margin:0;
  padding:0;
}

/* ===============================
   IMAGE CONTAINER (ASIL KUTU)
=============================== */

.collectionViewDetail .fixed-image-container{
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 420px;              /* desktop yüksekliği */
  overflow: hidden;
  border-radius: 26px;
  margin: 0 auto;
  background: #eee;
}

/* ===============================
   IMAGE
=============================== */

.collectionViewDetail .fixed-image-container img.base-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transition: transform .6s ease;
}

/* ===============================
   HOVER ZOOM (KAPATMAK İSTERSEN %1.03 YAP)
=============================== */

.collectionViewDetail:hover img.base-image{
  transform: scale(1.03);
}

/* ===============================
   ALT GRADIENT (SADECE GÖRSEL İÇİNDE)
=============================== */

.collectionViewDetail .fixed-image-container::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:45%;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0)
  );
  z-index:1;
  pointer-events:none;
}

/* ===============================
   TEXT SECTION
=============================== */

.collectionViewDetail .text-section{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:32px;
  z-index:2;
  pointer-events:none;
}

.collectionViewDetail .text-section h2{
  font-family:'Playfair Display', serif;
  font-size:36px;
  font-weight:700;
  line-height:1.1;
  color:#ffffff;
  margin:0 0 6px 0;
}

.collectionViewDetail .text-section p{
  font-family:'Poppins', sans-serif;
  font-size:16px;
  font-weight:400;
  color:#ffffff;
  margin:0;
  opacity:.95;
}

/* ===============================
   MOBILE
=============================== */

@media (max-width: 768px){

  .collectionViewDetail .fixed-image-container{
    height:300px;
    border-radius:18px;
  }

  .collectionViewDetail .text-section{
    padding:20px;
  }

  .collectionViewDetail .text-section h2{
    font-size:24px;
  }

  .collectionViewDetail .text-section p{
    font-size:14px;
  }

  .collectionViewDetail .fixed-image-container::after{
    height:60%;
  }
}

/* ===============================
   GÜVENLİK – DIŞA TAŞMAYI ENGELLE
=============================== */

html, body{
  overflow-x:hidden;
}
/* ===============================
   COLLECTION BANNER – ODAK AYAKKABI
=============================== */

.collectionViewDetail .fixed-image-container img.base-image{
  object-fit: cover;
  object-position: center 75%;
}

/* Hover varsa da aynı odak korunsun */
.collectionViewDetail:hover img.base-image{
  transform: scale(1.03);
  object-position: center 75%;
}

/* Mobilde biraz daha aşağı al */
@media (max-width: 768px){
  .collectionViewDetail .fixed-image-container img.base-image{
    object-position: center 85%;
  }
}
