@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
/* Modal açıldığında body için overflow'u gizler ve z-index'i sıfırlar */
body.modal-open {
    overflow: hidden;
    position: relative;
    z-index: -1; /* Body içeriğinin modalın arkasında kalmasını sağlar */
  }

  /* Ürün kartı */
.product-card {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.3s ease;
    height: 100%;
  }
  
  /* Ürün kartı hover efekti */
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  /* Ürün kartı içindeki resim */
  .product-card img {
    width: 100%;
    border-radius: 5px;
  }
  
  .product-card .button {
    width: 100%;
    border-radius: 10px;
    border: none;
    padding: 5px;
    transition: transform ease 0.3s;
    font-size: 15px;
    font-family: "Poppins", sans-serif !important;
  }
  
  .product-card .button:hover {
    transform: scale(0.9);
  }
  
  
/* Ürün kartı başlığı */
.product-card h2 {
  font-size: 1.5em;
  margin-top: 10px;
}

/* Ürün kartı açıklaması */
.product-card p {
  margin-top: 5px;
  color: #666;
}

/* Modal Overlay (arkaplan) */
.modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Daha koyu bir arkaplan */
  animation: fadeIn 0.3s;
}

.window {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f2f2f2;
  width: max-content;
  height: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.3s;
  overflow: hidden;
}
/* Modal içeriğinin kapsayıcısı */
.modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff !important;
  padding: 50px;
  border-radius: 20px !important;
  width: 85% !important;
  max-width: 1200px;
  height: 85% !important;
  box-shadow: none !important;
  border: none !important;
  animation: slideUp 0.3s;
  overflow-y: auto;
  overflow-x: hidden; /* Yatay scroll'u gizle */
}

/* Custom scrollbar stil tanımlamaları */
.modal-content::-webkit-scrollbar {
  width: 12px; /* Scrollbar genişliği */
}

.modal-content::-webkit-scrollbar-thumb {
  background-color: #00649d; /* Scrollbar'ın tutamaç rengi */
  border-radius: 10px; /* Köşe yuvarlatma */
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background-color: #003b63; /* Hover'da değişen renk */
}

.modal-content::-webkit-scrollbar-track {
  background-color: #f2f2f2; /* Scrollbar yolu */
}

/* Close düğmesi */
.close {
  color: #00649d !important;
  font-size: 45px !important;
  font-weight: bold !important;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: calc(50% - 550px); /* Modal içeriğin yarısı kadar sola kaydır */
  z-index: 99999 !important;
  opacity: 1 !important;
  transition: right 0.3s; /* Geçiş efekti */
}

/* Close düğmesi hover efekti */
.close:hover,
.close:focus {
  color: #003b63;
}

/* Fade in animasyonu */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Slide up animasyonu */
@keyframes slideUp {
  from {
    transform: translateY(100%) translateX(-50%); /* Yeni başlangıç noktası */
    opacity: 0;
  }
  to {
    transform: translateY(100%) translateX(-50%); /* Yeni bitiş noktası */
    opacity: 1;
  }
}

/* Container padding */
.modal-content .container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Background ve padding ayarlamaları */
.modal-content .bg-light {
  background-color: #efefef !important;
}
.modal-content h2 {
  color: #00649d;
  font-family: "Poppins", sans-serif !important;
}
/* Liste stili */
.modal-content .list-unstyled {
  padding-left: 0;
  list-style: none;
}

.modal-content .list-unstyled li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

/* Ürün özelliklerinin başlıkları */
.modal-content .list-unstyled li strong {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  font-family: "Poppins", sans-serif !important;
}
/* Sekme stilleri */
.tabs {
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  background-color: #f7f7f7;
}

.tablink {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 16px;
  transition: background-color 0.3s;
}

.tablink:hover {
  background-color: #efefef;
}

.tablink.active {
  background-color: #00649d;
  color: #fff;
}

.tab {
  border-top: none;
  width: 100%;
  max-width: 100% !important; /* Tab içeriğinin maksimum genişliği 800 piksel olacak */
  margin: 0 auto; /* İçeriği ortalamak için */
}

.tabcontent {
  padding: 6px 12px;
  border-top: none;
  font-family: "Poppins", sans-serif !important;
}

/* Aktif sekme içeriği */
.active-content {
  display: block;
}
.advantages ul {
  padding: 2rem;
}
.advantages ul li {
  margin-top: 1rem;
  font-family: "Poppins", sans-serif !important;
}
.col7 {
  float: left;
  width: auto;
  margin-right: 3%;
  margin-bottom: 2%;
  text-align: center;
  font-size: 0.8em;
}

.col7.last {
  margin-right: 0;
}

.col7 p {
  margin: 5px 0 10px 0;
  line-height: 1.2em;
}
.smallicon {
  max-height: 50px;
}
.blue {
  color: #007ac9;
}
@media screen and (max-width: 769px) {
  .window {
    width: 100%;
  }
  .modal-content {
    padding: 10px;
  }

  .close {
    top: 5px !important;
    right: 5% !important;
  }
}
@media screen and (max-width: 992px) {
  .close {
    top: 15px;
    right: 5%;
  }
}
