body {
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
}

.fixed-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: #007bff;
  color: white;
  padding: 10px 0;
  text-align: center;
  font-size: 1.2em;
}

.category-scroll {
  overflow-x: scroll;
  white-space: nowrap;
  padding: 10px 0;
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
}

.category-scroll::-webkit-scrollbar { 
  display: none;  /* Safari and Chrome */
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.category-grid .category-item {
  flex: 0 0 30%; /* Her bir kategori itemi genişliği %30 olacak şekilde ayarlandı */
  margin: 10px;
}

.category-item {
  display: inline-block;
  padding: 10px;
  cursor: pointer;
  border-radius: 10px;
  margin: 0 10px;
  transition: all 0.3s ease;
  text-align: center;
}

.category-item img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.category-item.active, .category-item:hover {
  border: 2px solid #007bff;
  background-color: #007bff;
  color: white;
}

.category-item p {
  margin-top: 5px;
  font-size: 1em;
  font-weight: bold;
}

.card {
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  padding: 15px;
}

.card:hover {
  transform: scale(1.05);
}

.card-title {
  color: #007bff;
}

.card-text {
  font-size: 0.9em;
  color: #555;
}

.card-text.price {
  font-size: 1.2em;
  color: #333;
  margin-top: 10px;
}

.card-img-top {
  width: 100%;
  height: 200px; /* Sabit yükseklik */
  object-fit: cover; /* Resmin tamamını görmek için */
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

footer {
  background-color: #007bff;
  color: white;
  padding: 10px 0;
  text-align: center;

}

footer a {
  color: white;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: white;
  padding: 10px;
  border-radius: 50%;
  display: none;
  z-index: 1000;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 30px;
  font-size: 24px;
  transition: all 0.3s ease;
}

.scroll-to-top:hover {
  background-color: #0056b3;
  color: white;
}

.whatsapp-button {
      position: fixed;
      bottom: 20px;
      left: 20px;
      z-index: 1000;
      background-color: #25d366;
      color: white;
      padding: 10px;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      text-decoration: none;
    }
    .whatsapp-button:hover {
      background-color: #1eb749;
      color: white;
    }
    .whatsapp-icon {
      font-size: 28px;
    }
/* Modal İçeriği */
#imageModal .modal-content {
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Kapatma Butonu */
#imageModal .close {
    font-size: 1.5rem;
    color: #333;
    opacity: 0.8;
    transition: opacity 0.3s;
}

#imageModal .close:hover {
    opacity: 1;
}

/* Başlık ve Açıklama */
#imageModal h4 {
    font-family: 'Arial', sans-serif;
    color: #0056b3;
}

#imageModal p {
    font-size: 1rem;
    color: #6c757d;
}

/* Ekstra Bilgi Alanı */
.modal-extra-info {
    background: #fdfdfd;
    border: 1px solid #e9ecef;
    border-radius: 10px;
}

.modal-extra-info .info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.modal-extra-info .info-item:last-child {
    border-bottom: none;
}

.modal-extra-info .info-title {
    font-size: 1.2rem;
    color: #495057;
    font-weight: 600;
}

.modal-extra-info .info-text {
    font-size: 1rem;
    color: #212529;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Gölge ve Yuvarlaklık */
.modal-extra-info {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0


