body {
      margin: 0;
      padding-bottom: 100px;
      background-color: #FFF8EF;
      font-family: sans-serif;
		  overflow-x: hidden; /* Yatay kaymayı engeller */
  box-sizing: border-box;
    }

    .wrapper {
      width: 100%;
      max-width: 960px;
      margin: 0 auto;
      position: relative;
    }

    /* HEADER */
       .header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  color: #fff;
  background-color: #2D3E2F;
		padding: 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
transition: transform 0.6s ease, opacity 0.6s ease;
overflow-x: hidden; /* Yatay kaymayı engelle */
		   max-width: 960px;
}
    /* HEADER */
	header {
		background-color: #2D3E2F;
		padding: 20px;
		color: #fff;
		border-radius: 0 0 20px 20px;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 1000;
		transition: transform 0.6s ease, opacity 0.6s ease; /* Yumuşak geçişler */
		max-width: 960px; /* Maksimum genişlik */
	  margin: 0 auto; /* Ortalar */
		
	}
    .header.hide {
      transform: translateY(-100%);
    }

    .header-title {
      font-size: 18px;
      font-weight: bold;
    }
	.header-bottom {
		display: flex;
		justify-content: lef;
		align-items: center;
		width: 100%;
		margin-top: 0px;
	}
    .icon-button {
      background: none;
      border: none;
      padding: 4px;
      cursor: pointer;
      color: white;
    }
	  /* Ana divi hizalama */
.menu-categories-wrapper {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  padding: 10px;
  width: 100%;
  overflow-x: auto; /* Yatay kaydırma */
  -webkit-overflow-scrolling: touch; /* Mobilde daha iyi kaydırma deneyimi */
  scrollbar-width: none; /* Firefox'ta scroll çubuğunu gizler */
  -ms-overflow-style: none; /* Internet Explorer için scroll çubuğunu gizler */
  box-sizing: border-box; /* Sayfa genişliğini etkileyen faktörleri ortadan kaldırır */
}
	  .menu-categories-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari ve Opera için scroll çubuğunu gizler */
}
/* Her kategoriye ait wrapper */
.menu-category-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Yatayda ortalama */
  align-items: center; /* Dikeyde ortalama */
  text-align: center;
  flex-shrink: 0;
  width: auto;
  height: 100%; /* Tam yükseklik, hizalamayı etkileyebilir */
}
	  /* Kategoriler için stil */
.menu-category-wrapper.active {
  font-weight: bold;
  color: #F27D0C; /* Aktif kategori için renk değişimi */
  text-decoration: underline; /* Aktif kategoriye alt çizgi ekleyebiliriz */
}
	  /* Menü Kategorileri Konteyneri */
.menu-categories {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 20px 0;
  justify-content: flex-start;
  align-items: center;
  scroll-behavior: smooth;
  -ms-overflow-style: none; /* Internet Explorer için kaydırma çubuğu gizleme */
  scrollbar-width: none; /* Firefox için kaydırma çubuğu gizleme */
}
	  .menu-categories::-webkit-scrollbar {
  display: none; /* Chrome, Safari ve Opera için kaydırma çubuğu gizleme */
}

/* Her Menü Kategorisi */
.menu-category {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 64px; /* Sabit daire boyutu */
  height: 64px;
  background-color: #F8D49D;
  border-radius: 50%;
  cursor: pointer;
  margin-bottom: 0px;
  position: relative;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Başlangıçta hafif gölge */
}

.menu-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* İkonlar için stil */
.menu-category-icon {
  font-size: 36px;
  color: #2D3E2F;
  display: flex;
  justify-content: center;
  align-items: center;
	
}

/* Kategori İsimleri */
/* Kategori ismi düzenlemesi */
.menu-category-name {
  font-size: 13px;
  font-weight: bold;
  color: #2D3E2F;
  margin-top: 8px;
  text-align: center;
  position: relative;
  top: 0px;
  display: inline-block;
  width: 100%;
  line-height: 1.2; /* Satırlar arasındaki mesafeyi ayarlıyoruz */
}
	  .menu-category-name span {
  display: block;
}
	  /* Tek kelime olanları tam ortalayacak şekilde hizalama */
.menu-category-name:not(:has(span)) {
  display: flex;
  justify-content: center;
  align-items: center;
}

	  /* Kategoriler için stil */
	  /* Kategori Başlığı */
.category-title {
  font-size: 24px;
  font-weight: bold;
  color: #2D3E2F;
  margin: 20px 0; /* Ürün listesiyle arasında boşluk bırak */
  text-align: left;
  position: relative; /* Kategori başlığının pozisyonunu ayarlıyoruz */
  visibility: visible; /* Başlığın her zaman görünür olmasını sağlıyoruz */
}
.categories {
  display: flex;
  justify-content: space-around;
  padding: 20px;
}

.category-item {
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
}

.category-item:hover {
  text-decoration: underline;
}



/* Ürün Listesi */


/* Ürün Kartı */
.product-card {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: left;
  width: 100%; /* Kartlar tüm genişliği kullanacak şekilde ayarlanır */
	box-sizing: border-box;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-card h3 {
  font-size: 18px;
  margin: 10px 0;
	
}

.product-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

	  
.product-card p.price {
  font-size: 20px;
  color: #5d8c4c;
  margin-bottom: 10px;
    font-weight: bold;
}
.product-card .price {
  font-size: 16px;
  color: #5d8c4c;
  margin-bottom: 10px;
}

.product-card .order-btn {
  background-color: #FF5722;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
	text-align: right;
}

.product-card .order-btn:hover {
  background-color: #D76A03;
}
/* Flexbox düzeni ile p ve button'ı yan yana hizala */
.product-card .button-container {
  display: flex;
  justify-content: space-between; /* Öğeleri sola hizalar */
  gap: 10px; /* Öğeler arasında 10px boşluk bırak */
  align-items: center; /* Yüksekliklerini ortalar */
}
/* Responsive Tasarım */

/* Mobil Görünüm (1 ve 2 kart yan yana) */
@media (max-width: 480px) {
  
}

/* Tablet Görünümü (2 kart yan yana) */
@media (min-width: 481px) and (max-width: 768px) {
  
}

/* Masaüstü Görünümü (3 kart yan yana) */
@media (min-width: 769px) {
  
}
    /* Dil Seçici */
    .lang-dropdown {
      position: relative;
    }

    .lang-toggle {
      background-color: white;
      border: none;
      border-radius: 6px;
      padding: 6px 10px;
      font-size: 14px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      color: #2D3E2F;
    }

    .lang-toggle img {
      width: 20px;
      height: 14px;
    }

/* Dil Listesi Şeffaflık ve Uyumluluk Güncellemesi */
.lang-list {
  display: none;
  position: absolute;
  top: 64px;
  right: 0;
  background: #ffffffcc; /* yarı saydam beyaz */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  z-index: 201;
  border: 1px solid #ddd;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: all 0.3s ease;
  min-width: 140px;
}

.lang-list button {
  width: 100%;
  border: none;
  background: transparent; /* Şeffaf arka plan */
  padding: 10px 14px;
  text-align: left;
  font-size: 14px;
  color: #2D3E2F;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}

.lang-list button:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.lang-list button.active {
  background-color: #2D3E2F;
  color: white;
  font-weight: bold;
}



.lang-list button img,
.lang-toggle img {
  width: 20px;
  height: 14px;
  object-fit: cover;
}
.lang-toggle {
  background-color: transparent; /* Toggle butonu da şeffaf */
  
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: white;
  cursor: pointer;
}
    /* Tost Bildirimi */
    #toast {
      visibility: hidden;
      min-width: 200px;
      background-color: #333;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 10px;
      position: fixed;
      z-index: 300;
      bottom: 100px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 14px;
      opacity: 0;
      transition: opacity 0.5s ease, visibility 0.5s;
    }

    #toast.show {
      visibility: visible;
      opacity: 1;
    }

    /* FOOTER */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 960px;
  background-color: #FFF8EF; /* Şeffaf zemin */
  padding: 14px 20px 18px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.15); /* Hafif gölge ekledik */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 100;
	
}


.footer-group {
  display: flex;
  gap: 0px;
  flex: 1;
  justify-content: space-evenly;
  background: transparent; /* Şeffaf zemin */
  transition: background-color 0.3s ease;
}


    .footer-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      font-size: 12px;
      color: #2D3E2F;
      text-decoration: none;
      position: relative;
    }

    .footer-btn svg {
      width: 28px;
      height: 28px;
      stroke: #2D3E2F;
      stroke-width: 1;
      margin-bottom: 6px;
    }

    .footer-btn.active svg {
      stroke: #4CAF50;
		stroke-width: 2;
    }

    .floating-btn {
      position: absolute;
      top: -34px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #F27D0C;
      width: 64px;
      height: 64px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      z-index: 101;
    }

    .floating-btn svg {
      width: 28px;
      height: 28px;
      stroke: white;
		stroke-width: 2;
    }
	  .floating-btn.active svg {
      stroke: white;
		stroke-width: 2;
    }
	 .floating-btn.active {
      background-color: #4CAF50;
	
    }

    .footer-center {
      position: relative;
      width: 64px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }

    .footer-center span {
      font-size: 13px;
      color: #2D3E2F;
      margin-top: 46px;
    }

    main {
      max-width: 960px;
      margin: 0 auto;
      padding: 20px;
    }
	  main h1 {
  text-align: center;
  font-size: 1.8rem;
  color: #2D3E2F;
  margin: 0px auto 20px auto;
  font-weight: 700;
}
	  main h1.margintop {
  margin-top: 80px;
}
	  /* Loading Text */
.loading {
  text-align: center;
  padding: 20px;
  color: #F27D0C;
  font-size: 18px;
  display: none; /* Başlangıçta gizli */
}
	  /* Tüm öğeleri başlangıçta gizle */

	  
	  /* İçerik */
	.yamac-kirbahcesi-page-container {
	  width: 100%;
      padding: 1rem;
      display: flex;
      justify-content: center;
      margin: 0 auto;
      flex-direction: column;
      align-items: center;
      
		
 
  margin: 0 auto;
		 max-width: 960px;
		
		justify-content: space-between;
		
    }
    .yamac-kirbahcesi-content-block {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 960px;
      padding: 0rem;
      background-color: transparent;
      gap: 1rem;
    }
    .yamac-kirbahcesi-product-image {
      width: 100%;
		
    }
    .yamac-kirbahcesi-product-image img.main-image {
      width: 100%;
      height: auto;
      border-radius: 12px;
      max-height: 480px;
      object-fit: cover;
      display: block;
		position: relative;
  z-index: 1;
    }
	  .yamac-kirbahcesi-product-image img.main-image {
  transform: translateY(0px);
  transition: transform 0.3s ease;
}


    .image-gallery-scroll {
      display: flex;
      overflow-x: auto;
      gap: 0.5rem;
      padding: 0.5rem 0;
      scrollbar-width: none;
      -ms-overflow-style: none;
      margin-bottom: 0.5rem;
    }
    .image-gallery-scroll::-webkit-scrollbar {
      display: none;
    }
    .image-gallery-scroll img {
      height: 80px;
      border-radius: 8px;
      cursor: pointer;
      flex-shrink: 0;
      transition: transform 0.3s ease, outline 0.3s ease;
    }
    .image-gallery-scroll img:hover {
      transform: scale(1.05);
    }
    .image-gallery-scroll img.active {
      outline: 2px solid #d18d18;
      outline-offset: 2px;
    }
    .product-info {
      width: 100%;
		
		
    }
    .product-info h1 {
      font-size: 1.3rem;
      color: #1e3d2f;
		margin-bottom: 1rem; /* Ürün başlığına daha fazla boşluk */
    }
    .product-info .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }
   
    .product-info .price {
      font-size: 1.4rem;
      font-weight: bold;
      color: #5d8c4c;
      margin-bottom: 1rem;
	
    }
    .product-info p {
      font-size: 0.95rem;
      color: #666;
      margin-bottom: 1rem;
      line-height: 1.6;
    }
    .product-info h3 {
      font-size: 1rem;
      color: #d18d18;
      margin-bottom: 0.5rem;
		padding: 1px 0 0 20px;
    }
	  .product-info h3.underline {
      text-decoration: underline;
    }
    .product-info ul {
      padding-left: 1.2rem;
      font-size: 0.9rem;
      color: #666;
      margin-bottom: 0rem;
    }
	  .tag {
      background-color: #f3f3f3;
      color: #555;
      font-size: 0.8rem;
      padding: 0.3rem 0.6rem;
      border-radius: 6px;
      font-style: italic;
      border: none;
      box-shadow: none;
      display: inline-block;
    }
    .related-products {
      max-width: 1400px;
      width: 100%;
      padding: 0rem;
    }
    .related-products h3 {
      font-size: 1.1rem;
      color: #1e3d2f;
      margin: 2rem 0 1rem 0;
    }
    .related-grid {
      display: flex;
      overflow-x: auto;
      gap: 0.75rem; /* Ürünler arasındaki boşluk biraz azaltılabilir */
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 0.5rem;
    }
	  .related-grid::-webkit-scrollbar {
  display: none; /* ← bu da WebKit (Chrome, Safari) için */
}
    .related-card {
      flex: 0 0 auto;
      width: 160px;
      background-color: rgba(255, 255, 255, 0.5);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
      text-align: center;
      font-size: 0.9rem;
      color: #333;
      scroll-snap-align: start;

    }
	 
    .related-card img {
      width: 100%;
      height: 100px;
      object-fit: cover;
    }
	  .related-card img:hover {
  transform: scale(1.05); /* Hoverda ürün görselinin büyümesi */
}
    .related-card .title {
      font-weight: bold;
      padding: 0.5rem;
    }
    .related-card .price {
      color: #5d8c4c;
      font-weight: 600;
      padding-bottom: 0.75rem;
		text-align: center;
    }
    @media (min-width: 768px) {
      .yamac-kirbahcesi-content-block {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
      }
      .yamac-kirbahcesi-product-image {
        width: 55%;
        padding-right: 0;
      }
      .product-info {
        width: 45%;
        padding-left: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
      }
    }
    @media (min-width: 1024px) {
      .product-info h2 {
        font-size: 2.2rem;
      }
      .product-info p, .product-info ul {
        font-size: 1.05rem;
      }
      .yamac-kirbahcesi-product-image img.main-image {
        max-height: 520px;
      }
    }
	  .detail-link {
    display: inline-block;
    background-color: #1e3d2f;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: background-color 0.3s;
  }
  .detail-link:hover {
    background-color: #2c5c42;
  }
	  .fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-delay-1 { animation-delay: 0.2s; }
.fade-delay-2 { animation-delay: 0.4s; }
.fade-delay-3 { animation-delay: 0.6s; }
.fade-delay-4 { animation-delay: 0.8s; }
	  
	.share-button {
  background: #fff6e5;
  color: #b25700;
  border: none;
  padding: 0.4rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
  .share-button:hover {
    background-color: #d18d18;
  }
  .action-icons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
	    .reserve-btn,
    .reserve-btn-alt {
      background-color: #eb7a1f;
      color: white;
      padding: 0.4rem 1rem;
      font-size: 0.9rem;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
		text-decoration: none;
    }

    .reserve-btn:hover,
    .reserve-btn-alt:hover {
      background-color: #c8640d;
      color: white;
		text-decoration: none;
    }
	    .image-icons {
  display: flex;
  gap: 0.1rem; /* Butonlar arasındaki boşluk */
  margin-left: auto; /* Sağ yaslama */
	   
}

    /* Paylaşım butonları */
.image-icons .icon-button {
  background: none; /* Arka planı kaldırdık */
  color: #000000; /* Beyaz renk */
  border: none; /* Beyaz kenar çizgisi */
  padding: 0.35rem 0.75rem; /* Buton boyutu */
  border-radius: 4px; /* Hafif yuvarlak köşe */
  font-size: 1rem; /* İkonların boyutu */
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease; /* Geçiş animasyonu */
}

.image-icons .icon-button:hover {
  background-color: white; /* Hoverda beyaz arka plan */
  color: var(--primary); /* Hoverda metin rengi değişir */
}

/* Icon düzenlemeleri */
.image-icons svg {
  stroke: currentColor; /* İkonlar renk ile uyumlu olacak */
  width: 20px;
  height: 20px;
}
	  	  .back-btn {
  background-color: transparent;
  border: none;
  font-size: 16px;
  color: #F27D0C;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px;
}

.back-btn i {
  font-size: 20px;
}
	  .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Dinamik sütunlar */
  gap: 16px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
}
.reservation-form {
  display: grid;
  gap: 20px;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .reservation-form {
    gap: 10px;
  }
}
	  .reservation-form h3 {
  font-size: 1rem;     /* Eskisi muhtemelen 1.3rem gibi */
  font-weight: 600;
  margin-bottom: 4px;
  color: #333;
}
/* Mobil: tek kolon */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1em;
  box-sizing: border-box;
}

.form-group textarea {
  resize: vertical;
}

.form-group.required label span {
  color: red;
}
.form-group button {
  background-color: #2D3E2F;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1em;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.form-group button[type="submit"]:hover {
  background-color: #3c5041;
}
.form-group select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1em;
  box-sizing: border-box;
  width: 100%;
  background-color: #fff;
  color: #333;
  appearance: none; /* istersen sistem combobox ikonunu gizler */
}
/* Geniş ekranlarda 2 kolon */
@media (min-width: 768px) {
  .reservation-form {
    grid-template-columns: 1fr 1fr;
  }

  .form-group.full-width {
    grid-column: 1 / -1;
  }

  .form-group textarea,
  .form-group.full-width button {
    width: 100%;
  }
}
.reservation-info {
  background: linear-gradient(to bottom right, #edf7f1, #fdfdfd);
  border: 1px solid #d7e9dc;
  border-radius: 12px;
  padding: 0px 20px 10px 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.reservation-info h2 {
  font-size: 1.4em;
  margin-bottom: 8px;
  color: #2d3e2f;
  font-weight: 600;
}

.reservation-info .lead-text {
  font-size: 0.95em;
  color: #3f4e44;
  margin-bottom: 14px;
  line-height: 1.4;
}

.step-guide {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.step-guide p {
  background-color: #e6f2e8;
  color: #2d3e2f;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.85em;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  margin: 0;
}

.step-guide span {
  margin-right: 4px;
}
	  .whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  width: 100%;
}

.whatsapp-btn:hover {
  background-color: #1ebe5b;
  transform: scale(1.02);
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
	  .success-toast {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 12px 20px;
  border-radius: 8px;
  margin-top: 20px;
  font-weight: 500;
  font-size: 1em;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  animation: fadeInOut 4s ease forwards;
}

@keyframes fadeInOut {
  0%   { opacity: 0; transform: translateY(10px); }
  10%  { opacity: 1; transform: translateY(0); }
  90%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-10px); }
}
	  h3 span {
  color: red;
  margin-left: 4px;
  font-weight: 500;
}
	  img {
  aspect-ratio: 4/3;
}

	  /* Ana divi hizalama */
.menu-categories-wrapper {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  padding: 10px;
  width: 100%;
  overflow-x: auto; /* Yatay kaydırma */
  -webkit-overflow-scrolling: touch; /* Mobilde daha iyi kaydırma deneyimi */
  scrollbar-width: none; /* Firefox'ta scroll çubuğunu gizler */
  -ms-overflow-style: none; /* Internet Explorer için scroll çubuğunu gizler */
  box-sizing: border-box; /* Sayfa genişliğini etkileyen faktörleri ortadan kaldırır */
}
	  .menu-categories-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari ve Opera için scroll çubuğunu gizler */
}
/* Her kategoriye ait wrapper */
.menu-category-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Yatayda ortalama */
  align-items: center; /* Dikeyde ortalama */
  text-align: center;
  flex-shrink: 0;
  width: auto;
  height: 100%; /* Tam yükseklik, hizalamayı etkileyebilir */
}
	  /* Kategoriler için stil */
.menu-category-wrapper.active {
  font-weight: bold;
  color: #F27D0C; /* Aktif kategori için renk değişimi */
  text-decoration: underline; /* Aktif kategoriye alt çizgi ekleyebiliriz */
}
	  /* Menü Kategorileri Konteyneri */
.menu-categories {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 20px 0;
  justify-content: flex-start;
  align-items: center;
  scroll-behavior: smooth;
  -ms-overflow-style: none; /* Internet Explorer için kaydırma çubuğu gizleme */
  scrollbar-width: none; /* Firefox için kaydırma çubuğu gizleme */
}
	  .menu-categories::-webkit-scrollbar {
  display: none; /* Chrome, Safari ve Opera için kaydırma çubuğu gizleme */
}

/* Her Menü Kategorisi */

.menu-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* Kategori İsimleri */
/* Kategori ismi düzenlemesi */
.menu-category-name {
  font-size: 13px;
  font-weight: bold;
  color: #2D3E2F;
  margin-top: 8px;
  text-align: center;
  position: relative;
  top: 0px;
  display: inline-block;
  width: 100%;
  line-height: 1.2; /* Satırlar arasındaki mesafeyi ayarlıyoruz */
}
	  .menu-category-name span {
  display: block;
}
	  /* Tek kelime olanları tam ortalayacak şekilde hizalama */
.menu-category-name:not(:has(span)) {
  display: flex;
  justify-content: center;
  align-items: center;
}

	  /* Kategoriler için stil */
	  /* Kategori Başlığı */
.category-title {
  font-size: 24px;
  font-weight: bold;
  color: #2D3E2F;
  margin: 20px 0; /* Ürün listesiyle arasında boşluk bırak */
  text-align: left;
  position: relative; /* Kategori başlığının pozisyonunu ayarlıyoruz */
  visibility: visible; /* Başlığın her zaman görünür olmasını sağlıyoruz */
}
.categories {
  display: flex;
  justify-content: space-around;
  padding: 20px;
}

.category-item {
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
}

.category-item:hover {
  text-decoration: underline;
}



/* Ürün Listesi */


/* Ürün Kartı */

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-card h3 {
  font-size: 18px;
  margin: 10px 0;
	
}

.product-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

	  
.product-card p.price {
  font-size: 20px;
  color: #5d8c4c;
  margin-bottom: 10px;
    font-weight: bold;
}
.product-card .price {
  font-size: 16px;
  color: #5d8c4c;
  margin-bottom: 10px;
}

.product-card .order-btn {
  background-color: #FF5722;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
	text-align: right;
}

.product-card .order-btn:hover {
  background-color: #D76A03;
}
/* Flexbox düzeni ile p ve button'ı yan yana hizala */
.product-card .button-container {
  display: flex;
  justify-content: space-between; /* Öğeleri sola hizalar */
  gap: 10px; /* Öğeler arasında 10px boşluk bırak */
  align-items: center; /* Yüksekliklerini ortalar */
}
/* Responsive Tasarım */

/* Mobil Görünüm (1 ve 2 kart yan yana) */
@media (max-width: 480px) {
  
}

/* Tablet Görünümü (2 kart yan yana) */
@media (min-width: 481px) and (max-width: 768px) {
  
}

/* Masaüstü Görünümü (3 kart yan yana) */
@media (min-width: 769px) {
  
}
    /* Dil Seçici */
    .lang-dropdown {
      position: relative;
    }

    .lang-toggle {
      background-color: white;
      border: none;
      border-radius: 6px;
      padding: 6px 10px;
      font-size: 14px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      color: #2D3E2F;
    }

    .lang-toggle img {
      width: 20px;
      height: 14px;
    }

/* Dil Listesi Şeffaflık ve Uyumluluk Güncellemesi */

.lang-list button {
  width: 100%;
  border: none;
  background: transparent; /* Şeffaf arka plan */
  padding: 10px 14px;
  text-align: left;
  font-size: 14px;
  color: #2D3E2F;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}

.lang-list button:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.lang-list button.active {
  background-color: #2D3E2F;
  color: white;
  font-weight: bold;
}



.lang-list button img,
.lang-toggle img {
  width: 20px;
  height: 14px;
  object-fit: cover;
}
.lang-toggle {
  background-color: transparent; /* Toggle butonu da şeffaf */
  
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: white;
  cursor: pointer;
}
    /* Tost Bildirimi */
    #toast {
      visibility: hidden;
      min-width: 200px;
      background-color: #333;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 10px;
      position: fixed;
      z-index: 300;
      bottom: 100px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 14px;
      opacity: 0;
      transition: opacity 0.5s ease, visibility 0.5s;
    }

    #toast.show {
      visibility: visible;
      opacity: 1;
    }



    main {
      max-width: 960px;
      margin: 0 auto;
      padding: 20px;
    }
	  /* Loading Text */
.loading {
  text-align: center;
  padding: 20px;
  color: #F27D0C;
  font-size: 18px;
  display: none; /* Başlangıçta gizli */
}
	  /* Tüm öğeleri başlangıçta gizle */
.lazy-load {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

/* Görünür olduğunda opacity'yi artır ve görünürlüğü sağla */
.lazy-load.visible {
  opacity: 1;
  visibility: visible;
}
	  
	  /* İçerik */
	.yamac-kirbahcesi-page-container {
	  width: 100%;
      padding: 1rem;
      display: flex;
      justify-content: center;
      margin: 0 auto;
      flex-direction: column;
      align-items: center;
      
		
 
  margin: 0 auto;
		 max-width: 960px;
		
		justify-content: space-between;
		
    }
    .yamac-kirbahcesi-content-block {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 960px;
      padding: 0rem;
      background-color: transparent;
      gap: 1rem;
    }
    .yamac-kirbahcesi-product-image {
      width: 100%;
		
    }
    .yamac-kirbahcesi-product-image img.main-image {
      width: 100%;
      height: auto;
      border-radius: 12px;
      max-height: 480px;
      object-fit: cover;
      display: block;
		position: relative;
  z-index: 1;
    }
	  .yamac-kirbahcesi-product-image img.main-image {
  transform: translateY(0px);
  transition: transform 0.3s ease;
}


    .image-gallery-scroll {
      display: flex;
      overflow-x: auto;
      gap: 0.5rem;
      padding: 0.5rem 0;
      scrollbar-width: none;
      -ms-overflow-style: none;
      margin-bottom: 0.5rem;
    }
    .image-gallery-scroll::-webkit-scrollbar {
      display: none;
    }
    .image-gallery-scroll img {
      height: 80px;
      border-radius: 8px;
      cursor: pointer;
      flex-shrink: 0;
      transition: transform 0.3s ease, outline 0.3s ease;
    }
    .image-gallery-scroll img:hover {
      transform: scale(1.05);
    }
    .image-gallery-scroll img.active {
      outline: 2px solid #d18d18;
      outline-offset: 2px;
    }
    .product-info {
      width: 100%;
		
		
    }
    .product-info h1 {
      font-size: 1.3rem;
      color: #1e3d2f;
		margin-bottom: 1rem; /* Ürün başlığına daha fazla boşluk */
    }
    .product-info .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }
   
    .product-info .price {
      font-size: 1.4rem;
      font-weight: bold;
      color: #5d8c4c;
      margin-bottom: 1rem;
	
    }
    .product-info p {
      font-size: 0.95rem;
      color: #666;
      margin-bottom: 1rem;
      line-height: 1.6;
    }
    .product-info h3 {
      font-size: 1rem;
      color: #d18d18;
      margin-bottom: 0.5rem;
		padding: 1px 0 0 20px;
    }
	  .product-info h3.underline {
      text-decoration: underline;
    }
    .product-info ul {
      padding-left: 1.2rem;
      font-size: 0.9rem;
      color: #666;
      margin-bottom: 0rem;
    }
	  .tag {
      background-color: #f3f3f3;
      color: #555;
      font-size: 0.8rem;
      padding: 0.3rem 0.6rem;
      border-radius: 6px;
      font-style: italic;
      border: none;
      box-shadow: none;
      display: inline-block;
    }
    .related-products {
      max-width: 1400px;
      width: 100%;
      padding: 0rem;
    }
    .related-products h3 {
      font-size: 1.1rem;
      color: #1e3d2f;
      margin: 2rem 0 1rem 0;
    }
    .related-grid {
      display: flex;
      overflow-x: auto;
      gap: 0.75rem; /* Ürünler arasındaki boşluk biraz azaltılabilir */
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 0.5rem;
    }
	  .related-grid::-webkit-scrollbar {
  display: none; /* ← bu da WebKit (Chrome, Safari) için */
}
    .related-card {
      flex: 0 0 auto;
      width: 160px;
      background-color: rgba(255, 255, 255, 0.5);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
      text-align: center;
      font-size: 0.9rem;
      color: #333;
      scroll-snap-align: start;

    }
	 
    .related-card img {
      width: 100%;
      height: 100px;
      object-fit: cover;
    }
	  .related-card img:hover {
  transform: scale(1.05); /* Hoverda ürün görselinin büyümesi */
}
    .related-card .title {
      font-weight: bold;
      padding: 0.5rem;
    }
    .related-card .price {
      color: #5d8c4c;
      font-weight: 600;
      padding-bottom: 0.75rem;
		text-align: center;
    }
    @media (min-width: 768px) {
      .yamac-kirbahcesi-content-block {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
      }
      .yamac-kirbahcesi-product-image {
        width: 55%;
        padding-right: 0;
      }
      .product-info {
        width: 45%;
        padding-left: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
      }
    }
    @media (min-width: 1024px) {
      .product-info h2 {
        font-size: 2.2rem;
      }
      .product-info p, .product-info ul {
        font-size: 1.05rem;
      }
      .yamac-kirbahcesi-product-image img.main-image {
        max-height: 520px;
      }
    }
	  .detail-link {
    display: inline-block;
    background-color: #1e3d2f;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: background-color 0.3s;
  }
  .detail-link:hover {
    background-color: #2c5c42;
  }
	  .fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-delay-1 { animation-delay: 0.2s; }
.fade-delay-2 { animation-delay: 0.4s; }
.fade-delay-3 { animation-delay: 0.6s; }
.fade-delay-4 { animation-delay: 0.8s; }
	  
	.share-button {
  background: #fff6e5;
  color: #b25700;
  border: none;
  padding: 0.4rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
  .share-button:hover {
    background-color: #d18d18;
  }
  .action-icons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
	    .reserve-btn,
    .reserve-btn-alt {
      background-color: #eb7a1f;
      color: white;
      padding: 0.4rem 1rem;
      font-size: 0.9rem;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
		text-decoration: none;
    }

    .reserve-btn:hover,
    .reserve-btn-alt:hover {
      background-color: #c8640d;
      color: white;
		text-decoration: none;
    }
	    .image-icons {
  display: flex;
  gap: 0.1rem; /* Butonlar arasındaki boşluk */
  margin-left: auto; /* Sağ yaslama */
	   
}

    /* Paylaşım butonları */
.image-icons .icon-button {
  background: none; /* Arka planı kaldırdık */
  color: #000000; /* Beyaz renk */
  border: none; /* Beyaz kenar çizgisi */
  padding: 0.35rem 0.75rem; /* Buton boyutu */
  border-radius: 4px; /* Hafif yuvarlak köşe */
  font-size: 1rem; /* İkonların boyutu */
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease; /* Geçiş animasyonu */
}

.image-icons .icon-button:hover {
  background-color: white; /* Hoverda beyaz arka plan */
  color: var(--primary); /* Hoverda metin rengi değişir */
}

/* Icon düzenlemeleri */
.image-icons svg {
  stroke: currentColor; /* İkonlar renk ile uyumlu olacak */
  width: 20px;
  height: 20px;
}
	  	  .back-btn {
  background-color: transparent;
  border: none;
  font-size: 16px;
  color: #F27D0C;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px;
}

.back-btn i {
  font-size: 20px;
}
	  .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Dinamik sütunlar */
  gap: 16px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
}
	  /* Ana divi hizalama */
.menu-categories-wrapper {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  padding: 10px;
  width: 100%;
  overflow-x: auto; /* Yatay kaydırma */
  -webkit-overflow-scrolling: touch; /* Mobilde daha iyi kaydırma deneyimi */
  scrollbar-width: none; /* Firefox'ta scroll çubuğunu gizler */
  -ms-overflow-style: none; /* Internet Explorer için scroll çubuğunu gizler */
  box-sizing: border-box; /* Sayfa genişliğini etkileyen faktörleri ortadan kaldırır */
}
	  .menu-categories-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari ve Opera için scroll çubuğunu gizler */
}
/* Her kategoriye ait wrapper */
.menu-category-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Yatayda ortalama */
  align-items: center; /* Dikeyde ortalama */
  text-align: center;
  flex-shrink: 0;
  width: auto;
  height: 100%; /* Tam yükseklik, hizalamayı etkileyebilir */
}
	  /* Kategoriler için stil */
.menu-category-wrapper.active {
  font-weight: bold;
  color: #F27D0C; /* Aktif kategori için renk değişimi */
  text-decoration: underline; /* Aktif kategoriye alt çizgi ekleyebiliriz */
}
	  /* Menü Kategorileri Konteyneri */
.menu-categories {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 20px 0;
  justify-content: flex-start;
  align-items: center;
  scroll-behavior: smooth;
  -ms-overflow-style: none; /* Internet Explorer için kaydırma çubuğu gizleme */
  scrollbar-width: none; /* Firefox için kaydırma çubuğu gizleme */
}
	  .menu-categories::-webkit-scrollbar {
  display: none; /* Chrome, Safari ve Opera için kaydırma çubuğu gizleme */
}

/* Her Menü Kategorisi */

.menu-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* Kategori İsimleri */
/* Kategori ismi düzenlemesi */
.menu-category-name {
  font-size: 13px;
  font-weight: bold;
  color: #2D3E2F;
  margin-top: 8px;
  text-align: center;
  position: relative;
  top: 0px;
  display: inline-block;
  width: 100%;
  line-height: 1.2; /* Satırlar arasındaki mesafeyi ayarlıyoruz */
}
	  .menu-category-name span {
  display: block;
}
	  /* Tek kelime olanları tam ortalayacak şekilde hizalama */
.menu-category-name:not(:has(span)) {
  display: flex;
  justify-content: center;
  align-items: center;
}

	  /* Kategoriler için stil */
	  /* Kategori Başlığı */
.category-title {
  font-size: 24px;
  font-weight: bold;
  color: #2D3E2F;
  margin: 20px 0; /* Ürün listesiyle arasında boşluk bırak */
  text-align: left;
  position: relative; /* Kategori başlığının pozisyonunu ayarlıyoruz */
  visibility: visible; /* Başlığın her zaman görünür olmasını sağlıyoruz */
}
.categories {
  display: flex;
  justify-content: space-around;
  padding: 20px;
}

.category-item {
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
}

.category-item:hover {
  text-decoration: underline;
}



/* Ürün Listesi */




.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-card h3 {
  font-size: 18px;
  margin: 10px 0;
	
}

.product-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

	  
.product-card p.price {
  font-size: 20px;
  color: #5d8c4c;
  margin-bottom: 10px;
    font-weight: bold;
}
.product-card .price {
  font-size: 16px;
  color: #5d8c4c;
  margin-bottom: 10px;
}

.product-card .order-btn {
  background-color: #FF5722;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
	text-align: right;
}

.product-card .order-btn:hover {
  background-color: #D76A03;
}
/* Flexbox düzeni ile p ve button'ı yan yana hizala */
.product-card .button-container {
  display: flex;
  justify-content: space-between; /* Öğeleri sola hizalar */
  gap: 10px; /* Öğeler arasında 10px boşluk bırak */
  align-items: center; /* Yüksekliklerini ortalar */
}
/* Responsive Tasarım */

/* Mobil Görünüm (1 ve 2 kart yan yana) */
@media (max-width: 480px) {
  
}

/* Tablet Görünümü (2 kart yan yana) */
@media (min-width: 481px) and (max-width: 768px) {
  
}

/* Masaüstü Görünümü (3 kart yan yana) */
@media (min-width: 769px) {
  
}
    /* Dil Seçici */
    .lang-dropdown {
      position: relative;
    }

    .lang-toggle {
      background-color: white;
      border: none;
      border-radius: 6px;
      padding: 6px 10px;
      font-size: 14px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      color: #2D3E2F;
    }

    .lang-toggle img {
      width: 20px;
      height: 14px;
    }

/* Dil Listesi Şeffaflık ve Uyumluluk Güncellemesi */


.lang-list button {
  width: 100%;
  border: none;
  background: transparent; /* Şeffaf arka plan */
  padding: 10px 14px;
  text-align: left;
  font-size: 14px;
  color: #2D3E2F;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}

.lang-list button:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.lang-list button.active {
  background-color: #2D3E2F;
  color: white;
  font-weight: bold;
}



.lang-list button img,
.lang-toggle img {
  width: 20px;
  height: 14px;
  object-fit: cover;
}
.lang-toggle {
  background-color: transparent; /* Toggle butonu da şeffaf */
  
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: white;
  cursor: pointer;
}
    /* Tost Bildirimi */
    #toast {
      visibility: hidden;
      min-width: 200px;
      background-color: #333;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 10px;
      position: fixed;
      z-index: 300;
      bottom: 100px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 14px;
      opacity: 0;
      transition: opacity 0.5s ease, visibility 0.5s;
    }

    #toast.show {
      visibility: visible;
      opacity: 1;
    }



    main {
      max-width: 960px;
      margin: 0 auto;
      padding: 20px;
    }
	  /* Loading Text */
.loading {
  text-align: center;
  padding: 20px;
  color: #F27D0C;
  font-size: 18px;
  display: none; /* Başlangıçta gizli */
}
	  /* Tüm öğeleri başlangıçta gizle */
.lazy-load {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

/* Görünür olduğunda opacity'yi artır ve görünürlüğü sağla */
.lazy-load.visible {
  opacity: 1;
  visibility: visible;
}
	  
	  /* İçerik */
	.yamac-kirbahcesi-page-container {
	  width: 100%;
      padding: 1rem;
      display: flex;
      justify-content: center;
      margin: 0 auto;
      flex-direction: column;
      align-items: center;
      
		
 
  margin: 0 auto;
		 max-width: 960px;
		
		justify-content: space-between;
		
    }
    .yamac-kirbahcesi-content-block {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 960px;
      padding: 0rem;
      background-color: transparent;
      gap: 1rem;
    }
    .yamac-kirbahcesi-product-image {
      width: 100%;
		
    }
    .yamac-kirbahcesi-product-image img.main-image {
      width: 100%;
      height: auto;
      border-radius: 12px;
      max-height: 480px;
      object-fit: cover;
      display: block;
		position: relative;
  z-index: 1;
    }
	  .yamac-kirbahcesi-product-image img.main-image {
  transform: translateY(0px);
  transition: transform 0.3s ease;
}


    .image-gallery-scroll {
      display: flex;
      overflow-x: auto;
      gap: 0.5rem;
      padding: 0.5rem 0;
      scrollbar-width: none;
      -ms-overflow-style: none;
      margin-bottom: 0.5rem;
    }
    .image-gallery-scroll::-webkit-scrollbar {
      display: none;
    }
    .image-gallery-scroll img {
      height: 80px;
      border-radius: 8px;
      cursor: pointer;
      flex-shrink: 0;
      transition: transform 0.3s ease, outline 0.3s ease;
    }
    .image-gallery-scroll img:hover {
      transform: scale(1.05);
    }
    .image-gallery-scroll img.active {
      outline: 2px solid #d18d18;
      outline-offset: 2px;
    }
    .product-info {
      width: 100%;
		
		
    }
    .product-info h1 {
      font-size: 1.3rem;
      color: #1e3d2f;
		margin-bottom: 1rem; /* Ürün başlığına daha fazla boşluk */
    }
    .product-info .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }
   
    .product-info .price {
      font-size: 1.4rem;
      font-weight: bold;
      color: #5d8c4c;
      margin-bottom: 1rem;
	
    }
    .product-info p {
      font-size: 0.95rem;
      color: #666;
      margin-bottom: 1rem;
      line-height: 1.6;
    }
    .product-info h3 {
      font-size: 1rem;
      color: #d18d18;
      margin-bottom: 0.5rem;
		padding: 1px 0 0 20px;
    }
	  .product-info h3.underline {
      text-decoration: underline;
    }
    .product-info ul {
      padding-left: 1.2rem;
      font-size: 0.9rem;
      color: #666;
      margin-bottom: 0rem;
    }
	  .tag {
      background-color: #f3f3f3;
      color: #555;
      font-size: 0.8rem;
      padding: 0.3rem 0.6rem;
      border-radius: 6px;
      font-style: italic;
      border: none;
      box-shadow: none;
      display: inline-block;
    }
    .related-products {
      max-width: 1400px;
      width: 100%;
      padding: 0rem;
    }
    .related-products h3 {
      font-size: 1.1rem;
      color: #1e3d2f;
      margin: 2rem 0 1rem 0;
    }
    .related-grid {
      display: flex;
      overflow-x: auto;
      gap: 0.75rem; /* Ürünler arasındaki boşluk biraz azaltılabilir */
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 0.5rem;
    }
	  .related-grid::-webkit-scrollbar {
  display: none; /* ← bu da WebKit (Chrome, Safari) için */
}
    .related-card {
      flex: 0 0 auto;
      width: 160px;
      background-color: rgba(255, 255, 255, 0.5);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
      text-align: center;
      font-size: 0.9rem;
      color: #333;
      scroll-snap-align: start;

    }
	 
    .related-card img {
      width: 100%;
      height: 100px;
      object-fit: cover;
    }
	  .related-card img:hover {
  transform: scale(1.05); /* Hoverda ürün görselinin büyümesi */
}
    .related-card .title {
      font-weight: bold;
      padding: 0.5rem;
    }
    .related-card .price {
      color: #5d8c4c;
      font-weight: 600;
      padding-bottom: 0.75rem;
		text-align: center;
    }
    @media (min-width: 768px) {
      .yamac-kirbahcesi-content-block {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
      }
      .yamac-kirbahcesi-product-image {
        width: 55%;
        padding-right: 0;
      }
      .product-info {
        width: 45%;
        padding-left: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
      }
    }
    @media (min-width: 1024px) {
      .product-info h2 {
        font-size: 2.2rem;
      }
      .product-info p, .product-info ul {
        font-size: 1.05rem;
      }
      .yamac-kirbahcesi-product-image img.main-image {
        max-height: 520px;
      }
    }
	  .detail-link {
    display: inline-block;
    background-color: #1e3d2f;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: background-color 0.3s;
  }
  .detail-link:hover {
    background-color: #2c5c42;
  }
	  .fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-delay-1 { animation-delay: 0.2s; }
.fade-delay-2 { animation-delay: 0.4s; }
.fade-delay-3 { animation-delay: 0.6s; }
.fade-delay-4 { animation-delay: 0.8s; }
	  
	.share-button {
  background: #fff6e5;
  color: #b25700;
  border: none;
  padding: 0.4rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
  .share-button:hover {
    background-color: #d18d18;
  }
  .action-icons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
	    .reserve-btn,
    .reserve-btn-alt {
      background-color: #eb7a1f;
      color: white;
      padding: 0.4rem 1rem;
      font-size: 0.9rem;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
		text-decoration: none;
    }

    .reserve-btn:hover,
    .reserve-btn-alt:hover {
      background-color: #c8640d;
      color: white;
		text-decoration: none;
    }
	    .image-icons {
  display: flex;
  gap: 0.1rem; /* Butonlar arasındaki boşluk */
  margin-left: auto; /* Sağ yaslama */
	   
}

    /* Paylaşım butonları */
.image-icons .icon-button {
  background: none; /* Arka planı kaldırdık */
  color: #000000; /* Beyaz renk */
  border: none; /* Beyaz kenar çizgisi */
  padding: 0.35rem 0.75rem; /* Buton boyutu */
  border-radius: 4px; /* Hafif yuvarlak köşe */
  font-size: 1rem; /* İkonların boyutu */
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease; /* Geçiş animasyonu */
}

.image-icons .icon-button:hover {
  background-color: white; /* Hoverda beyaz arka plan */
  color: var(--primary); /* Hoverda metin rengi değişir */
}

/* Icon düzenlemeleri */
.image-icons svg {
  stroke: currentColor; /* İkonlar renk ile uyumlu olacak */
  width: 20px;
  height: 20px;
}
	  	  .back-btn {
  background-color: transparent;
  border: none;
  font-size: 16px;
  color: #F27D0C;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px;
}

.back-btn i {
  font-size: 20px;
}
	  .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Dinamik sütunlar */
  gap: 16px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
}
/* Ana Konteyner */
.contact-page {
  max-width: 960px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Google Maps Konum */
.map-container {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

/* İletişim Bilgileri */
.contact-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0px 20px 60px 20px;
  background-color: transparent;
}

h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Mobil Görünümde (Ekran genişliği 768px ve altı) */
@media (max-width: 768px) {
  .contact-info {
    grid-template-columns: 1fr; /* Tek sütun yap */
  }
}
	  
.contact-item {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* İkon ve başlığı aynı satıra yerleştirme */
.contact-header {
  display: flex;
  align-items: center; /* Dikeyde ortalama */
  gap: 10px; /* İkon ve başlık arasındaki boşluk */
}
	  
.contact-item i {
  font-size: 30px;
  color: #F27D0C;
  
}

.contact-item h3 {
  font-size: 18px;
  color: #333;
  margin: 0; /* Başlık için varsayılan margin'i kaldır */
}

.contact-item p {
  font-size: 14px;
  color: #666;
}

.social-icons {
 display: flex;
  gap: 10px;
  justify-content: left; /* İkonları yatayda ortalar */
  padding-top: 10px;
align-items: center;
}

.social-icons a {
  display: inline-block;
  background-color: #fff;
  color: #000;
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
	width: 36px;
	height: 36px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	border: #2B2929 solid 1px;
}

.social-icons a:hover {
  background-color: #F27D0C;
}
	  .directions-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  width: 100%;
  max-width: 300px;
  margin: 20px auto;
}

.directions-btn {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px; /* Yüzen butonun yuvarlak olması için */
  cursor: pointer;
  display: flex;
  align-items: center; /* Dikeyde ortalamak için */
  justify-content: center; /* Yatayda ortalamak için */
  position: fixed; /* Ekranın sabit bir kısmında yer alması için */
  right: 20px; /* Ekranın sağından 20px mesafede */
   bottom: 120px; /* Footer'dan 80px yukarıda */
  z-index: 1000; /* Diğer içeriklerin önünde olması için */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Gölgelendirme efekti */
  font-size: 16px; /* Yazı boyutu */
}

.directions-btn i {
  margin-right: 8px; /* İkon ile metin arasına boşluk ekler */
  font-size: 20px; /* İkon boyutunu ayarlayın */
}

.directions-btn:hover {
  background-color: #D76A03;
}
	  /* Masaüstü görünümü (960px ve üzeri) */
@media (min-width: 768px) {
  .directions-btn {
    bottom: 120px; /* Footer'dan 80px yukarıda */
    right: calc(50% - 480px); /* Butonun sağını 960px'e göre hizalar */
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .directions-btn {
    position: fixed;
    bottom: 120px; /* Footer'dan 80px yukarıda */
    right: 20px;  /* Sağda 20px boşluk */
    left: auto;
    transform: none; /* herhangi bir dönüşüm uygulanmasın */
  }
}




	  /* Başlangıçta header'ın tümü görünüyor */
	/* Başlangıçta tüm header görünür */
	.header-visible {
		opacity: 1;
	}

	/* Header yukarı kaydığında tamamen kaybolacak */
	.header-hidden {
		opacity: 0;
		transform: translateY(-100%); /* Tüm header yukarı kaybolur */
	}
	  
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
	padding: 0 0px;
	
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-name {
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
	
}
/* === SEARCH + LANG === */
.search-lang-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  gap: 10px;
  padding: 0 0px;
}
	  .greeting-search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap; /* mobil uyum için */
		  min-width: 0;
		  
}

.greeting {
  font-size: 1.1em;
  font-weight: 600;
  color: white;
  margin: 0;
  white-space: nowrap;
	flex-shrink: 0; 
}
	/* Search bar ve zemin kısmı */
	.search-box {
		transition: transform 0.6s ease, opacity 0.6s ease;
		opacity: 1; /* İlk başta gizli */
		transform: translateY(-50px); /* İlk başta yukarıda */
		flex-grow: 1;
  overflow: hidden;
  display: flex;
  min-width: 0; /* Taşma hatalarını engeller */
	}
	.search-box.active {
		opacity: 1; /* Görünür hale gelir */
		transform: translateY(0); /* Aşağı kayar */
	}

	/* Search bar input stil */
	.search-box input {
		width: 100%;
		padding: 10px 16px;
		border-radius: 20px;
		border: none;
		font-size: 1em;
  box-sizing: border-box;

	}
	  /* Sayfa yukarı kaydırıldığında tüm header geri gelir */
	/* Sayfa kaydırıldığında header içindeki öğeleri küçült */
	.header-shrink {
		padding: 10px 20px; /* Padding küçültülecek */
		transition: padding 0.3s ease; /* Yumuşak geçiş */
	}

	header.shrink .logo,
	header.shrink h2 {
		display: none; /* Logo ve başlıkları gizle */
	}
	/* Media query ile daha iyi görünürlük */
	@media (max-width: 768px) {
		header {
			padding: 15px 20px;
		}
	}
	.icon-button {
		  background: none;
		  border: none;
		  padding: 4px;
		  cursor: pointer;
		  color: white;
		}
	  /* Ana divi hizalama */
	.menu-categories-wrapper {
		  display: flex;
		  gap: 20px;
		  justify-content: flex-start;
		  padding: 10px;
		  width: 100%;
		  overflow-x: auto; /* Yatay kaydırma */
		  -webkit-overflow-scrolling: touch; /* Mobilde daha iyi kaydırma deneyimi */
		  scrollbar-width: none; /* Firefox'ta scroll çubuğunu gizler */
		  -ms-overflow-style: none; /* Internet Explorer için scroll çubuğunu gizler */
		  box-sizing: border-box; /* Sayfa genişliğini etkileyen faktörleri ortadan kaldırır */
	}
	.menu-categories-wrapper::-webkit-scrollbar {
			display: none; /* Chrome, Safari ve Opera için scroll çubuğunu gizler */
	}
	/* Her kategoriye ait wrapper */
	.menu-category-wrapper {
		display: flex;
		  flex-direction: column;
		  justify-content: center; /* Yatayda ortalama */
		  align-items: center; /* Dikeyde ortalama */
		  text-align: center;
		  flex-shrink: 0;
		  width: auto;
		  height: 100%; /* Tam yükseklik, hizalamayı etkileyebilir */
	}
	  /* Kategoriler için stil */
	.menu-category-wrapper.active {
	  	font-weight: bold;
	  	color: #F27D0C; /* Aktif kategori için renk değişimi */
	  	text-decoration: underline; /* Aktif kategoriye alt çizgi ekleyebiliriz */
	}
	  /* Menü Kategorileri Konteyneri */
.menu-categories {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 20px 0;
  justify-content: flex-start;
  align-items: center;
  scroll-behavior: smooth;
  -ms-overflow-style: none; /* Internet Explorer için kaydırma çubuğu gizleme */
  scrollbar-width: none; /* Firefox için kaydırma çubuğu gizleme */
}
	  .menu-categories::-webkit-scrollbar {
  display: none; /* Chrome, Safari ve Opera için kaydırma çubuğu gizleme */
}

/* Her Menü Kategorisi */


.menu-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* Kategori İsimleri */
/* Kategori ismi düzenlemesi */
.menu-category-name {
  font-size: 13px;
  font-weight: bold;
  color: #2D3E2F;
  margin-top: 8px;
  text-align: center;
  position: relative;
  top: 0px;
  display: inline-block;
  width: 100%;
  line-height: 1.2; /* Satırlar arasındaki mesafeyi ayarlıyoruz */
}
	  .menu-category-name span {
  display: block;
}
	  /* Tek kelime olanları tam ortalayacak şekilde hizalama */
.menu-category-name:not(:has(span)) {
  display: flex;
  justify-content: center;
  align-items: center;
}

	  /* Kategoriler için stil */
	  /* Kategori Başlığı */
.category-title {
  font-size: 24px;
  font-weight: bold;
  color: #2D3E2F;
  margin: 20px 0; /* Ürün listesiyle arasında boşluk bırak */
  text-align: left;
  position: relative; /* Kategori başlığının pozisyonunu ayarlıyoruz */
  visibility: visible; /* Başlığın her zaman görünür olmasını sağlıyoruz */
}
.categories {
  display: flex;
  justify-content: space-around;
  padding: 20px;
}

.category-item {
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
}

.category-item:hover {
  text-decoration: underline;
}



/* Ürün Listesi */


/* Ürün Kartı */
.product-card {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: left;
  width: 100%; /* Kartlar tüm genişliği kullanacak şekilde ayarlanır */
	box-sizing: border-box;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-card h3 {
  font-size: 18px;
  margin: 10px 0;
	
}

.product-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

	  
.product-card p.price {
  font-size: 20px;
  color: #5d8c4c;
  margin-bottom: 10px;
    font-weight: bold;
}
.product-card .price {
  font-size: 16px;
  color: #5d8c4c;
  margin-bottom: 10px;
}

.product-card .order-btn {
  background-color: #FF5722;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
	text-align: right;
}

.product-card .order-btn:hover {
  background-color: #D76A03;
}
/* Flexbox düzeni ile p ve button'ı yan yana hizala */
.product-card .button-container {
  display: flex;
  justify-content: space-between; /* Öğeleri sola hizalar */
  gap: 10px; /* Öğeler arasında 10px boşluk bırak */
  align-items: center; /* Yüksekliklerini ortalar */
}
/* Responsive Tasarım */

/* Mobil Görünüm (1 ve 2 kart yan yana) */
@media (max-width: 480px) {
  
}

/* Tablet Görünümü (2 kart yan yana) */
@media (min-width: 481px) and (max-width: 768px) {
  
}

/* Masaüstü Görünümü (3 kart yan yana) */
@media (min-width: 769px) {
  
}
    /* Dil Seçici */
    .lang-dropdown {
      flex-shrink: 0;
    }

    .lang-toggle {
      background-color: white;
      border: none;
      border-radius: 6px;
      padding: 6px 10px;
      font-size: 14px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      color: #2D3E2F;
    }

    .lang-toggle img {
      width: 20px;
      height: 14px;
    }

/* Dil Listesi Şeffaflık ve Uyumluluk Güncellemesi */

.lang-list button {
  width: 100%;
  border: none;
  background: transparent; /* Şeffaf arka plan */
  padding: 10px 14px;
  text-align: left;
  font-size: 14px;
  color: #2D3E2F;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}

.lang-list button:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.lang-list button.active {
  background-color: #2D3E2F;
  color: white;
  font-weight: bold;
}



.lang-list button img,
.lang-toggle img {
  width: 20px;
  height: 14px;
  object-fit: cover;
}
.lang-toggle {
  background-color: transparent; /* Toggle butonu da şeffaf */
  
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: white;
  cursor: pointer;
}
    /* Tost Bildirimi */
    #toast {
      visibility: hidden;
      min-width: 200px;
      background-color: #333;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 10px;
      position: fixed;
      z-index: 300;
      bottom: 100px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 14px;
      opacity: 0;
      transition: opacity 0.5s ease, visibility 0.5s;
    }

    #toast.show {
      visibility: visible;
      opacity: 1;
    }



    main {
      max-width: 960px;
      margin: 0 auto;
      padding: 250px 20px 20px 20px;
    }
	  /* Loading Text */
.loading {
  text-align: center;
  padding: 20px;
  color: #F27D0C;
  font-size: 18px;
  display: none; /* Başlangıçta gizli */
}
	  /* Tüm öğeleri başlangıçta gizle */
.lazy-load {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

/* Görünür olduğunda opacity'yi artır ve görünürlüğü sağla */
.lazy-load.visible {
  opacity: 1;
  visibility: visible;
}
	  
	  /* İçerik */
	.yamac-kirbahcesi-page-container {
	  width: 100%;
      padding: 1rem;
      display: flex;
      justify-content: center;
      margin: 0 auto;
      flex-direction: column;
      align-items: center;
      
		
 
  margin: 0 auto;
		 max-width: 960px;
		
		justify-content: space-between;
		
    }
    .yamac-kirbahcesi-content-block {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 960px;
      padding: 0rem;
      background-color: transparent;
      gap: 1rem;
    }
    .yamac-kirbahcesi-product-image {
      width: 100%;
		
    }
    .yamac-kirbahcesi-product-image img.main-image {
      width: 100%;
      height: auto;
      border-radius: 12px;
      max-height: 480px;
      object-fit: cover;
      display: block;
		position: relative;
  z-index: 1;
    }
	  .yamac-kirbahcesi-product-image img.main-image {
  transform: translateY(0px);
  transition: transform 0.3s ease;
}


    .image-gallery-scroll {
      display: flex;
      overflow-x: auto;
      gap: 0.5rem;
      padding: 0.5rem 0;
      scrollbar-width: none;
      -ms-overflow-style: none;
      margin-bottom: 0.5rem;
    }
    .image-gallery-scroll::-webkit-scrollbar {
      display: none;
    }
    .image-gallery-scroll img {
      height: 80px;
      border-radius: 8px;
      cursor: pointer;
      flex-shrink: 0;
      transition: transform 0.3s ease, outline 0.3s ease;
    }
    .image-gallery-scroll img:hover {
      transform: scale(1.05);
    }
    .image-gallery-scroll img.active {
      outline: 2px solid #d18d18;
      outline-offset: 2px;
    }
    .product-info {
      width: 100%;
		
		
    }
    .product-info h1 {
      font-size: 1.3rem;
      color: #1e3d2f;
		margin-bottom: 1rem; /* Ürün başlığına daha fazla boşluk */
    }
    .product-info .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }
   
    .product-info .price {
      font-size: 1.4rem;
      font-weight: bold;
      color: #5d8c4c;
      margin-bottom: 1rem;
	
    }
    .product-info p {
      font-size: 0.95rem;
      color: #666;
      margin-bottom: 1rem;
      line-height: 1.6;
    }
    .product-info h3 {
      font-size: 1rem;
      color: #d18d18;
      margin-bottom: 0.5rem;
		padding: 1px 0 0 20px;
    }
	  .product-info h3.underline {
      text-decoration: underline;
    }
    .product-info ul {
      padding-left: 1.2rem;
      font-size: 0.9rem;
      color: #666;
      margin-bottom: 0rem;
    }
	  .tag {
      background-color: #f3f3f3;
      color: #555;
      font-size: 0.8rem;
      padding: 0.3rem 0.6rem;
      border-radius: 6px;
      font-style: italic;
      border: none;
      box-shadow: none;
      display: inline-block;
    }
    .related-products {
      max-width: 1400px;
      width: 100%;
      padding: 0rem;
    }
    .related-products h3 {
      font-size: 1.1rem;
      color: #1e3d2f;
      margin: 2rem 0 1rem 0;
    }
    .related-grid {
      display: flex;
      overflow-x: auto;
      gap: 0.75rem; /* Ürünler arasındaki boşluk biraz azaltılabilir */
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 0.5rem;
    }
	  .related-grid::-webkit-scrollbar {
  display: none; /* ← bu da WebKit (Chrome, Safari) için */
}
    .related-card {
      flex: 0 0 auto;
      width: 160px;
      background-color: rgba(255, 255, 255, 0.5);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
      text-align: center;
      font-size: 0.9rem;
      color: #333;
      scroll-snap-align: start;

    }
	 
    .related-card img {
      width: 100%;
      height: 100px;
      object-fit: cover;
    }
	  .related-card img:hover {
  transform: scale(1.05); /* Hoverda ürün görselinin büyümesi */
}
    .related-card .title {
      font-weight: bold;
      padding: 0.5rem;
    }
    .related-card .price {
      color: #5d8c4c;
      font-weight: 600;
      padding-bottom: 0.75rem;
		text-align: center;
    }
    @media (min-width: 768px) {
      .yamac-kirbahcesi-content-block {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
      }
      .yamac-kirbahcesi-product-image {
        width: 55%;
        padding-right: 0;
      }
      .product-info {
        width: 45%;
        padding-left: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
      }
    }
    @media (min-width: 1024px) {
      .product-info h2 {
        font-size: 2.2rem;
      }
      .product-info p, .product-info ul {
        font-size: 1.05rem;
      }
      .yamac-kirbahcesi-product-image img.main-image {
        max-height: 520px;
      }
    }
	  .detail-link {
    display: inline-block;
    background-color: #1e3d2f;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: background-color 0.3s;
  }
  .detail-link:hover {
    background-color: #2c5c42;
  }
	  .fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-delay-1 { animation-delay: 0.2s; }
.fade-delay-2 { animation-delay: 0.4s; }
.fade-delay-3 { animation-delay: 0.6s; }
.fade-delay-4 { animation-delay: 0.8s; }
	  
	.share-button {
  background: #fff6e5;
  color: #b25700;
  border: none;
  padding: 0.4rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
  .share-button:hover {
    background-color: #d18d18;
  }
  .action-icons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
	    .reserve-btn,
    .reserve-btn-alt {
      background-color: #eb7a1f;
      color: white;
      padding: 0.4rem 1rem;
      font-size: 0.9rem;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
		text-decoration: none;
    }

    .reserve-btn:hover,
    .reserve-btn-alt:hover {
      background-color: #c8640d;
      color: white;
		text-decoration: none;
    }
	    .image-icons {
  display: flex;
  gap: 0.1rem; /* Butonlar arasındaki boşluk */
  margin-left: auto; /* Sağ yaslama */
	   
}

    /* Paylaşım butonları */
.image-icons .icon-button {
  background: none; /* Arka planı kaldırdık */
  color: #000000; /* Beyaz renk */
  border: none; /* Beyaz kenar çizgisi */
  padding: 0.35rem 0.75rem; /* Buton boyutu */
  border-radius: 4px; /* Hafif yuvarlak köşe */
  font-size: 1rem; /* İkonların boyutu */
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease; /* Geçiş animasyonu */
}

.image-icons .icon-button:hover {
  background-color: red; /* Hoverda beyaz arka plan */
  color: var(--primary); /* Hoverda metin rengi değişir */
}

/* Icon düzenlemeleri */
.image-icons svg {
  stroke: currentColor; /* İkonlar renk ile uyumlu olacak */
  width: 20px;
  height: 20px;
}
	  	  .back-btn {
  background-color: transparent;
  border: none;
  font-size: 16px;
  color: #F27D0C;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px;
}

.back-btn i {
  font-size: 20px;
}
	  .yamac-header {
  position: sticky;
  top: 0;
  width: 95%;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  color: #5d8c4c;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
  font-size: 1rem;
  z-index: 9999;
  animation: fadeSlideDown 0.8s ease-in-out;
}
@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
  .yamac-header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .yamac-header-inner img {
    height: 32px;
    width: auto;
  }
  .yamac-header-inner span {
    font-weight: bold;
    font-size: 1rem;
  }
/* Slider container */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  
  overflow: hidden; /* İçeriği dışarı taşarsa gizler */
  border-radius: 10px;
	
	margin-top: 180px;
  padding-top: 0;
	
}

/* Slider */
.slider {
  display: flex;
  transition: transform 0.5s ease; /* Yumuşak geçiş */
}

/* Slider item */
.slider-item {
  min-width: 100%;
  box-sizing: border-box;
  position: relative; /* Metni ve zemin için konumlandırma */
}

/* Resim ayarları */
.slider-item img {
  width: 100%;
  height: auto;
  object-fit: cover; /* Resmi bozmadan doldur */
  display: block;
	
}

/* Slider Content (Metin ve zemin) */
.slider-content {
  position: absolute;
    bottom: 20px; 
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  z-index: 2; /* Metni ön planda yapar */
  padding: 0 15px; /* Metnin kenarlarında boşluk bırakır */
	display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Metni alt kısmına hizalar */
}

.slider-content h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.slider-content p {
  font-size: 1rem;
  margin: 0;
}

/* Opak zemin */
.slider-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%; /* Alt kısmı kaplayan zemin */
  background: rgba(0, 0, 0, 0.5); /* Yarı opak siyah zemin */
  z-index: 1;
}

/* Navigation buttons */
.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 100;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .slider-item h3 {
    font-size: 1.5rem;
  }
  
  .slider-item p {
    font-size: 0.9rem;
  }
	.slider-item::before {
  height: 20%; /* Alt kısmı kaplayan zemin */
	}
}

@media (max-width: 480px) {
  .slider-item h3 {
    font-size: 1.2rem;
  }

  .slider-item p {
    font-size: 0.8rem;
  }
	.slider-item::before {
  height: 40%; /* Alt kısmı kaplayan zemin */
	}
}
	 @media (min-width: 1024px) {
  .slider-item::before {
  height: 20%; /* Alt kısmı kaplayan zemin */
	}
}
	  .logo img {
  width: 50px; /* Logo genişliği 100px */
  height: 50px; /* Logo yüksekliği 100px */
  border-radius: 50%; /* Logo'yu yuvarlak yapmak için */
  object-fit: cover; /* Resmin oranını koruyarak kesilmesini sağlar */
}
    .faq-container {
      max-width: 1200px;
      margin: 0 auto;

    }
	  .faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
		
}

    .faq-title {
      text-align: left;
      font-size: 1.1em;
      font-weight: bold;
      margin-bottom: 30px;

      color: #1e3d2f;
      margin: 2rem 0 0 0;
		
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
		
    }
	  .faq-all-link {
  font-size: 0.95em;
  text-decoration: none;
  color: #007bff;
  font-weight: 500;
  transition: color 0.3s;
		   white-space: nowrap;
			   margin: 2rem 0 0 0;
}

.faq-all-link:hover {
  color: #0056b3;
}

    .accordion-item {
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      overflow: hidden;
      border: 1px solid #ddd;
		align-self: start;
    }

    .accordion-header {
      padding: 16px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      background-color: rgba(255, 255, 255, 0.1);
      transition: background 0.2s;
		border-bottom: 1px solid #ddd;
    }

    .accordion-header:hover {
      background-color: #f0f0f0;
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      padding: 0 20px;
      background-color: rgba(255, 255, 255, 0.1);
    }

    .accordion-content p {
      margin: 15px 0;
	padding-top: 10px;
    }

    .accordion-item.active .accordion-content {
      max-height: 500px; /* büyükçe bir değer, içeriğe göre */
    }

    .arrow {
      transition: transform 0.3s;
    }

    .accordion-item.active .arrow {
      transform: rotate(180deg);
    }
	  /* Ana divi hizalama */
.menu-categories-wrapper {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  padding: 10px;
  width: 100%;
  overflow-x: auto; /* Yatay kaydırma */
  -webkit-overflow-scrolling: touch; /* Mobilde daha iyi kaydırma deneyimi */
  scrollbar-width: none; /* Firefox'ta scroll çubuğunu gizler */
  -ms-overflow-style: none; /* Internet Explorer için scroll çubuğunu gizler */
  box-sizing: border-box; /* Sayfa genişliğini etkileyen faktörleri ortadan kaldırır */
}
	  .menu-categories-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari ve Opera için scroll çubuğunu gizler */
}
/* Her kategoriye ait wrapper */
.menu-category-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Yatayda ortalama */
  align-items: center; /* Dikeyde ortalama */
  text-align: center;
  flex-shrink: 0;
  width: auto;
  height: 100%; /* Tam yükseklik, hizalamayı etkileyebilir */
}
	  /* Kategoriler için stil */
.menu-category-wrapper.active {
  font-weight: bold;
  color: #F27D0C; /* Aktif kategori için renk değişimi */
  text-decoration: underline; /* Aktif kategoriye alt çizgi ekleyebiliriz */
}
	  /* Menü Kategorileri Konteyneri */
.menu-categories {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 20px 0;
  justify-content: flex-start;
  align-items: center;
  scroll-behavior: smooth;
  -ms-overflow-style: none; /* Internet Explorer için kaydırma çubuğu gizleme */
  scrollbar-width: none; /* Firefox için kaydırma çubuğu gizleme */
}
	  .menu-categories::-webkit-scrollbar {
  display: none; /* Chrome, Safari ve Opera için kaydırma çubuğu gizleme */
}

/* Her Menü Kategorisi */

.menu-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* Kategori İsimleri */
/* Kategori ismi düzenlemesi */
.menu-category-name {
  font-size: 13px;
  font-weight: bold;
  color: #2D3E2F;
  margin-top: 8px;
  text-align: center;
  position: relative;
  top: 0px;
  display: inline-block;
  width: 100%;
  line-height: 1.2; /* Satırlar arasındaki mesafeyi ayarlıyoruz */
}
	  .menu-category-name span {
  display: block;
}
	  /* Tek kelime olanları tam ortalayacak şekilde hizalama */
.menu-category-name:not(:has(span)) {
  display: flex;
  justify-content: center;
  align-items: center;
}

	  /* Kategoriler için stil */
	  /* Kategori Başlığı */
.category-title {
  font-size: 24px;
  font-weight: bold;
  color: #5d8c4c;
  margin: 20px 0; /* Ürün listesiyle arasında boşluk bırak */
  text-align: left;
  position: relative; /* Kategori başlığının pozisyonunu ayarlıyoruz */
  visibility: visible; /* Başlığın her zaman görünür olmasını sağlıyoruz */
}
.categories {
  display: flex;
  justify-content: space-around;
  padding: 20px;
}

.category-item {
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
}

.category-item:hover {
  text-decoration: underline;
}



/* Ürün Listesi */


/* Ürün Kartı */


.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
	
}

.product-card h3 {
  font-size: 18px;
  margin: 10px 0;
	
}

.product-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

	  
.product-card p.price {
  font-size: 20px;
  color: #5d8c4c;
  margin-bottom: 10px;
    font-weight: bold;
}
.product-card .price {
  font-size: 16px;
  color: #5d8c4c;
  margin-bottom: 10px;
}

.product-card .order-btn {
  background-color: #FF5722;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
	text-align: right;
}

.product-card .order-btn:hover {
  background-color: #D76A03;
}
/* Flexbox düzeni ile p ve button'ı yan yana hizala */
.product-card .button-container {
  display: flex;
  justify-content: space-between; /* Öğeleri sola hizalar */
  gap: 10px; /* Öğeler arasında 10px boşluk bırak */
  align-items: center; /* Yüksekliklerini ortalar */
}
/* Responsive Tasarım */

/* Mobil Görünüm (1 ve 2 kart yan yana) */
@media (max-width: 480px) {
  
}

/* Tablet Görünümü (2 kart yan yana) */
@media (min-width: 481px) and (max-width: 768px) {
  
}

/* Masaüstü Görünümü (3 kart yan yana) */
@media (min-width: 769px) {
  
}
    /* Dil Seçici */
    .lang-dropdown {
      position: relative;
		z-index: 300; /* Header'dan daha yüksek olsun */
    }

    .lang-toggle {
      background-color: white;
      border: none;
      border-radius: 6px;
      padding: 6px 10px;
      font-size: 14px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      color: #2D3E2F;
    }

    .lang-toggle img {
      width: 20px;
      height: 14px;
    }

/* Dil Listesi Şeffaflık ve Uyumluluk Güncellemesi */


.lang-list button {
  width: 100%;
  border: none;
  background: transparent; /* Şeffaf arka plan */
  padding: 10px 14px;
  text-align: left;
  font-size: 14px;
  color: #2D3E2F;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}

.lang-list button:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.lang-list button.active {
  background-color: #2D3E2F;
  color: white;
  font-weight: bold;
}



.lang-list button img,
.lang-toggle img {
  width: 20px;
  height: 14px;
  object-fit: cover;
}
.lang-toggle {
  background-color: transparent; /* Toggle butonu da şeffaf */
  
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: white;
  cursor: pointer;
}
    /* Tost Bildirimi */
    #toast {
      visibility: hidden;
      min-width: 200px;
      background-color: #333;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 10px;
      position: fixed;
      z-index: 300;
      bottom: 100px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 14px;
      opacity: 0;
      transition: opacity 0.5s ease, visibility 0.5s;
    }

    #toast.show {
      visibility: visible;
      opacity: 1;
    }



    main {
      max-width: 960px;
      margin: 0 auto;
      padding: 20px;
    }
	  /* Loading Text */
.loading {
  text-align: center;
  padding: 20px;
  color: #F27D0C;
  font-size: 18px;
  display: none; /* Başlangıçta gizli */
}
	  /* Tüm öğeleri başlangıçta gizle */
.lazy-load {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

/* Görünür olduğunda opacity'yi artır ve görünürlüğü sağla */
.lazy-load.visible {
  opacity: 1;
  visibility: visible;
}
	  /* Ana divi hizalama */
.menu-categories-wrapper {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  padding: 10px;
  width: 100%;
  overflow-x: auto; /* Yatay kaydırma */
  -webkit-overflow-scrolling: touch; /* Mobilde daha iyi kaydırma deneyimi */
  scrollbar-width: none; /* Firefox'ta scroll çubuğunu gizler */
  -ms-overflow-style: none; /* Internet Explorer için scroll çubuğunu gizler */
  box-sizing: border-box; /* Sayfa genişliğini etkileyen faktörleri ortadan kaldırır */
}
	  .menu-categories-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari ve Opera için scroll çubuğunu gizler */
}
/* Her kategoriye ait wrapper */
.menu-category-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Yatayda ortalama */
  align-items: center; /* Dikeyde ortalama */
  text-align: center;
  flex-shrink: 0;
  width: auto;
  height: 100%; /* Tam yükseklik, hizalamayı etkileyebilir */
}
	  /* Kategoriler için stil */
.menu-category-wrapper.active {
  font-weight: bold;
  color: #F27D0C; /* Aktif kategori için renk değişimi */
  text-decoration: underline; /* Aktif kategoriye alt çizgi ekleyebiliriz */
}
	  /* Menü Kategorileri Konteyneri */
.menu-categories {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 20px 0;
  justify-content: flex-start;
  align-items: center;
  scroll-behavior: smooth;
  -ms-overflow-style: none; /* Internet Explorer için kaydırma çubuğu gizleme */
  scrollbar-width: none; /* Firefox için kaydırma çubuğu gizleme */
}
	  .menu-categories::-webkit-scrollbar {
  display: none; /* Chrome, Safari ve Opera için kaydırma çubuğu gizleme */
}

/* Her Menü Kategorisi */


.menu-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* Kategori İsimleri */
/* Kategori ismi düzenlemesi */
.menu-category-name {
  font-size: 13px;
  font-weight: bold;
  color: #2D3E2F;
  margin-top: 8px;
  text-align: center;
  position: relative;
  top: 0px;
  display: inline-block;
  width: 100%;
  line-height: 1.2; /* Satırlar arasındaki mesafeyi ayarlıyoruz */
}
	  .menu-category-name span {
  display: block;
}
	  /* Tek kelime olanları tam ortalayacak şekilde hizalama */
.menu-category-name:not(:has(span)) {
  display: flex;
  justify-content: center;
  align-items: center;
}

	  /* Kategoriler için stil */
	  /* Kategori Başlığı */
.category-title {
  font-size: 24px;
  font-weight: bold;
  color: #2D3E2F;
  margin: 20px 0; /* Ürün listesiyle arasında boşluk bırak */
  text-align: left;
  position: relative; /* Kategori başlığının pozisyonunu ayarlıyoruz */
  visibility: visible; /* Başlığın her zaman görünür olmasını sağlıyoruz */
}
.categories {
  display: flex;
  justify-content: space-around;
  padding: 20px;
}

.category-item {
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
}

.category-item:hover {
  text-decoration: underline;
}



/* Ürün Listesi */


/* Ürün Kartı */


.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-card h3 {
  font-size: 18px;
  margin: 10px 0;
	
}

.product-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

	  
.product-card p.price {
  font-size: 20px;
  color: #5d8c4c;
  margin-bottom: 10px;
    font-weight: bold;
}
.product-card .price {
  font-size: 16px;
  color: #5d8c4c;
  margin-bottom: 10px;
}

.product-card .order-btn {
  background-color: #FF5722;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
	text-align: right;
}

.product-card .order-btn:hover {
  background-color: #D76A03;
}
/* Flexbox düzeni ile p ve button'ı yan yana hizala */
.product-card .button-container {
  display: flex;
  justify-content: space-between; /* Öğeleri sola hizalar */
  gap: 10px; /* Öğeler arasında 10px boşluk bırak */
  align-items: center; /* Yüksekliklerini ortalar */
}
/* Responsive Tasarım */

/* Mobil Görünüm (1 ve 2 kart yan yana) */
@media (max-width: 480px) {
  
}

/* Tablet Görünümü (2 kart yan yana) */
@media (min-width: 481px) and (max-width: 768px) {
  
}

/* Masaüstü Görünümü (3 kart yan yana) */
@media (min-width: 769px) {
  
}
    /* Dil Seçici */
    .lang-dropdown {
      position: relative;
    }

    .lang-toggle {
      background-color: white;
      border: none;
      border-radius: 6px;
      padding: 6px 10px;
      font-size: 14px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      color: #2D3E2F;
    }

    .lang-toggle img {
      width: 20px;
      height: 14px;
    }

/* Dil Listesi Şeffaflık ve Uyumluluk Güncellemesi */


.lang-list button {
  width: 100%;
  border: none;
  background: transparent; /* Şeffaf arka plan */
  padding: 10px 14px;
  text-align: left;
  font-size: 14px;
  color: #2D3E2F;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}

.lang-list button:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.lang-list button.active {
  background-color: #2D3E2F;
  color: white;
  font-weight: bold;
}



.lang-list button img,
.lang-toggle img {
  width: 20px;
  height: 14px;
  object-fit: cover;
}
.lang-toggle {
  background-color: transparent; /* Toggle butonu da şeffaf */
  
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: white;
  cursor: pointer;
}
    /* Tost Bildirimi */
    #toast {
      visibility: hidden;
      min-width: 200px;
      background-color: #333;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 10px;
      position: fixed;
      z-index: 300;
      bottom: 100px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 14px;
      opacity: 0;
      transition: opacity 0.5s ease, visibility 0.5s;
    }

    #toast.show {
      visibility: visible;
      opacity: 1;
    }


    main {
      max-width: 960px;
      margin: 0 auto;
      padding: 20px;
    }
	  /* Loading Text */
.loading {
  text-align: center;
  padding: 20px;
  color: #F27D0C;
  font-size: 18px;
  display: none; /* Başlangıçta gizli */
}
	  /* Tüm öğeleri başlangıçta gizle */
.lazy-load {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

/* Görünür olduğunda opacity'yi artır ve görünürlüğü sağla */
.lazy-load.visible {
  opacity: 1;
  visibility: visible;
}
	  
	  /* İçerik */
	.yamac-kirbahcesi-page-container {
	  width: 100%;
      padding: 1rem;
      display: flex;
      justify-content: center;
      margin: 0 auto;
      flex-direction: column;
      align-items: center;
      
		
 
  margin: 0 auto;
		 max-width: 960px;
		
		justify-content: space-between;
		
    }
    .yamac-kirbahcesi-content-block {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 960px;
      padding: 0rem;
      background-color: transparent;
      gap: 1rem;
    }
    .yamac-kirbahcesi-product-image {
      width: 100%;
		
    }
    .yamac-kirbahcesi-product-image img.main-image {
      width: 100%;
      height: auto;
      border-radius: 12px;
      max-height: 480px;
      object-fit: cover;
      display: block;
		position: relative;
  z-index: 1;
    }
	  .yamac-kirbahcesi-product-image img.main-image {
  transform: translateY(0px);
  transition: transform 0.3s ease;
}


    .image-gallery-scroll {
      display: flex;
      overflow-x: auto;
      gap: 0.5rem;
      padding: 0.5rem 0;
      scrollbar-width: none;
      -ms-overflow-style: none;
      margin-bottom: 0.5rem;
    }
    .image-gallery-scroll::-webkit-scrollbar {
      display: none;
    }
    .image-gallery-scroll img {
      height: 80px;
      border-radius: 8px;
      cursor: pointer;
      flex-shrink: 0;
      transition: transform 0.3s ease, outline 0.3s ease;
    }
    .image-gallery-scroll img:hover {
      transform: scale(1.05);
    }
    .image-gallery-scroll img.active {
      outline: 2px solid #d18d18;
      outline-offset: 2px;
    }
    .product-info {
      width: 100%;
		
		
    }
    .product-info h1 {
      font-size: 1.3rem;
      color: #1e3d2f;
		margin-bottom: 1rem; /* Ürün başlığına daha fazla boşluk */
    }
    .product-info .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }
   
    .product-info .price {
      font-size: 1.4rem;
      font-weight: bold;
      color: #5d8c4c;
      margin-bottom: 1rem;
	
    }
    .product-info p {
      font-size: 0.95rem;
      color: #666;
      margin-bottom: 1rem;
      line-height: 1.6;
    }
    .product-info h3 {
      font-size: 1rem;
      color: #d18d18;
      margin-bottom: 0.5rem;
		padding: 1px 0 0 20px;
    }
	  .product-info h3.underline {
      text-decoration: underline;
    }
    .product-info ul {
      padding-left: 1.2rem;
      font-size: 0.9rem;
      color: #666;
      margin-bottom: 0rem;
    }
	  .tag {
      background-color: #f3f3f3;
      color: #555;
      font-size: 0.8rem;
      padding: 0.3rem 0.6rem;
      border-radius: 6px;
      font-style: italic;
      border: none;
      box-shadow: none;
      display: inline-block;
    }
    .related-products {
      max-width: 1400px;
      width: 100%;
      padding: 0rem;
    }
    .related-products h3 {
      font-size: 1.1rem;
      color: #1e3d2f;
      margin: 2rem 0 1rem 0;
    }
    .related-grid {
      display: flex;
      overflow-x: auto;
      gap: 0.75rem; /* Ürünler arasındaki boşluk biraz azaltılabilir */
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 0.5rem;
    }
	  .related-grid::-webkit-scrollbar {
  display: none; /* ← bu da WebKit (Chrome, Safari) için */
}
    .related-card {
      flex: 0 0 auto;
      width: 160px;
      background-color: rgba(255, 255, 255, 0.5);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
      text-align: center;
      font-size: 0.9rem;
      color: #333;
      scroll-snap-align: start;

    }
	 
    .related-card img {
      width: 100%;
      height: 100px;
      object-fit: cover;
    }
	  .related-card img:hover {
  transform: scale(1.05); /* Hoverda ürün görselinin büyümesi */
}
    .related-card .title {
      font-weight: bold;
      padding: 0.5rem;
    }
    .related-card .price {
      color: #5d8c4c;
      font-weight: 600;
      padding-bottom: 0.75rem;
		text-align: center;
    }
    @media (min-width: 768px) {
      .yamac-kirbahcesi-content-block {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
      }
      .yamac-kirbahcesi-product-image {
        width: 55%;
        padding-right: 0;
      }
      .product-info {
        width: 45%;
        padding-left: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
      }
    }
    @media (min-width: 1024px) {
      .product-info h2 {
        font-size: 2.2rem;
      }
      .product-info p, .product-info ul {
        font-size: 1.05rem;
      }
      .yamac-kirbahcesi-product-image img.main-image {
        max-height: 520px;
      }
    }
	  .detail-link {
    display: inline-block;
    background-color: #1e3d2f;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: background-color 0.3s;
  }
  .detail-link:hover {
    background-color: #2c5c42;
  }
	  .fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-delay-1 { animation-delay: 0.2s; }
.fade-delay-2 { animation-delay: 0.4s; }
.fade-delay-3 { animation-delay: 0.6s; }
.fade-delay-4 { animation-delay: 0.8s; }
	  
	.share-button {
  background: #fff6e5;
  color: #b25700;
  border: none;
  padding: 0.4rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
  .share-button:hover {
    background-color: #d18d18;
  }
  .action-icons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
	    .reserve-btn,
    .reserve-btn-alt {
      background-color: #eb7a1f;
      color: white;
      padding: 0.4rem 1rem;
      font-size: 0.9rem;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
		text-decoration: none;
    }

    .reserve-btn:hover,
    .reserve-btn-alt:hover {
      background-color: #c8640d;
      color: white;
		text-decoration: none;
    }
	    .image-icons {
  display: flex;
  gap: 0.1rem; /* Butonlar arasındaki boşluk */
  margin-left: auto; /* Sağ yaslama */
	   
}

    /* Paylaşım butonları */
.image-icons .icon-button {
  background: none; /* Arka planı kaldırdık */
  color: #000000; /* Beyaz renk */
  border: none; /* Beyaz kenar çizgisi */
  padding: 0.35rem 0.75rem; /* Buton boyutu */
  border-radius: 4px; /* Hafif yuvarlak köşe */
  font-size: 1rem; /* İkonların boyutu */
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease; /* Geçiş animasyonu */
}

.image-icons .icon-button:hover {
  background-color: red; /* Hoverda beyaz arka plan */
  color: var(--primary); /* Hoverda metin rengi değişir */
}

/* Icon düzenlemeleri */
.image-icons svg {
  stroke: currentColor; /* İkonlar renk ile uyumlu olacak */
  width: 20px;
  height: 20px;
}
	  	  .back-btn {
  background-color: transparent;
  border: none;
  font-size: 16px;
  color: #F27D0C;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px;
}

.back-btn i {
  font-size: 20px;
}

.product-list {
  display: grid;
  gap: 20px;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 480px) {
  .product-list {
    grid-template-columns: 1fr;
    padding: 0;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .product-list {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
}

@media (min-width: 769px) {
  .product-list {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 20px;
  }
}