/* General */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fafafa;
  color: #333;
}
p{
  font-size: large;
}

.custom-navbar{
  background-color: #faf9f5;
}

.shop-button {
  padding: 10px;
  /* background-color: #ff9800; */
  background-color: #344F1F;
  color: #fff;
  border-radius: 5px;
  border: none;
  margin: 10px;
}





@media(min-width : 390px) and (max-width : 1200px) {
  .filter button {
    margin: 2%;
  }

}

/* Filter */
.filter {
  display: flex;
  justify-content: center;
  gap: 2%;
  padding: 2%;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.filter button {
  padding: 10px 30px;
  border: none;
  background: #eee;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: bold;
}

.filter button.active,
.filter button:hover {
  background: #ff9800;
  color: white;
}

/* Products */
.products {
  padding: 40px 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 4px 8px rgba(0,0,0,0.05); */
  text-align: center;
  /* transition: transform 0.3s, box-shadow 0.3s; */
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-card h3 {
  margin: 15px 0 5px;
}

.product-card p {
  font-weight: bold;
  color: #ff9800;
  margin-bottom: 15px;
}

/* About */

.cardo-bold {
  font-family: "Cardo", serif;
  font-weight: 900;
  font-style: normal;
}

.cardo-regular {
  font-family: "Cardo", serif;
  font-weight: 400;
  font-style: normal;
}
.about-section{
  /* background-image : url("../assets//images/altin-zincir-arka-plan.png") ; */
  background-color: #ff9800;
  background-size: cover;     /* resmi tüm alana kaplatır */
  background-position: center; /* ortalar */
  background-repeat: no-repeat;
  color: white; /* yazılar arka planda kaybolmasın diye */
  opacity: 0.94;
}



footer {
  background: #faf9f5;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  color: #000;
}

.social-icons {
  margin-top: 10px;
  color: #000;
}

.social-icons a {
  color:  #000;
  margin: 0 10px;
  font-size: 24px;
  transition: color 0.3s ease;
}



.social-icons a:hover {
  color: #ff6600;
  /* Üzerine gelince renk */
}

.product-images {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 10px;
  scroll-behavior: smooth;
}

.product-images img {
  flex: 0 0 100%;
  scroll-snap-align: center;
  border-radius: 10px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  /* transition: background 0.3s; */
}

.dot.active {
  background: #ff9800;
}