@font-face {
  font-family: 'MyFont';
  src: url('./fonts/ProductSans-Medium.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
      text-decoration:none;
  }
a {
      text-decoration:none;
}
.hero {
  height: 80vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Header ve içerik arası mesafe */
  text-align: center;


}
.features {
  margin-top: 0;
  background: white;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 50px 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 10px 10px 20px rgba(0,0,0,0.1);
}

.feature-box i {
  font-size: 32px;
  color: #ff3399;
}

.feature-text {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}

/* 📱 Mobil uyumlu */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
    gap: 20px; /* kutular arası boşluğu azalttık */
    padding: 30px 15px;
  }

  .feature-box {
    flex-direction: column; /* ikon üstte, yazı altta */
    text-align: center;
    max-width: 180px;
    gap: 10px;
  }

  .feature-box i {
    font-size: 26px; /* ikon küçüldü */
  }

  .feature-text {
    font-size: 14px; /* yazı biraz küçüldü */
    line-height: 1.3;
  }
}

  }
  #bg-slider.initializing {
    transition: none !important;
  }
  .products-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 sütun */
  gap: 20px;
}

@media (max-width: 992px) {
  .product-grid {
      grid-template-columns: repeat(2, 1fr); /* Tabletlerde 2 sütun */
  }
}

@media (max-width: 576px) {
  .product-grid {
 
      gap: 12px; /* Kartlar arası boşluğu azalt */
  }

.free-shipping-badge {

    font-size: 12px;
	}
  .section-title {
      font-size: 20px; /* Başlık küçült */
      margin-bottom: 20px;
  }

  .product-card { /* ürün kartına ekstra küçültme */
      font-size: 14px;
      padding: 10px;
  }

  .product-card img {
      max-width: 100%;
      height: auto;
      border-radius: 6px;
  }
}


.product-card {
    background-color: #fff;
  
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.free-shipping-badge {
    position: absolute;
    top: 10px;
   margin-top: auto;
    color: #000000;
    font-size: 18px;
    padding: 0px 10px;
    border-radius: 4px;
    z-index: 1;
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;

    margin-top: 25px;
}

.product-title {
  color: #000000;
  margin: 10px 0 5px;
  font-size: 16px;
  font-weight: 200;
  text-align: left; /* Ortalamayı kaldır */
  min-height: 15px;
  width: 100%; /* Tam genişlik al */
}
.price-cart {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
}


.product-footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 18px;
    font-weight: 200;
    color: #111;
}

.cart-icon {
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}
.product-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    margin-top: 25px; /* istersen kaldır veya azalt */
}
.cart-icon:hover {
    color: #28a745;
}

.no-products {
    text-align: center;
    font-size: 18px;
    color: #888;
    margin-top: 40px;
}
