@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
body{
    font-family: "Inter", serif!important;
    background: #181818;
  
}
/*Slider*/

/* Arkaplan stili */
.hero-bg {
  /*background-image: url("../slider_bg.png");*/
  background-size: cover;
  min-height: calc(100vh - 100px); /* Tam ekran yüksekliğinden biraz daha az */
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}


@media (max-width: 768px) {
  .hero-bg {
    background-position: center top; /* Mobilde yukarıdan başlat */
    background-attachment: scroll; /* Mobil performansı için kaydırılabilir yap */
  }
}

.product-image {
  margin-top: 50px;
  width: auto;
  height: auto;
  max-width: 100%;
}


/* Metin ve görsel alanına rahatlıkla gözükmesi için paddingler */
.hero-content {
  padding: 80px 20px;
  /*max-width:1460px;*/
}

.res-image{
        aspect-ratio: 4 /3;
    object-fit: cover;
}
/* Büyük başlık için responsive boyutlamalar */
.hero-title {
  color: #e40513;
  font-family: "Inter", serif!important;
  font-weight: 800!important;
  font-weight: bold;
  line-height: 0.9;
  font-size: 70px;
}

/* Orta boyutlu ekranlarda (md) ve yukarısında farklı boyutlandırma */
@media (min-width: 768px) {
  .hero-title {
    font-size: 80px;
  }
  .hero-subtitle {
    font-size: 40px;
  }
}

/* Küçük ekranlarda yazılar otomatik küçüleceği için ayrıca müdahale etmeye gerek yok.
         Daha da ince ayar isterseniz xs/sm ekranlar için de ayrıca @media ekleyebilirsiniz. */

.hero-subtitle {
  color: #fff;
  font-family: "Inter", serif!important;
  font-weight: 100;
  font-size: 50px;
}

.hero-text {
  color: #fff;
  font-size: 20px;
  margin-top: 40px;
  line-height:25px;
  font-family: "Inter", serif!important;
  font-weight: 100;
}

.hero-button {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 5px;
    border: 2px solid #e40513;
    color: #e40513;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero-button:hover {
  background-color: #e40513;
  color: #fff;
}

.product-image {
   /*max-width: 600px;*/
    margin-top: 50px;
    
  }
 /* 975px'in altında genişliği %100 yap */
 @media (max-width: 975px) {
     .owl-slider{
          position:unset!important;
          bottom:0px;
      }
    .product-image {
      min-width: auto !important; /* inline'da yazan min-width'ü geçersiz kılar */
      width: 100% !important;
    }
    .hero-title{
        font-size:60px;
    }
  }



    /* Carousel kontrollerini üstte/ortada göstermek için örnek stil
       (dilerseniz bunları değiştirebilirsiniz) */
       .owl-nav {
        position: absolute;
        width: 100%;
        top: 0;
        display: flex;
        justify-content: space-between;
      }
      .owl-nav button {
        background: rgba(0,0,0,0.5);
        color: #fff;
        border: none;
        margin: 10px;
        padding: 10px 15px;
        cursor: pointer;
      }
      .owl-dots {
        text-align: center;
        margin-bottom: 20px;
        margin-top: 20px;
      }
      .owl-dot span {
        width: 12px;
        height: 12px;
        background: #ccc;
        display: inline-block;
        margin: 5px;
        border-radius: 50%;
      }
      .owl-dot.active span {
        background: red;
      }
      
      .owl-slider{
          position:absolute;
          bottom:0px;
      }
/*slider*/

/* ürünler alanı */

/* Arka plan koyu renk, metinler açık renk olsun diye */
.product-section {
    color: #fff;
  }
  
  /* Ürün başlığı */
  .product-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
  }
  
  /* Ürün görseli (Bootstrap .img-fluid ile zaten responsive olur) */
  .product-img {
    aspect-ratio: 4 / 4;
    height: 200px;
    width: 100%;
    object-fit: contain;
  }
  
  /* Butonların temel görünümü */
  .product-btn {
    border: 2px solid;
    background: transparent;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 200;
  }
  
  /* Kırmızı buton */
  .product-btn-red {
    border-color: #ff3b3b;
    color: #ff3b3b;
  }
  .product-btn-red:hover {
    background-color: #ff3b3b;
    color: #fff;
  }
  
  /* Mavi buton */
  .product-btn-blue {
    border-color: #0190ff;
    color: #0190ff;
  }
  .product-btn-blue:hover {
    background-color: #0190ff;
    color: #fff;
  }
  
  /* Yeşil buton */
  .product-btn-green {
    border-color: #00c851;
    color: #00c851;
  }
  .product-btn-green:hover {
    background-color: #00c851;
    color: #fff;
  }
  
  /* Bölüm ana başlık */
  .section-main-title {
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
  }
  
  /* Alt açıklama metni */
  .section-subtitle {
    font-size: 20px;
    font-weight:100;
    color: #ccc;
    margin: 0 auto; /* Metnin ortalanması için */
  }
  
  /* İkon görseli için */
  .icon-wrapper {
    display: flex;
    justify-content:center;
    align-items: center;
  }
  .icon-img {
    max-width: 30px;
    max-height: 30px;
    object-fit: contain;
  }
  .icon-text {
    font-size: 1.4rem;
    font-weight: 200;
    color: #ccc;
    margin:0px;
    padding-left:10px;
  }
  
  .product-img-home{
          object-fit: contain;
    aspect-ratio: 2 / 3;
    max-width: 200px;
  }

  /* Mobilde sadece bu owl-carousel için */

@media (max-width: 767px) {
      .product-carousel{
      height: 500px;
    justify-content: center;
    align-items: center;
    display: flex!important;}
    
    .product-carousel .owl-stage-outer{
            height: 500px;
    flex-direction: column;
    display: flex
;
    justify-content: center;
        
    }
  .product-carousel .item {
      transition: transform 0.3s ease, filter 0.3s ease;
      filter: blur(1px);
      opacity: 0.7;
      transform: scale(1.2);
  }

  /* Aktif öğe */
  .product-carousel .owl-item.active.center .item {
      filter: blur(0);
      opacity: 1;
      transform: scale(2);
      text-align: center;
  }
  
     .product-carousel .owl-item .product-title {
 opacity:0;
  }
  
   .product-carousel .owl-item .product-btn {
 opacity:0;
  }
  
    .product-carousel .owl-item.active.center .product-title {
 opacity:1;
  }
  
   .product-carousel .owl-item.active.center .product-btn {
 opacity:1;
  }

  .owl-carousel.owl-slider  .owl-stage-outer{
    height: 100%;
    overflow: hidden;
    padding-top: 100px;
  }

  .product-btn{
    transform: scale(0.5);
    padding:5px;
  }

  .product-title{
    font-size: 14px;
    text-align: center;
  }

  .section-main-title{
    font-size: 16px;
    font-weight: 100;
  }

  .section-subtitle{
    font-size: 12px;
    font-weight: 100;
  }
}

/* ürünler alanı */  

/* habeeler alanı */

.news-section {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .owl-news .owl-stage-outer{
      border-radius:30px;
  }

  /* haberler alanı*/

  /*footer alanı*/

  /* Footer'in genel arka plan ve konumu */
.footer-section {
    background-color: #181818; /* Siyah arka plan */
    color: #fff;
    /* Altta ince kırmızı şerit */
    position: relative;
  }
  .footer-section::after {
    content: "";
    display: block;
    width: 100%;
    height: 5px; /* Kırmızı çizgi kalınlığı */
    background-color: #ff0000; /* Kırmızı şerit rengi */
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  /* Başlıklar ve metinler */
  .footer-title {
    font-size: 0.95rem;
    font-weight: 100;
    color: #fff;
    margin-bottom: 1rem;
  }
  .footer-desc {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;

    line-height: 1.4;
  }
  .footer-phone {
    font-size: 1.5rem;
    margin-top: 1rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 400;
  }
  .footer-email {
    font-size: 0.95rem;
    font-weight: 100;
    color: #ccc;
  }

  .footer-p{
    font-size: 12px;
    color: #fff;
  }
  
  /* E-bülten input */
  .footer-input input.form-control {
    background-color: transparent;
    border: 1px solid #666;
    border-radius: 25px;
    color: #fff;
  }
  .footer-input input.form-control:focus {
    box-shadow: none;
    border-color: #fff;
    outline: none;
  }
  
  /* Katıl Butonu */
  .footer-btn-join {
    border-radius: 25px;
    text-transform: uppercase;
    font-size: 0.9rem;
  }
  
  /* Teklif Al Butonu */
  .footer-btn-offer {
    border-radius: 25px;
    text-transform: uppercase;
    font-size: 0.9rem;
    background-color: #eb1d22;
  }
  
  /* Logo (resim) */
  .footer-logo-img {
    max-height: 40px;
    object-fit: contain;
  }
  
  /* Responsive düzeltmeler (isteğe bağlı) */
  /* Örn: Çok küçük ekranlarda yazı boyutlarını biraz azaltmak isterseniz */
  @media (max-width: 576px) {
    .footer-phone {
      font-size: 1.2rem;
    }
    .footer-title {
      font-size: 1rem;
      text-align:center;
    }
    .footer-section::after {
      height: 3px; /* Mobilde kırmızı şeridin kalınlığını ufaltın */
    }
    
    .footer-desc {
   text-align:center;
}

.footer-contact{
    text-align:center;
}

.footer-ebulten{
    text-align:center;
}

.footer-btn-join{
    right:0px!important;
}
  }
  
  .footer-menu li a{
      color:#fff;
  }
  /* footer alanı */

  /* 3 lü banner alanı */

  /* Arka plan koyu renk, yazı açık renk */
.gallery-promo-section {
    background-color: #181818; /* Örnek koyu gri/siyah ton */
    color: #fff;
    margin-bottom:50px;
  }
  
  /* Her kart için */
  .custom-card {
    position: relative;  
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 20px;  /* Kenarların yuvarlanma derecesi */
    min-height: 300px;    /* Kartın minimum yüksekliği */
    overflow: hidden;     /* Zoom esnasında taşan kısımlar gizlensin */
    transition: transform 0.5s ease; 
  }
  
  /* Kartın üzerinde yazı vb. alan */
  .custom-card-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2; /* Arka plandaki pseudo-elementten üste */
  }
  
  /* Kart başlık stili */
  .custom-card-title {
    font-size: 1.2rem;
    font-weight: 200;
    color: #fff;
    margin: 0;
  }
  
  /* Youtube ikonu örnek stili */
  .yt-icon {
    max-width: 100px;
    height: auto;
  }
  
  /* Kartın karartma katmanı (pseudo-element) */
  .custom-card::after {
    content: "";
    position: absolute;
    inset: 0; /* top, left, bottom, right = 0 */
    background-color: rgba(0, 0, 0, 0.2); 
    transition: background-color 0.5s ease;
  }
  
  /* Hover durumunda */
  .custom-card:hover {
    transform: scale(1.03); /* Hafif büyüme */
  }
  
  .custom-card:hover::after {
    background-color: rgba(0, 0, 0, 0.4); /* Biraz daha koyu */
  }
  /* 3 lü banner */

  .my-hero-fade {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.8s ease;
  }
  
  .my-hero-fade.show {
    opacity: 1;
    transform: translateY(0);
  }
  

/* 3lü banner*/

/* Kurumsal */
/* Ana bölüm: Siyah zemin, beyaz yazı */
.about-section {
  background-color:#181818;
  color: #fff;
  overflow: hidden; /* Dikey yazı ve resimler dışa taşmasın diye */
  
}

/* Dikey yazı (sol tarafta dikey döndürülmüş) */
.vertical-text {
  position: absolute;
  top: 66%;
  left: 50px;
  transform: rotate(-90deg);
  transform-origin: left top;
  font-size: 2.6rem;
  color: rgba(255, 255, 255, 0.1);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 900;
}

/* Sol Kısım: Başlık, metin */
.about-title p {
  font-size: 2rem;
  font-weight: 200;
  margin-bottom: 1rem;
  color: #fff;
  padding: 0px;
  margin: 0px;
  line-height: 10px;

}

.about-left p {
  font-size: 14px;
  font-weight: 200;
  margin-bottom: 1rem;
  color: #fff;

  line-height: 30px;

}
.about-title span {
  text-transform: lowercase;
  font-size: 1rem;
  color: #db0914;
  font-weight: 200; 

}
.about-description {
  font-size: 0.95rem;
  color: #ccc;
  font-weight: 200;
  line-height: 1.6;
}

/* 30'dan fazla ülkeye ihracat */

.world-icon {
  width: 50px;  /* ikonu büyültmek ya da küçültmek için */
  height: auto;
}
.export-text h3,
.export-text h4 {
  font-weight: 900;
  margin: 0;
  line-height: 1.2;
  color: #eb1d22;
  font-size: 25px;
}

.export-text span {
  color: #fff;
  font-size: 25px;
  font-weight: 900;
}

/* Sağ Kısım: Arka planda çizgisel tasarım */
.lines-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../kurumsalbg.png') no-repeat center center;
  background-size: contain; /* Tüm alana yayılması için */
}

/* Bina görseli sağ alt */
.building-image {
  position: relative;
  bottom: 0;
  text-align: end;
  left: 12px;
  
}
.building-image img {
  width: 70%;
  height: auto;
  object-fit: cover;
}

.about-left{
  padding: 50px;
}




@media (max-width: 768px) {
  .m-hide {
    display: none;
  }
  .building-image img{
    width: 80%;
  }
}

@media (min-width: 768px) {
  .export-info{
    position: relative;
    top: 80%;
  }
}

/* kurumsal */

/* Ürünler menüsünde mega menu içeriği */
/* Üst düzey li */
.mega-parent {
  position: static; /* Child (mega-menu) body'ye göre konumlanabilsin */
}

/* Mega menu (başlangıçta gizli + animasyon başlangıç değeri) */
.mega-menu-content {
  /* Temel konumlandırma */
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100vw;
  z-index: 9999;

  /* Arkaplan ve stil */
  background-color: #1a1a1ae6; 
  backdrop-filter: blur(1px);
  margin: 0;
  padding: 0;
  list-style: none;

  /* Görünmez / tıklanamaz */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  /* Hafif kaymış konum (başlangıç) */
  transform: translate(-26%, 10px);

  /* Geçiş süre/efekti */
  transition: 
    opacity 0.4s ease, 
    transform 0.4s ease,
    visibility 0.4s;
}

/* Hover ile görünür hale gelsin (fade + slide) */
.mega-parent:hover .mega-menu-content {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-26%, 0); /* Biraz yukarı ya da istediğiniz yöne kaydırır */
}

/* İç kısım (örnek) */
.product-section {
  background-color: #181818;
  color: #fff;
  padding: 1rem; 
}

/* Soldaki kategori listesi */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-list li {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: background-color 0.3s;
}
.category-list li:hover {
  background-color: #111;
}
.category-list li.active {
  background-color: #252627;
  color: #ff0000;           /* Kırmızı yazı */
  font-weight: 600;
}

/* Tab içerikleri (sağ sütun) */
.tab-content {
  display: none; 
}
.tab-content.active {
  display: block;
}

/* Ürün Resimleri */
.product-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.product-name {
  text-align: center;
  margin-top: 0.5rem;
  color: #fff;
}

@media (max-width: 768px) {
  .mega-menu-content {
    position: relative;
    top: 100%;
    left: 99px;
    display: none;
    background: transparent;
    visibility: visible;
    opacity: 1;
  }
}

/* header menü*/

/* ürün detay*/

/* Ürün Görseli */
.product-img {
  max-height: 150px;
  object-fit: contain;
  aspect-ratio: 4 / 4;
}

/* Ürün Başlıkları */
.product-title {
  font-size: 1.5rem;
  font-weight: 200;
  color: #fff;
}

.product-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
}

/* Bilgi Listesi */
/* Accordion Listesi */
/* Accordion Listesi */
.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  font-size: 1.2rem;
  margin: 1rem 0;
  cursor: pointer;
  position: relative;
  padding: 0.5rem;
  transition: color 0.3s ease;
  
  border-radius: 5px;
  color: #fff;
}

.info-list li:hover {
  color: #ed1c21;
}

.info-list li.active {
  color: #ed1c21;
}



.info-list li span {
  float: right;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.info-list li:hover span {
  transform: rotate(90deg);
}

/* Accordion İçerik */
.accordion-content {
  font-size: 1rem;
  color: #ccc;
  margin-top: 10px;
  padding-left: 15px;
  overflow: hidden; /* Taşan içerikleri gizler */
  max-height: 0px; /* Kapalı durum için yükseklik 0 */
  min-height: 0px; /* Kapalı durum için yükseklik 0 */
  opacity: 0; /* Kapalı durum için şeffaflık */
  transition: min-height 0.5s ease, opacity 0.5s ease; /* Yumuşak geçişler */
}

/* Açık Accordion İçeriği */
.info-list li.active .accordion-content {
min-height: 50px; /* İçeriğin doğal maksimum yüksekliği */
  opacity: 1; /* Görünür */
  transition: min-height 0.5s ease, opacity 0.5s ease; /* Yumuşak geçişler */
  max-height:100%;
}



/* Fotoğraf Alanı */
.photo-box {
  background-color: #111;
  color: #fff;
  border-radius: 10px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s, background-color 0.3s;
  cursor: pointer;
  padding: 10px;
}

.photo-box.active {
  border-color: #ed1c21;
  background-color: #222;
  transform: scale(1.1);
}

.photo-box img {
  max-width: 100%;
  max-height: 100%;
  
  object-fit: contain;
}


/* Sağ Alt Çizgisel Background */
.bottom-background {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  z-index: -1;
  pointer-events: none;
}

.background-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  animation: fadeIn 2s ease-in-out;
}

/* Animasyon */
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 0.3;
  }
}


/* Ana eleman */
.short-border {
  position: relative;
  
  height: 50px; /* Elemanın yüksekliği */
  
  padding: 20px; /* Çevresine boşluk bırakmak için */
}

/* Üst ve sol kısa border */
.short-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px; /* Üst sınır uzunluğu */
  height: 2px; /* Çizgi kalınlığı */
  background-color: red;
}

.short-border::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px; /* Sol sınır genişliği */
  height: 20px; /* Çizgi uzunluğu */
  background-color: red;
}

.product-subtitle{
  top: -30px;
  position: relative;
  font-weight: bolder;

}

.p-20{
  padding: 20px;
}
@media (max-width: 768px) {
  .short-border {
   
    padding: 10px; /* Çevresine boşluk bırakmak için */
  }

  .product-title{
    font-size: 1.4rem;
    font-weight: 200;
    text-align: left;
  }
  .p-20{
    padding: 11px;
  }
  .product-subtitle{
    top: -40px;
    position: relative;
    font-weight: bold;
  
  }
}



.fancybox-inner,{
  position: unset;
}

/*iletişim*/

/* Başlıklar */
.section-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #eb1d22;
}

.section-subtitle {
  font-size: 1rem;
  color: #ccc;
}

/* İletişim Bilgileri */
.contact-info li {
  font-size: 1rem;
  line-height: 1.5;
}

.contact-info .icon {
  width: 20px;
  
}

/* Form Elemanları */
.form-input {
  background-color: transparent;
  border: 1px solid #666;
  border-radius: 5px;
  color: #fff;
  padding: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
  border-color: #eb1d22;
  box-shadow: 0 0 5px rgba(255, 77, 77, 0.5);
  outline: none;
}

/* Gönder Butonu */
.btn-send {
  background-color: #eb1d22;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-send:hover {
  background-color: #e63939;
  transform: translateY(-2px);
}

.color-white{
  color: #fff;
}

/* Genel Ürün Kartı Stilleri */
.product-img-header {
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hover sırasında animasyon */
  border-radius: 5px; /* Hafif yuvarlatma */
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-top: 10px;
  transition: color 0.3s ease; /* Hover sırasında renk değişimi */
}

/* Hover Animasyonu */
.product-img-header:hover {
  transform: scale(0.9); /* Görsel büyür */
  
}

.product-name:hover {
  color: #eb1d22; /* Hover sırasında metin rengi kırmızıya döner */
}

/* Kartın Tamamına Hover Etkisi */
.tab-content .col-md-4:hover {
  transform: translateY(-5px); /* Kart hafifçe yukarı çıkar */
  transition: transform 0.3s ease;
}


/* bayiler */

/* Başlıklar */
.form-title {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  width: 200px;
  padding: 10px;
  background: #eb1d22;
  border-radius: 14px;
}

.form-subtitle {
  font-size: 1rem;
  color: #ccc;
}

/* Form Elemanları */
.form-input {
  background-color: transparent;
  border: 1px solid #666;
  border-radius: 5px;
  color: #fff;
  padding: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
  border-color: #eb1d22;
  box-shadow: 0 0 5px rgba(255, 77, 77, 0.5);
  outline: none;
}

/* Gönder Butonu */
.btn-send {
  background-color: #eb1d22;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-send:hover {
  background-color: #e63939;
  transform: translateY(-2px);
}

/* Alt İletişim Bilgileri */
.contact-subtitle {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 30px;
}

.contact-icon {
  font-size: 2rem;
  color: #eb1d22;
  margin-bottom: 10px;
}

.white-img{
  filter: brightness(0) invert(1);
}

.contact-item img{
  width: 24px;
  aspect-ratio: 4/4;
  object-fit: contain;
}

.image-preview-container {
    position: relative;
    display: inline-block;
}

.image-preview-container img {
    width: 300px; /* Ana resim boyutu */
    cursor: pointer;
}

.image-preview {
    display: none;
    position: absolute;
    top: 0px;
    left: 320px;
    width: 100%;
    height: 400px;
    border: 1px solid #ccc;
    background-color: #fff;
    scale: 1.4;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

@media (max-width: 768px) {
 .image-preview {
    display: none;
    position: absolute;
    top: 380px;
    left: 0px;
    width: 100%;
    height: 400px;
    border: 1px solid #ccc;
    background-color: #fff;
    scale: 1.4;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}
}


.accordion-content ul li{
    font-size:12px;
}

.language-select {
    margin-top: 10px;
    display: inline-block;
}

.language-select select {
width: 40px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 40px;
    padding: 10px;

}

.gallery-img{
     
    aspect-ratio: 4 / 4;
     border-radius: 25px;
    object-fit: cover;
}

.gallery-tab-title{
      background: transparent !important;
    border-top: none !important;
    border-left: none !important;
    border-bottom: none !important;
    border-right: 2px solid #fff !important;
    color: #fff !important;
}

.gallery-tab-title:hover{
      background:#ec1d22!important
}

.gallery-tab-title.active{
      background:#ec1d22!important
}

.nav-tabs{
    border-bottom:none!important;
}

hr{
        border-top: 2px solid #fff !important;
    opacity: 1;
}

.detail-img{
        min-height: 450px!important;
}

.card-c{
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    padding: 20px;
    background: #1f1e1e;
}