@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,800&display=swap');

/* TEMEL YAPI STİLLERİ */
.containerProduct {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 85px 20px 40px;
  
  background: #fff;
  font-family: 'Poppins', sans-serif;
}


/* Panel başlığı için düzenleme */
.panel-heading {
    position: relative; /* İçindeki öğeleri konumlandırabilmek için relative yapıyoruz */
}

/* Ok işaretini tam sağ köşeye yasla */
.accordion-icon {
    position: absolute;
    right: 15px; /* Sağdan 15px boşluk bırak */
    top: 50%; /* Dikey olarak ortala */
    transform: translateY(-50%); /* Tam ortalamak için */
    font-size: 16px;
    transition: transform 0.3s ease-in-out;
}

/* Açıldığında oku döndür */
.accordion-open .accordion-icon {
    transform: translateY(-50%) rotate(180deg);
}


.modellogoimg {
    max-width:200px;
    max-height:150px;

}
/* ANA CONTAINER STİLLERİ */
/*.containerP {
    display: flex;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 5%;
}*/
/* containerP içindeki divleri 2 eşit parçaya böler */
.containerP {
    display: flex;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 5%;
}

/* İçerideki 2 divin eşit olması için */
.UstImgbox, .details {
    flex: 1;
    padding: 20px;
}

/* UstImgbox içindeki divleri de 2 eşit parçaya böler */
.UstImgbox {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* imgBx ve ProductImage'ı yan yana koy */
.imgBx {
    flex: 1;
    
    height: 100%;
    width: 50%;
    position: absolute;
}

.ProductImage {
    flex: 1;
    max-width: 100%;
    height: auto;
    position: absolute;
    display: block;
    transform: rotate(330deg);
}

.panel-body {
    max-height: 400px; /* Panel içeriği için maksimum yükseklik */
    overflow-y: auto; /* İçerik sığmazsa kaydırma çubuğu gösterir */
}
.containerB {
  width: 100%;
  max-width: 1400px;
  padding: 0 20px;
  margin: 40px 0;
}

/* RESİM ALANI */

.containerP .imgBx img {
  max-width: 100%;
  height: auto;
 /* transform: rotate(-90deg);*/
  transition: transform 0.9s ease;
}

/* DETAY ALANI */
.containerP .details {
  flex: 1;
  
  padding-left:5px;
  
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* TEKNOLOJİ GÖSTERİM ALANI */

.tech-row {
    display: flex;
    flex-wrap: wrap; /* İçerik sığmazsa yeni satıra geç */
    
    margin: 10px 0;
}

.tech-col {
    flex: 0 0 calc(16.66% - 20px); /* 6 kolon için her biri %16.66 genişlik (boşluklarla birlikte) */
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    margin: 10px; /* Elemanlar arasında boşluk bırak */
}

.Tech-imgBox {
    
    height: 80px; /* Sabit yükseklik ile daha küçük resimler */
    object-fit: contain; /* Resmin kutuya sığması için */
    margin-bottom: 10px; /* Resim ve yazı arası boşluk */
}

.TexchImg-caption, .TechImg-Tipsize {
    font-size: 12px; /* Yazı boyutunu küçült */
    line-height: 1.4;
    min-height: 30px; /* Altında kalan metin için uyumlu yükseklik */
}

@media (max-width: 1024px) {
    .tech-col {
        flex: 0 0 calc(20% - 20px); /* Daha küçük ekranlarda 5 kolon göster */
    }
}

@media (max-width: 768px) {
    .tech-col {
        flex: 0 0 calc(33.33% - 20px); /* Daha küçük ekranlarda 3 kolon göster */
    }
}

@media (max-width: 480px) {
    .tech-col {
        flex: 0 0 calc(50% - 20px); /* Mobil cihazlar için 2 kolon göster */
    }
}



/* RENK SEÇİM ALANI */
.colorlistte {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}

.product-colors span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
}

/* CAROUSEL STİLLERİ */
.carousel {
  width: 100%;
  overflow-x: auto;
  padding: 20px 0;
}

.carousel__container {
  display: flex;
 
}

/*.carousel-item {
  flex: 0 0 120px;
  border-radius: 8px;
  overflow: hidden;

}*/

/* RESPONSIVE TASARIM */
@media (max-width: 992px) {
  .containerP {
    flex-direction: column;
    max-width: 95%;
  }
    .ProductImage {
        flex: 1;
        max-width: 100%;
        height: auto;
        position: absolute;
        display: block;
        transform: rotate(0deg);
    }
    .containerP .imgBx {
        width: 106%;
        padding: 35px;
    }
  
  .containerP .imgBx img {
    transform: rotate(0deg);
   
  }
}

@media (max-width: 768px) {
  .containerProduct {
    padding-top: 100px;
    gap: 20px;
  }
  
  .tech-col {
    flex: 0 0 calc(13% - 10px);
  }
  
  .product-colors span {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .containerP .details {
    padding: 20px;
  }
  
  
  
  /*.carousel-item {
    flex: 0 0 200px;
  }*/
}

/* ÖZEL EFEKTLER */
.product-colors .active {
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

/*.containerP .imgBx:hover img {
    transform: rotate(-90deg) scale(1.05);
    position: fixed;
    top: 50%;
}*/
 .trigger:hover + .effect {
            background-color: darkred;
            transform: scale(1.1);
        }
/* GENEL STİL DÜZENLEMELERİ */
.ProductTitle h2 {
  font-size: 2.2rem;
  color: #333;
  margin: 10px 0;
}
.ProdcutH2 {
    letter-spacing:1px;
    font-size:24pt;
}
.productproperties {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

.SelectColor {
  color: #444;
  font-weight: 600;
  margin-top: auto;
}

/*.TechImg-Tipsize {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
}*/