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;
}