@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;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-items: center;
  gap: 35px;
  padding: 60px 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}

.feature-box {
  background: #fff;
  border-radius: 16px;
  padding: 15px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  width: 100%;
  max-width: 180px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 51, 153, 0.15), rgba(255, 153, 204, 0.05));
  transition: all 0.5s ease;
  z-index: 0;
}

.feature-box:hover::before {
  left: 0;
}

.feature-box:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.feature-box i {
  font-size: 34px;
  color: #ff3399;
  background: linear-gradient(135deg, #ff3399, #ff66cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 1;
}

.feature-text {
  font-size: 13.5px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
  z-index: 1;
}

/* 🌙 Koyu tema */

/* 📱 Tablet ve mobil */
@media (max-width: 1024px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 40px 20px;
  }
}

@media (max-width: 600px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px 15px;
  }

  .feature-box {
    max-width: 160px;
    padding: 20px 15px;
  }

  .feature-box i {
    font-size: 26px;
  }

  .feature-text {
    font-size: 14px;
  }
}


  }
  #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(5, 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: 0px;
  }

  .product-card img {
      max-width: 85%;
      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: 14px;
    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;
}

.category-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  background: #fff;
  padding: 50px 30px;
}

/* Kartlar */
.category-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  background: #fff;
  padding: 50px 30px;
}

/* 🧩 Kart yapısı */
.category-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 380px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 15px 20px;
  position: relative;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* 🖼️ Görsel */
.category-card img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
  margin-left: 15px;
}

.category-card:hover img {
  transform: scale(1.05);
}

/* 📝 Yazı */
.category-text {
  flex: 1;
  padding-right: 15px;
  text-align: left;
}

.category-text h2 {
  color: #e6007e;
  font-size: 20px;
  margin-bottom: 6px;
  font-weight: 600;
}

.category-text p {
  color: #444;
  font-size: 14px;
  line-height: 1.4;
}

/* 💻 Tablet düzeni */
@media (max-width: 1024px) {
  .category-card {
    width: 320px;
    height: 130px;
  }

  .category-card img {
    width: 100px;
    height: 100px;
  }

  .category-text h2 {
    font-size: 18px;
  }

  .category-text p {
    font-size: 13px;
  }
}

/* 📱 Mobil düzen (metin solda, resim sağda küçük kalsın) */
@media (max-width: 768px) {
  .category-section {
    gap: 20px;
    padding: 30px 15px;
  }

  .category-card {
    width: 100%;
    max-width: 360px;
    height: 110px;
    padding: 12px 15px;
    flex-direction: row; /* yatay kal */
    justify-content: space-between;
  }

  .category-card img {
    width: 80px;
    height: 80px;
    margin-left: 10px;
  }

  .category-text {
    padding-right: 10px;
  }

  .category-text h2 {
    font-size: 16px;
  }

  .category-text p {
    font-size: 13px;
    line-height: 1.3;
  }
}

/* 📱 Çok küçük ekranlar (480px altı) */
@media (max-width: 480px) {
  .category-card {
    height: 100px;
  }

  .category-card img {
    width: 65px;
    height: 65px;
  }

  .category-text h2 {
    font-size: 15px;
  }

  .category-text p {
    font-size: 12.5px;
  }
}



		/* Ürün grid'inin ortasında tam satır banner */
.product-banner-row {
  grid-column: 1 / -1; /* grid'in tamamını kapla */
  margin: 40px 0;
  display: block;
}

/* Banner genel stil */
#html3-blok {
  display: flex;
	background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#html3-blok a {
  position: relative;
  text-decoration: none;
  color: #000;
  overflow: hidden;
}

#html3-blok img {
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

#html3-blok a:hover img {
  transform: scale(1.05);
}

#html3-blok .html-title {
  position: absolute;
  bottom: 10px;
  left: 15px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  line-height: 1.2em;
}

#html3-blok .html-title span {
  font-size: 26px;
  color: #ff3399;
}
.banner-left img {
  width: 80%;
  height: auto; /* orantıyı korumak için */
}

/* Mobil uyum */
@media (max-width: 992px) {
  #html3-blok {
    flex-direction: column;
  }

  #html3-blok .col-md-6,
  #html3-blok .col-md-12 {
    width: 100%;
  }

  #html3-blok .html-title {
    font-size: 18px;
    bottom: 8px;
  }
}
/* 📱 Mobil düzen (metin solda, resim sağda küçük kalsın) */
@media (max-width: 768px) {
.banner-left img {
  width: 100%;
  height: auto; /* orantıyı korumak için */
}
	#html3-blok {
    display: flex
;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: none;
}
}

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Poppins:wght@400;600&display=swap');

.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* arka plan aurora efekti */
#backgroundAurora {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: radial-gradient(circle at 20% 30%, #bf070e, transparent 70%),
              radial-gradient(circle at 80% 70%, #bf070e, transparent 70%),
              radial-gradient(circle at 50% 50%, #e371f5, transparent 70%);
  animation: aurora 15s ease-in-out infinite alternate;
  filter: blur(90px);
}

@keyframes aurora {
  0% { transform: scale(1) rotate(0deg); filter: blur(80px); }
  50% { transform: scale(1.2) rotate(5deg); filter: blur(100px); }
  100% { transform: scale(1.1) rotate(-5deg); filter: blur(90px); }
}

/* parlayan partiküller */
.particles::before, .particles::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.3;
  animation: sparkle 8s linear infinite;
  z-index: 1;
}
@keyframes sparkle {
  0% { transform: translate(0,0); }
  100% { transform: translate(-20px, -20px); }
}

/* slide */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide.active { opacity: 1; }

/* yazılar */
.content {
  text-align: center;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.08);
  padding: 40px 60px;
  border-radius: 30px;
  box-shadow: 0 0 40px rgba(255,255,255,0.2);
  animation: float 6s ease-in-out infinite alternate;
}
@keyframes float {
  from { transform: translateY(0px); }
  to { transform: translateY(-12px); }
}

.glow-text {
  font-family: 'Great Vibes', cursive;
  font-size: 4rem;
  color: #fff;
  text-shadow:
    0 0 10px #ffb3ec,
    0 0 20px #ffc3a0,
    0 0 40px #ff77d9;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 15px #ffb3ec, 0 0 25px #ffc3a0, 0 0 50px #ff77d9; }
  50% { text-shadow: 0 0 25px #ffe4ec, 0 0 40px #fff0f5, 0 0 80px #fff; }
}

.subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-top: 10px;
  font-weight: 400;
}

/* oklar */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  color: #ff66b2;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  z-index: 10;
  transition: transform .2s ease, background .2s;
}
.hero-arrow:hover { transform: translateY(-50%) scale(1.1); background: #fff; }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* noktalar */
.hero-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 11;
}
.hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: none;
  cursor: pointer;
  transition: transform .2s, background .2s;
}
.hero-dots button.active {
  background: #ff66b2;
  transform: scale(1.3);
}

/* mobil */
@media (max-width: 768px) {
  .glow-text { font-size: 2.4rem; }
  .content { padding: 20px 30px; }
  .hero-arrow { width: 40px; height: 40px; font-size: 18px; }
}
