html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #ffffff;
  color: #000;
}

/* Section Title */
h2.section-title {
  margin-top: 80px;
  text-align: center;
  font-size: 32px;
  color: #DAA520;
}

/* Ürünler Grid */
.urunler-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  padding: 0 20px;
}

.urun-card {
  background-color: #001F54;
  color: #fff;
  border-radius: 15px;
  border: 30px solid #001F54;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  overflow: hidden;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.urun-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.urun-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.urun-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.urun-info {
  padding: 20px;
  text-align: center;
}

.urun-info h3 {
  margin-top: 0;
  font-size: 22px;
  color: #DAA520;
}

.urun-info p {
  font-size: 16px;
  line-height: 1.6;
  margin: 10px 0 0;
}

/* Ürün Detay */
.urun-detay {
  padding: 10px;
  background: #ffffff;
  text-align: center;
}

.urun-detay h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #DAA520;
}

.urun-detay .urun-gorsel {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  border-radius: 16px;
}

.urun-detay p {
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.7;
  font-size: 16px;
  color: #4a89f7;
}

/* Başlık */
.alt-baslik {
  font-size: 24px;
  margin: 40px 0 20px;
  text-align: center;
  color: #001F54;
}

/* ANASAYFA - Diğer Ürünler (Kutu görünüm) */
.diger-urunler {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  background: #ffffff;
}

.diger-urun {
  width: 180px;
  text-align: center;
  text-decoration: none;
  color: #f4b400;
  transition: transform 0.3s ease;
}

.diger-urun:hover {
  transform: scale(1.05);
}

.diger-urun img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.diger-urun span {
  display: block;
  margin-top: 10px;
  font-weight: 500;
}

/* SLIDER */
.slider-container {
  position: relative;
  overflow: hidden;
  max-width: 1060px;
  margin: 0 auto;
}

.slider-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 20px;
}

.slide-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.urun-kart {
  width: 240px;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  background: #001F54;
}

.urun-kart img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.urun-kart:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
  color: white;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  border: none;
  color: #001F54;
  font-size: 32px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
}

.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .urunler-content {
    padding: 0 10px;
  }

  .urun-card {
    max-width: 100%;
  }

  .diger-urun {
    width: 140px;
  }

  .diger-urun img {
    height: 140px;
  }
}

@media (max-width: 768px) {
  .urunler-content {
    flex-direction: column;
    align-items: center;
  }

  .urun-detay h1 {
    font-size: 1.6rem;
  }

  .diger-urunler {
    padding: 20px;
  }

  .diger-urun {
    width: 100%;
    max-width: 280px;
  }

  .diger-urun img {
    height: 160px;
  }

  .urun-kart {
    width: 200px;
    height: 260px;
  }

  .slider-btn {
    font-size: 24px;
  }
}

@keyframes slideLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
