@import url("https://fonts.googleapis.com/css2?family=Electrolize&display=swap");

/*! base css start */
* {
  margin: 0;
  padding: 0;
}

html, body {
    height: 100%;
    overflow-x: hidden;
}

body {
  font-family: "Electrolize", sans-serif;
  background-color: #000;
  color: #fff;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Aydınlık mod: en son yazılır, önceliği alır */
body.light-mode {
  background-color: #f5f8fa; /* kırık beyaz */
  font-weight: 700;
  color: #2c3e50;
}

/* Koyu mod: sadece .dark varsa çalışır */
body.dark-mode:not(.light) {
  background-color: #121212;
  font-weight: 700;
  color: #f0f0f0;
}

/*! base css end */

/*! navbar start */
.navbar {
  background-color: black;
  color: white;
  height: 50px;
  padding: 10px 50px;
  background-color: transparent;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(6px);
  user-select: none;
}

.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-left: 10px;
}


@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

/* Logo dışı çizgi kutusu */
.logo-wrapper {
  position: relative;
  display: inline-block;
  padding: 0 10px 10px;
}

/* Çizgili yapı kapsayıcı */
.logo-container {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  width: max-content;
}

/* Logo metni */
.logo {
  font-family: 'Anton', sans-serif;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #ff0000;
  user-select: none;
  white-space: nowrap;
  -webkit-text-stroke: 1.2px #111;
  text-stroke: 1.2px #111;
  text-shadow: 2px 2px 0 #333, 4px 4px 10px rgba(0,0,0,0.3);
  position: relative;
  z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
  .logo {
    font-size: 30px;
    text-shadow: 1px 1px 0 #333, 2px 2px 6px rgba(0,0,0,0.25);
  }
}
@media (max-width: 480px) {
  .logo {
    font-size: 24px; /* Bu değer aşağıda tekrar ayarlanacak */
  }
}
@media (max-width: 360px) {
  .logo {
    font-size: 20px;
  }
}

/* Dikey Çizgiler */
.line-vertical {
    position: absolute;
    top: -10px;
    bottom: -10px;
    width: 3px;
    background: rgba(50, 50, 50, 0.9);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    border-radius: 1px;
    z-index: 1;
}
.v1 { left: 4%; }
.v2 { left: 18%; }
.v3 { left: 32%; }
.v4 { left: 50%; }
.v5 { left: 68%; }
.v6 { left: 82%; }
.v7 { left: 96%; }
.line-horizontal {
    position: absolute;
    height: 4px;
    background: rgba(50, 50, 50, 0.9);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    left: 0;
    width: 100%;
    z-index: 1;
}
.h1 { top: 28%; }
.h2 { top: 54%; }
.h3 { top: 78%; }
body.dark-mode .logo {
    color: #ff0000;
    -webkit-text-stroke: 1.2px #fff;
    text-stroke: 1.2px #fff;
    text-shadow: 2px 2px 0 #000, 4px 4px 10px rgba(0,0,0,0.5);
}
body.light-mode .logo {
    color: #ff0000;
    -webkit-text-stroke: 1.2px #222;
    text-stroke: 1.2px #222;
    text-shadow: 1px 1px 0 #222, 3px 3px 6px rgba(0,0,0,0.25);
}
body.dark-mode .line-vertical,
body.dark-mode .line-horizontal {
    background: rgba(255, 255, 255, 0.7);
}
body.light-mode .line-vertical,
body.light-mode .line-horizontal {
    background: rgba(34, 34, 34, 0.8);
}
.rota-ana-baslık {
  list-style: none;
  display: flex;
  gap: 25px;
  flex: 2;
  justify-content: center;
}

/* ----------------------- */
/* Navbar linkleri - Dark Mode Varsayılan */
/* ----------------------- */
.rota-ana-baslık-item a {
  text-decoration: none;
  font-weight: 600; /* Normal kalınlık */
  font-size: 17px;
  user-select: none;
  transition: color 0.3s ease, font-weight 0.3s ease;
  color: #FFFFFF; /* Dark mode normal link */
}

/* Hover efekti - Dark Mode */
body.dark-mode .rota-ana-baslık-item a:hover {
  color: #ec0909;
}

/* Aktif menü öğesi - Dark Mode */
body.dark-mode .rota-ana-baslık-item.aktive a {
  color: #ec0909;
  font-weight: 700; /* Kalın */
  text-decoration: underline;
}

/* ----------------------- */
/* Light Mode Ayarları */
/* ----------------------- */

/* Normal linkler - Light Mode */
body.light-mode .rota-ana-baslık-item a {
  color: #000000;
}

/* Hover efekti - Light Mode */
body.light-mode .rota-ana-baslık-item a:hover {
  color: #ec0909;
}

/* Aktif menü öğesi - Light Mode */
body.light-mode .rota-ana-baslık-item.aktive a {
  color: #ec0909;
  font-weight: 700; /* Kalın */
  text-decoration: underline;
}


.profile-contanier {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  min-width: unset;
  gap: 12px;
  flex-shrink: 0;
}

.profile-text {
  display: block;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: visible;
  text-overflow: unset;
}

/* Sabit genişlikler */
body.lang-tr .profile-text { width: 170px; }
body.lang-en .profile-text { width: 130px; }
body.lang-ru .profile-text { width: 160px; }

.lang-toggle {
  display: flex;
  gap: 8px;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15); /* light mode için koruyucu alan */
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 4px 6px;
  backdrop-filter: blur(3px);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.lang-toggle img {
  width: 32px;
  height: 22px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.lang-toggle img:hover {
  border-color: #ff0000;
  transform: scale(1.05);
}

.lang-toggle img.selected {
  border-color: #ff0000;
  transform: scale(1.1);
}

.lang-toggle img.active-flag {
  border-color: #ff0000;
  transform: scale(1.1);
  transition: all 0.3s ease;
}

body.light-mode .lang-toggle {
  background-color: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.15);
}

.toggle {
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
  background-color: #3a3a3a;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.toggle-icon {
  position: absolute;
  font-size: 1rem;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.toggle-icon.moon {
  color: #f1c40f;
  opacity: 1;
  transform: scale(1);
}

.toggle-icon.sun {
  color: #f39c12;
  opacity: 0;
  transform: scale(0.8);
}

body.light-mode .toggle {
  background-color: #f5f5f5;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

body.light-mode .toggle-icon.moon {
  opacity: 0;
  transform: scale(0.8);
}

body.light-mode .toggle-icon.sun {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 480px) {
  .logo {
    font-size: 32px;
    -webkit-text-stroke: 0.6px white;
    text-stroke: 0.6px white;
    text-shadow:
      0 0 3px #ff1a1a,
      0 0 6px #ff1a1a,
      0 0 9px #ff4d4d,
      0 0 12px #ff4d4d;
  }

  .logo::after {
    height: 4px;
    background-image: repeating-linear-gradient(
      to right,
      #ff1a1a 0px,
      #ff1a1a 4px,
      transparent 4px,
      transparent 8px
    );
  }
}
/*! navbar end */

/*! sidebar start */
.sidebar {
  background-color: black;
  color: white;
  height: 100%;
  width: 70px; /* Varsayılan büyük ekran genişliği */
  padding-top: 15px;
  row-gap: 40px;
  position: fixed;
  top: 10;
  transition: 0.3s;
  z-index: 5; /* Filtreden daha düşük olacak */
}

.fab {
  padding: 8px;
  font-size: 30px;
  width: 32px;
  height: 32px;
  text-align: center;
  text-decoration: none;
  margin: 10px 5px;
  transition: 0.5s all;
  line-height: 32px;
  border-radius: 50%;
  display: inline-block;
}

.fab:hover {
  opacity: 0.6;
  transform: scale(1.2) rotate(360deg);
}



.fa-facebook-f {
  background: #3B5998;
  color: white;
}

.fa-instagram {
  background: #8134AF;
  color: white;
}

.fa-google {
  background: #dd4b39;
  color: white;
}

.fa-envelope {
  background: white;
  color: #3B5998;
}

.fa-twitter {
  background: #55ACEE;
  color: white;
}

.fa-pinterest {
  background: #cb2027;
  color: white;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
}

.fa-youtube {
  background: #bb0000;
  color: white;
}

.icon-thumbnail {
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
}

.sidebar i {
  color: white;
  font-size: 20; /* Bu değer responsive'de güncellenecek */
  cursor: pointer;
}

/*! sidebar end */

/*! featured content start */
.content-wrapper {
  margin-left: 70px; /* Varsayılan büyük ekran değeri */
}

.featured-content {
  padding: 50px;
  height: calc(70vh - 100px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.featured-title {
  width: 200px; /* Büyük ekran için varsayılan genişlik */
  border-radius: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  /* Büyük ekran için mevcut konumlandırmayı koru, responsive'de değişecek */
  position: relative;
  border: 3px solid #000; /* Kırmızıdan Siyaha */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  top: auto;
  left: auto;
  transform: none;
  z-index: auto;
}

.featured-desc {
  width: 350px;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px;
  margin: 30px 0;
  color: black;
  font-weight: bold;
  font-size: 18px;
  user-select: none;
  z-index: 2;
  position: relative;
  text-align: left;
}

/*! featured content end */

/*! filter start */
.malzemeler-list-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px auto;
  padding: 0 10px;
  max-width: 100%;
  box-sizing: border-box;
  z-index: 6; /* Sidebar'dan daha yüksek bir değer */
  position: relative; /* z-index'in çalışması için */
}

.filter-btn {
  display: inline-block;
  margin: 5px 8px; /* Bu marjinler responsive'de sıfırlanacak */
  padding: 8px 16px;
  font-size: 16px;
  border-radius: 10px;
  background-color: #111;
  color: #fff;
  border: 1px solid #555;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-btn:hover {
  background-color: #ec0909;
  color: #fff;
}

/* Aktif buton (seçilen kategori) */
.filter-btn.active {
  background-color: #ec0909;
  color: #fff;
  border-color: #ec0909;
}

/* Light mode */
body.light-mode .filter-btn {
  background-color: #f0f0f0;
  color: #222;
  border: 1px solid #ccc;
}

body.light-mode .filter-btn.active {
  background-color: #ec0909;
  color: white;
  border-color: #ec0909;
}

/* Light mode hover */
body.light-mode .filter-btn:hover {
  background-color: #ec0909;
  color: white;
  border-color: #ec0909;
}

/*! filter end */

/*! malzemeler list start */
.malzemeler-list-container {
  margin-left: 70px; /* Varsayılan büyük ekran değeri */
  user-select: none;
  transition: all 0.3s ease;
}

.malzemeler-list-container.hidden {
  display: none;
}

.malzemeler-list {
  list-style: none;
  padding: 5px;
  height: 200px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  transform: translateX(0);
  transition: 1s all ease-in-out;
}

.malzemeler-list-wrapper {
  overflow: hidden;
  position: relative;
}

.malzemeler-item {
  position: relative;
  cursor: pointer; /* Fare işaretçisi değişir */
}

.malzemeler-item:hover .malzemeler-item-title,
.malzemeler-item:hover .malzemeler-item-buttons {
  opacity: 1;
}

.malzemeler-item-img {
  width: 270px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  user-select: none;          /* Seçimi engeller */
  -webkit-user-drag: none; /* Safari/Chrome sürüklemeyi engeller */
  -moz-user-select: none;
  -ms-user-select: none;
}

/* LIGHT MODE – açık arka plan, beyaz çerçeve */
body.dark-mode .malzemeler-item-img {
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

/* DARK MODE – koyu arka plan, siyah çerçeve */
body:not(.dark-mode) .malzemeler-item-img {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(0, 0, 0, 0.5);
}

.malzemeler-item:hover .malzemeler-item-img {
  transform: scale(1.05);
}


.malzemeler-item::after {
  content: "search"; /* Material Icons adı */
  font-family: 'Material Icons';
  font-size: 24px;
  color: rgb(250, 3, 3);
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* İkona tıklanamaz, alttaki resme tıklama devam eder */
}

.malzemeler-item:hover::after {
  opacity: 1;
}

.malzemeler-item-title {
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: 1s all ease-in-out;
  text-align: center;
  display: inline-block;
  padding: 5px 30px;
  white-space: nowrap; /* Yazının tek satır kalması için */
}

.arrow {
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 130px; /* biraz daha büyük */
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8; /* belirginlik arttı */
  color: #ffffff; /* açık tema için beyaz */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6); /* daha net görünür */
  transition: 0.5s ease all;
  cursor: pointer;
}

body.light-mode .arrow {
  color: #8ba6d3;
  text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.6);
}

body.dark-mode .arrow {
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.arrow:hover {
  opacity: 0.8;
}
/*! malzemeler list end */

/*! dark mode start */
.container.active {
  background-color: white;
}

.sidebar.active {
  background-color: white;
  height: 100%;
  row-gap: 40px;
  position: fixed;
  top: 10;
  transition: 0.3s;
}

.sidebar i.active {
  color: black;
}
.malzemeler-list-title{
  color: white;
  margin-left: 20px;
}


.malzemeler-list-title.active{
  color: black;
  margin-left: 20px;
}

.toggle.active {
  background-color: black;
}

.toggle-ball.active {
  background-color: white;
  transform: translateX(-25px);
}

/*! dark mode end */

/*! repsonsive start */
@media only screen and (max-width: 800px){
  .menü-container{
    display: none;
  }

  .featured-content{
    height: 50vh;
  }

  .featured-title{
    width: 200px;
  }

  .featured-desc{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    max-width: 200px;
  }
}

/*! repsonsive end */

/*! contact section start */

body.dark-mode {
  background-color: #000;
  color: #fff;
}

body.light-mode .malzemeler-item-title {
  background-color: rgba(255, 255, 255, 0.6);
  color: #000;
}

.contact-info-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px calc(5% + 70px);
  box-sizing: border-box;
  align-items: stretch; /* 🆕 Harita ve içerik aynı hizada olsun */
}

.contact-map,
.contact-form-info {
  flex-grow: 1;
  flex-basis: 400px;
}

/* Harita kapsayıcıları */
.contact-map {
  display: flex;
  flex-direction: column;
  height: 100%; /* 🆕 İçeriğe göre uzasın */
}

#map-wrapper {
  position: relative;
  width: 100%;
  height: 100%; /* 🆕 Sabit değil, esnek yükseklik */
  border-radius: 8px;
  overflow: hidden;
  flex-grow: 1;
}

#map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 2px solid currentColor;
  pointer-events: none;
  flex-grow: 1;
}

/* ------------------------------ */
/* TEL & MAIL linklerini kırmızı yap */
/* ------------------------------ */

.contact-form-info a[href^="mailto:"],
.contact-form-info a[href^="tel:"] {
  color: #ec0909 !important;
  font-weight: 600;
  text-decoration: none;
}

.contact-form-info a[href^="mailto:"]:hover,
.contact-form-info a[href^="tel:"]:hover {
  color: #b80606 !important;
  text-decoration: underline;
}

/* ------------------------------ */
/* Yazı aralıkları dengeli */
/* ------------------------------ */

.contact-form-info p,
.contact-map p {
  line-height: 1.7;
  margin-bottom: 18px;
  margin-left: 20px;
}

.contact-form-info li {
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Belirli başlık altına ekstra boşluk */
.contact-form-info h2[data-i18n="contactHeader"],
.contact-form-info h3[data-i18n="contactInfo"],
.contact-map h2 {
  margin-bottom: 25px;
  margin-left: 20px;
}

/*! contact section end */


/* Lightbox ana kapsayıcısı */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    display: none; /* Varsayılan olarak gizli kalır */
}

/* Kapatma butonu */
.close-btn {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10002; /* Her zaman en üstte */
}

.close-btn:hover,
.close-btn:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Resim ve başlığı kapsayan div */
.lightbox-content-wrapper {
    position: relative; /* Okların buna göre konumlanması için */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    max-height: 90vh;
}

/* Büyütülen resim */
#lightbox-img {
    display: block;
    max-width: 100%;
    max-height: 75vh;
    height: auto;
    border-radius: 8px;
    user-select: none;
    object-fit: contain;
}

/* Resim başlığı */
#lightbox-caption {
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
    user-select: none;
    pointer-events: none;
    max-width: 100%;
    padding: 0 20px;
}

/* Geçiş okları */
.lightbox-nav {
     position: absolute;
  top: 50%;
  font-size: 80px;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  cursor: pointer;
  transform: translateY(-50%);
  width: 70px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}


.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

.lightbox-nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Altındaki başlık */
#lightbox > div:last-child, /* Senin kodda lightboxTitle direkt child olarak ekleniyor */
#lightbox > div {
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  width: 90%;
  max-width: 800px;
  user-select: none;
  pointer-events: none; /* Başlık üstüne tıklama kapanmayı bozmasın */
}

.whatsapp-button {
  width: 50px;
  height: 50px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.6);
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  transition: transform 0.6s ease;
}
.whatsapp-button i {
  width: 100%;
  height: 100%;
  font-size: 58px;
  margin: 0;
  padding: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-button:hover {
  transform: scale(1.01) rotate(360deg);
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.8);
  opacity: 0.9;
  transition: transform 0.9s ease;
}

     footer {
        width: 100%;
        padding: 10px 10px 30px 10px;
        font-size: 14px;
        line-height: 1.4;
        box-sizing: border-box;
        text-align: center;
        color: #f66c6c;
        font-family: sans-serif;
    }

/* ============================================== */
/* SON VE KAPSAMLI RESPONSIVE AYARLAMALAR */
/* ============================================== */

@media (max-width: 1300px) {
    body {
        font-size: 14px;
    }
    .logo {
        font-size: 36px;
    }

    .profile-contanier {
        gap: 8px;
    }
    .profile-text {
        font-size: 13px;
    }
    .lang-toggle img {
        width: 28px;
        height: 18px;
    }
    
    .toggle {
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
  background-color: #3a3a3a;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.toggle-icon {
  position: absolute;
  font-size: 1rem;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.toggle-icon.moon {
  color: #f1c40f;
  opacity: 1;
  transform: scale(1);
}

.toggle-icon.sun {
  color: #f39c12;
  opacity: 0;
  transform: scale(0.8);
}

body.light-mode .toggle {
  background-color: #f5f5f5;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

body.light-mode .toggle-icon.moon {
  opacity: 0;
  transform: scale(0.8);
}

body.light-mode .toggle-icon.sun {
  opacity: 1;
  transform: scale(1);
}
   
    .sidebar {
        width: 55px;
        padding-top: 70px;
        row-gap: 6px;
        z-index: 5; /* Ekledik */
    }
    /* Sidebar ikonları için yeni kurallar */
    .sidebar .fab, .sidebar .whatsapp-button {
        font-size: 1.9rem; /* İkon boyutunu küçült */
        width: 45px;      /* Buton/ikon kapsayıcı genişliğini küçült */
        height: 45px;     /* Buton/ikon kapsayıcı yüksekliğini küçült */
        line-height: 45px; /* Dikey hizalama için */
        padding: 0;       /* Gerekirse padding'i sıfırla */
        margin: 15px auto; /* Yukarıdan/aşağıdan boşluk, yatayda ortala */
    }
    .sidebar a { /* A etiketleri, ikonları kapsıyorsa */
        display: flex; /* İçindeki ikonu ortalamak için */
        justify-content: center;
        align-items: center;
        width: 45px; /* Kapsayıcının boyutu */
        height: 45px; /* Kapsayıcının boyutu */
        margin: 15 auto; /* Sidebar içinde ortalamak için */
    }

    

    .content-wrapper {
        /* Sidebar 55px + ek boşluk = 65px */
        margin-left: calc(60px + 10px) !important; /* Total 65px */
    }
     .featured-content {
        height: 250px; /* Biraz daha küçülttük */
        padding: 15px;
        margin-bottom: 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        overflow: hidden;
        padding-top: 15px;
    }
    .featured-title {
        width: 100px !important;
        height: 100px !important;
        top: 15px !important;
        left: 15px !important;
        border: 3px solid #000;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        z-index: 3;
    }
    .featured-desc {

        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        width: auto !important;
        max-width: 90% !important;
        background-color: rgba(255, 255, 255, 0.6) !important;
        color: black !important;
        text-shadow: none !important;
        padding: 8px !important;
        border-radius: 5px;
        font-size: 13px !important; /* Metin boyutunu biraz küçült */
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: auto;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 4; /* Satır sayısını ayarla */
        -webkit-box-orient: vertical;
    }
 
    .malzemeler-list-filter {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        z-index: 6; /* Sidebar'dan daha yüksek olsun */
        position: relative; /* z-index'in çalışması için */
        padding-left: calc(65px + 10px); /* Sidebar genişliği + ek boşluk (örneğin 10px) */
        width: calc(100% - (65px + 10px)); /* Toplam genişlikten sol boşluğu çıkar */
        margin-left: auto; /* Kalan kısmı ortalamak için */
        margin-right: auto;
    }

        .filter-btn {
        font-size: 16px;
        padding: 6px 10px;
        margin: 0;
        width: auto;
        max-width: 160px;
    }

    .malzemeler-list-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
    }
    .malzemeler-list {
        display: flex;
        flex-wrap: nowrap;
        padding: 10px 0;
        height: auto;
        column-gap: 15px;
    }
    .malzemeler-item {
        min-width: 200px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    .malzemeler-item-img {
        width: 100%;
        height: 140px;
    }
    .malzemeler-item-title {
        font-size: 12px;
        padding: 4px 10px;
    }
    .arrow {
        display: none !important;
    }
    .contact-info-wrapper {
        /* content-wrapper margin-left ile aynı boşluğu koruyacak şekilde ayarla */
        padding: 20px calc(15px + 30px) 20px 75px; /* Sağdan da boşluk ekledik */
        gap: 15px;
    }
    .contact-map,
    .contact-form-info {
        max-width: none; /* Bu boyutta tam genişlik kullanabilirler */
        width: 100%;
    }
    .contact-map iframe {
        height: 250px;
    }
}

@media (max-width: 1200px) {
    body {
        font-size: 14px;
    }
    .navbar {
        padding: 10px 20px;
    }
    .logo {
        font-size: 36px;
    }
    .rota-ana-baslık {
        gap: 12px;
        white-space: nowrap;
    }
    .rota-ana-baslık-item a {
        font-size: 14px;
        padding: 4px 8px;
    }
    .profile-contanier {
        gap: 8px;
    }
    .profile-text {
        font-size: 13px;
    }
    .lang-toggle img {
        width: 28px;
        height: 18px;
    }
    
    .toggle {
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
  background-color: #3a3a3a;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.toggle-icon {
  position: absolute;
  font-size: 1rem;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.toggle-icon.moon {
  color: #f1c40f;
  opacity: 1;
  transform: scale(1);
}

.toggle-icon.sun {
  color: #f39c12;
  opacity: 0;
  transform: scale(0.8);
}

body.light-mode .toggle {
  background-color: #f5f5f5;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

body.light-mode .toggle-icon.moon {
  opacity: 0;
  transform: scale(0.8);
}

body.light-mode .toggle-icon.sun {
  opacity: 1;
  transform: scale(1);
}
   
    .sidebar {
        width: 55px;
        padding-top: 70px;
        row-gap: 6px;
        z-index: 5; /* Ekledik */
    }
    /* Sidebar ikonları için yeni kurallar */
    .sidebar .fab, .sidebar .whatsapp-button {
        font-size: 1.4rem; /* İkon boyutunu küçült */
        width: 45px;      /* Buton/ikon kapsayıcı genişliğini küçült */
        height: 45px;     /* Buton/ikon kapsayıcı yüksekliğini küçült */
        line-height: 45px; /* Dikey hizalama için */
        padding: 0;       /* Gerekirse padding'i sıfırla */
        margin: 5px auto; /* Yukarıdan/aşağıdan boşluk, yatayda ortala */
    }
    .sidebar a { /* A etiketleri, ikonları kapsıyorsa */
        display: flex; /* İçindeki ikonu ortalamak için */
        justify-content: center;
        align-items: center;
        width: 45px; /* Kapsayıcının boyutu */
        height: 45px; /* Kapsayıcının boyutu */
        margin: 0 auto; /* Sidebar içinde ortalamak için */
    }

    .content-wrapper {
        /* Sidebar 55px + ek boşluk = 65px */
        margin-left: calc(60px + 10px) !important; /* Total 65px */
        padding-top: 20px;
    }
     .featured-content {
        height: 250px; /* Biraz daha küçülttük */
        padding: 15px;
        margin-bottom: 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        overflow: hidden;
        padding-top: 15px;
    }
    .featured-title {
        width: 100px !important;
        height: 100px !important;
        top: 15px !important;
        left: 15px !important;
        border: 3px solid #000;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        z-index: 3;
    }
    .featured-desc {

        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        width: auto !important;
        max-width: 90% !important;
        background-color: rgba(255, 255, 255, 0.6) !important;
        color: black !important;
        text-shadow: none !important;
        padding: 8px !important;
        border-radius: 5px;
        font-size: 13px !important; /* Metin boyutunu biraz küçült */
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: auto;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 4; /* Satır sayısını ayarla */
        -webkit-box-orient: vertical;
    }
 
    .malzemeler-list-filter {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
        z-index: 6; /* Sidebar'dan daha yüksek olsun */
        position: relative; /* z-index'in çalışması için */
        padding-left: calc(65px + 10px); /* Sidebar genişliği + ek boşluk (örneğin 10px) */
        width: calc(100% - (65px + 10px)); /* Toplam genişlikten sol boşluğu çıkar */
        margin-left: auto; /* Kalan kısmı ortalamak için */
        margin-right: auto;
    }

        .filter-btn {
        font-size: 15px;
        padding: 6px 10px;
        margin: 0;
        width: auto;
        max-width: 160px;
    }

    .malzemeler-list-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
    }
    .malzemeler-list {
        display: flex;
        flex-wrap: nowrap;
        padding: 10px 0;
        height: auto;
        column-gap: 15px;
    }
    .malzemeler-item {
        min-width: 200px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    .malzemeler-item-img {
        width: 100%;
        height: 140px;
    }
    .malzemeler-item-title {
        font-size: 12px;
        padding: 4px 10px;
    }
    .arrow {
        display: none !important;
    }
    .contact-info-wrapper {
        /* content-wrapper margin-left ile aynı boşluğu koruyacak şekilde ayarla */
        padding: 20px calc(15px + 30px) 20px 75px; /* Sağdan da boşluk ekledik */
        gap: 15px;
    }
    .contact-map,
    .contact-form-info {
        max-width: none; /* Bu boyutta tam genişlik kullanabilirler */
        width: 100%;
    }
    .contact-map iframe {
        height: 250px;
    }
    .logo-wrapper {
        margin-left: 55px; /* featured-content'in sol boşluğu kadar */
    }
}

@media (max-width: 1150px) {
    .navbar {
        padding: 10px 10px;
    }
    .navbar-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-left: 0;
    }
    .logo-wrapper {
        padding: 0;
    }
    .logo {
        font-size: 30px;
    }
    .rota-ana-baslık {
        white-space: nowrap;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--navbar-bg-color, #000);
        padding: 5px 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        z-index: 99;
        margin-top: 0;
    }
    .rota-ana-baslık-item a {
        font-size: 12px;
        padding: 3px 6px;
        color: var(--navbar-link-color, #fff);
    }
    .profile-contanier {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 5px;
        width: auto;
        margin-top: 0;
    }
    .profile-text {
        display: none;
    }
    .lang-toggle {
        padding: 2px 4px;
        gap: 4px;
    }
    .lang-toggle img {
        width: 25px;
        height: 16px;
    }
    
.toggle {
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
  background-color: #3a3a3a;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.toggle-icon {
  position: absolute;
  font-size: 1rem;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.toggle-icon.moon {
  color: #f1c40f;
  opacity: 1;
  transform: scale(1);
}

.toggle-icon.sun {
  color: #f39c12;
  opacity: 0;
  transform: scale(0.8);
}

body.light-mode .toggle {
  background-color: #f5f5f5;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

body.light-mode .toggle-icon.moon {
  opacity: 0;
  transform: scale(0.8);
}

body.light-mode .toggle-icon.sun {
  opacity: 1;
  transform: scale(1);
}
 .sidebar {
  width: 45px;
  padding-top: 70px;
  row-gap: 5px;
  z-index: 5;
  padding-left: 5px; /* İkonları sağa doğru itecek boşluk */
}

.sidebar .fab, .sidebar .whatsapp-button {
  font-size: 1.6rem;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 15px; /* Daha oval bir görünüm için 8px'den 15px'e çıkarıldı */
  margin: 6px auto;
}

.sidebar a {
  width: 45px;
  height: 45px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

    .content-wrapper {
        /* Sidebar 45px + ek boşluk = 53px */
        margin-left: calc(60px + 8px) !important; /* Total 53px */
        padding-top: 15px;
    }
    .featured-content {
        height: 180px; /* Daha da küçülttük */
        padding: 10px;
        margin-bottom: 15px;
    }
    .featured-content {
        height: 250px; /* Biraz daha küçülttük */
        padding: 15px;
        margin-bottom: 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        overflow: hidden;
        padding-top: 15px;
    }
    .featured-title {
        width: 80px !important;
        height: 80px !important;
        top: 10px !important;
        left: 1px !important;
        border: 3px solid #000;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        z-index: 3;
    }
    .featured-desc {

        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        width: auto !important;
        max-width: 90% !important;
        background-color: rgba(255, 255, 255, 0.6) !important;
        color: black !important;
        text-shadow: none !important;
        padding: 8px !important;
        border-radius: 5px;
        font-size: 13px !important; /* Metin boyutunu biraz küçült */
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: auto;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 4; /* Satır sayısını ayarla */
        -webkit-box-orient: vertical;
    }

    .malzemeler-list-filter {
        display: flex;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 16px;
        z-index: 6; /* Sidebar'dan daha yüksek olsun */
        position: relative; /* z-index'in çalışması için */
        padding-left: calc(53px + 8px); /* Sidebar + ek boşluk */
        width: calc(100% - (53px + 8px));
        margin-left: auto;
        margin-right: auto;
    }


.filter-btn {
        font-size: 13px;
        padding: 6px 10px;
        margin: 0;
        width: auto;
        max-width: 180px;
    }

    .malzemeler-item {
        min-width: 160px;
    }
    .malzemeler-item-img {
        height: 110px;
    }
    .malzemeler-item-title {
        font-size: 11px;
    }
    .contact-info-wrapper {
        /* content-wrapper margin-left ile aynı boşluğu koruyacak şekilde ayarla */
        padding: 15px calc(10px + 25px) 15px 75px; /* Sağdan da boşluk ekledik */
        gap: 10px;
    }
    .contact-map,
    .contact-form-info {
        max-width: none;
        width: 100%;
    }
    .contact-map iframe {
        height: 200px;
    }
    .logo-wrapper {
        margin-left: 55px; /* featured-content'in sol boşluğu kadar */
    }
}

@media (min-width: 993px) {
        .profile-contanier {
        display: flex !important;
    }

    /* featured-content'i büyük ekranda flex-start yap ve padding ekle (çember ve açıklama için) */
    .featured-content {
        justify-content: flex-start !important; /* İçeriği yukarıdan başlat */
        align-items: flex-start !important; /* İçeriği sola hizala */
        padding-left: 50px !important; /* Sol kenardan boşluk */
        padding-top: 50px !important; /* Üst kenardan boşluk */
        /* height değerini sabit tutabiliriz veya artırabiliriz ihtiyaca göre */
    }

    /* SADECE BÜYÜK EKRANDA featured-title'ı çember yap ve sol üste konumlandır */
    .featured-title {
        width: 150px !important; /* Çemberin genişliği */
        height: 150px !important; /* Çemberin yüksekliği */
        border-radius: 100% !important; /* Çember olmasını sağlar */
        position: absolute !important; /* featured-content'e göre konumlanır */
        top: 50px !important; /* Üstten boşluk (featured-content padding'iyle uyumlu) */
        left: 50px !important; /* Soldan boşluk (featured-content padding'iyle uyumlu) */
        border: 3px solid #000; /* Kırmızıdan Siyaha */
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        z-index: 3 !important; /* Diğer elementlerin üzerinde olmasını sağlar */
        display: flex !important; /* İçindeki metni ortalamak için */
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important; /* Taşmayı engellemek için */
        transform: none !important; /* Küçük ekranlardan kalma transformları iptal et */
    }

    /* SADECE BÜYÜK EKRANDA featured-desc'i featured-title'ın altına ve sola hizala */
    .featured-desc {
        width: 350px !important; /* Genişliği orijinal boyutu */
        background-color: rgba(255, 255, 255, 0.5) !important; /* Arka plan rengi */
        padding: 10px !important; /* Dolgu */
        color: black !important; /* Yazı rengi */
        font-weight: bold !important;
        font-size: 18px !important;
        user-select: none !important;
        z-index: 2 !important;
        position: absolute !important; /* featured-content'e göre konumlanır */
        top: calc(80px + 150px + 20px) !important; /* Başlık altından 20px boşluk */
                                            /* 50px (top) + 150px (başlık yüksekliği) + 20px (boşluk) = 220px */
        left: 50px !important; /* Sol kenardan hizala */
        text-align: left !important;
        margin-top: 0 !important; /* Varsayılan marjları iptal et */
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 10px 10px;
    }
    .navbar-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-left: 0;
    }
    .logo-wrapper {
        padding: 0;
    }
    .logo {
        font-size: 30px;
    }
    .rota-ana-baslık {
        white-space: nowrap;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--navbar-bg-color, #000);
        padding: 5px 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        z-index: 99;
        margin-top: 0;
    }
    .rota-ana-baslık-item a {
        font-size: 12px;
        padding: 3px 6px;
        color: var(--navbar-link-color, #fff);
    }
    .profile-contanier {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 5px;
        width: auto;
        margin-top: 0;
    }
    .profile-text {
        display: none;
    }
    .lang-toggle {
        padding: 2px 4px;
        gap: 4px;
    }
    .lang-toggle img {
        width: 25px;
        height: 16px;
    }
    
    .toggle {
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
  background-color: #3a3a3a;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.toggle-icon {
  position: absolute;
  font-size: 1rem;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.toggle-icon.moon {
  color: #f1c40f;
  opacity: 1;
  transform: scale(1);
}

.toggle-icon.sun {
  color: #f39c12;
  opacity: 0;
  transform: scale(0.8);
}

body.light-mode .toggle {
  background-color: #f5f5f5;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

body.light-mode .toggle-icon.moon {
  opacity: 0;
  transform: scale(0.8);
}

body.light-mode .toggle-icon.sun {
  opacity: 1;
  transform: scale(1);
}
.sidebar {
 width: 45px;
 padding-top: 70px;
 row-gap: 5px;
 z-index: 5;
 padding-left: 5px; /* İkonları sağa doğru itecek boşluk */
}
.sidebar .fab, .sidebar .whatsapp-button {
 font-size: 1.6rem;
 width: 45px;
 height: 45px;
 line-height: 45px;
 border-radius: 15px; /* Daha oval border-radius */
 margin: 6px auto;
}
.sidebar a {
 width: 45px;
 height: 45px;
 margin: 0 auto;
 display: flex;
 justify-content: center;
 align-items: center;
}

    .content-wrapper {
        /* Sidebar 45px + ek boşluk = 53px */
        margin-left: calc(60px + 8px) !important; /* Total 53px */
        padding-top: 15px;
    }
    .featured-content {
        height: 180px; /* Daha da küçülttük */
        padding: 10px;
        margin-bottom: 15px;
    }
    .featured-title {
        width: 80px !important; /* Daha da küçült */
        height: 80px !important;
        top: 10px !important;
        left: 10px !important;
        border: 3px solid #000;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    }
    .featured-desc {
        margin-top: 30px !important;
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        width: auto !important;
        max-width: 90% !important;
        background-color: rgba(255, 255, 255, 0.6) !important;
        color: black !important;
        text-shadow: none !important;
        padding: 8px !important;
        border-radius: 5px;
        font-size: 10px !important; /* Metin boyutunu biraz küçült */
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: auto;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 4; /* Satır sayısını ayarla */
        -webkit-box-orient: vertical;
    }
    

    .malzemeler-list-filter {
        display: flex;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 12px;
        z-index: 6; /* Sidebar'dan daha yüksek olsun */
        position: relative; /* z-index'in çalışması için */
        padding-left: calc(53px + 8px); /* Sidebar + ek boşluk */
        width: calc(100% - (53px + 8px));
        margin-left: auto;
        margin-right: auto;
    }


.filter-btn {
        font-size: 11px;
        padding: 6px 10px;
        margin: 0;
        width: auto;
        max-width: 180px;
    }

    .malzemeler-item {
        min-width: 160px;
    }
    .malzemeler-item-img {
        height: 110px;
    }
    .malzemeler-item-title {
        font-size: 11px;
    }
    .contact-info-wrapper {
        /* content-wrapper margin-left ile aynı boşluğu koruyacak şekilde ayarla */
        padding: 15px calc(10px + 25px) 15px 75px; /* Sağdan da boşluk ekledik */
        gap: 10px;
    }
    .contact-map,
    .contact-form-info {
        max-width: none;
        width: 100%;
    }
    .contact-map iframe {
        height: 200px;
    }
    .logo-wrapper {
        margin-left: 55px; /* featured-content'in sol boşluğu kadar */
    }
    body.dark-mode {
  --navbar-bg-color: #000;
  --navbar-link-color: #fff;
    }
    body {
  --navbar-bg-color: #fff;
  --navbar-link-color: #000;
}


}

@media (max-width: 768px) {
    body {
        font-size: 11px;
    }
    .navbar {
        padding: 8px 5px;
    }

.navbar-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-left: 0;
    }

    .logo {
        font-size: 24px;
    }
    .rota-ana-baslık {
        top: 55px;
        gap: 8px;
        white-space: nowrap;
    }
    .rota-ana-baslık-item a {
        font-size: 10px;
        padding: 2px 5px;
    }

.profile-contanier {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 5px;
        width: auto;
        margin-top: 0;
    }
    .profile-text {
        display: none;
    }

    .lang-toggle img {
        width: 20px;
        height: 12px;
    }
    
    .toggle {
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
  background-color: #3a3a3a;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.toggle-icon {
  position: absolute;
  font-size: 1rem;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.toggle-icon.moon {
  color: #f1c40f;
  opacity: 1;
  transform: scale(1);
}

.toggle-icon.sun {
  color: #f39c12;
  opacity: 0;
  transform: scale(0.8);
}

body.light-mode .toggle {
  background-color: #f5f5f5;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

body.light-mode .toggle-icon.moon {
  opacity: 0;
  transform: scale(0.8);
}

body.light-mode .toggle-icon.sun {
  opacity: 1;
  transform: scale(1);
}
   .sidebar {
    width: 40px;
    padding-top: 70px;
    row-gap: 4px;
    z-index: 5; /* Ekledik */
}

/* Sidebar ikonları için yeni kurallar */
.sidebar .fab, .sidebar .whatsapp-button {
    font-size: 1.4rem;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 12px; /* Daha oval bir görünüm için 7px'den 12px'e çıkarıldı */
    margin: 5px auto;
}

.sidebar a {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .content-wrapper {
        /* Sidebar 40px + ek boşluk = 46px */
        margin-left: calc(60px + 6px) !important; /* Total 46px */
        padding-top: 10px;
    }
    .featured-content {
        height: 160px;
        padding: 8px;
        margin-bottom: 10px;
    }
    .featured-title {
        width: 80px !important;
        height: 80px !important;
        top: 8px !important;
        left: 8px !important; /* Sol üst köşeye hizala */
        border: 3px solid #000; /* Kırmızıdan Siyaha */
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    }
    .featured-desc {
        margin-top: 25px !important; /* Logodan sonraki boşluğu ayarla */
        font-size: 9px !important; /* Daha küçük ekranda metin boyutu */
        text-align: left !important; /* Sola hizalı kalsın */
    }

    .malzemeler-list-filter {
        display: flex;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 4px;
        z-index: 6; /* Sidebar'dan daha yüksek olsun */
        position: relative; /* z-index'in çalışması için */
        padding-left: calc(46px + 6px); /* Sidebar + ek boşluk */
        width: calc(100% - (46px + 6px));
        margin-left: 35px;
        margin-right: auto;
    }
    .filter-btn {
        font-size: 7px;
        padding: 6px 10px;
        width: 90%;
        max-width: 160px;
    }
    .malzemeler-item {
        min-width: 140px;
    }
    .malzemeler-item-img {
        height: 80px;
    }
    .malzemeler-item-title {
        font-size: 10px;
        display: none;
    }
    .contact-info-wrapper {
        /* content-wrapper margin-left ile aynı boşluğu koruyacak şekilde ayarla */
        padding: 10px calc(8px + 20px) 10px 75px; /* Sağdan da boşluk ekledik */
        gap: 8px;
    }
    .contact-map,
    .contact-form-info {
        max-width: none;
        width: 100%;
    }
    .contact-map iframe {
        height: 180px;
    }
}

@media (max-width: 480px) {
  body::before {
    opacity: 0.08;
  }

  .line-vertical,
  .line-horizontal {
    display: none;
  }

  .navbar {
    height: 60px;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .logo-wrapper {
    padding: 0;
  }

  .logo {
    font-size: 18px;
    -webkit-text-stroke: 0.5px white;
    text-stroke: 0.5px white;
    color: white;
    margin: 0;
    padding: 0;
    white-space: nowrap;
  }

   .rota-ana-baslık {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    box-sizing: border-box;
    flex-wrap: nowrap;
    overflow-x: auto;
    background-color: #f5f5f5;
  }

  .rota-ana-baslık-item a {
    font-size: 11px;
    font-weight: 500;
    padding: 2px 4px;
    white-space: nowrap;
    color: #444;
    text-decoration: none;
  }

  /* DARK MODE */
  body.dark-mode .rota-ana-baslık {
    background-color: #3a3a3a; /* Kül rengi */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  body.dark-mode .rota-ana-baslık-item a {
    color: #f0f0f0; /* Metin rengi açık gri */
  }
  
    .profile-contanier {
        gap: 5px;
        flex: unset;
        justify-content: flex-end;
    }
    .profile-text {
        display: none;
    }
    .fab {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        padding: 0;
    }
.toggle {
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
  background-color: #3a3a3a;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.toggle-icon {
  position: absolute;
  font-size: 1rem;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.toggle-icon.moon {
  color: #f1c40f;
  opacity: 1;
  transform: scale(1);
}

.toggle-icon.sun {
  color: #f39c12;
  opacity: 0;
  transform: scale(0.8);
}

body.light-mode .toggle {
  background-color: #f5f5f5;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

body.light-mode .toggle-icon.moon {
  opacity: 0;
  transform: scale(0.8);
}

body.light-mode .toggle-icon.sun {
  opacity: 1;
  transform: scale(1);
}

        /* İKON VE BUTON BOYUTLARI */ 
.lang-toggle {
    width: 100px;   /* 90px → 100px yapıldı */
    height: 28px;   /* biraz daha yüksek */
    border-radius: 14px;
    background-color: #3a3a3a;
    display: flex;
    justify-content: space-between; /* space-around yerine space-between */
    align-items: center;
    padding: 0 6px; /* kenar boşlukları biraz arttırıldı */
}

.lang-toggle img {
    width: 26px;   /* bayrak biraz büyütüldü */
    height: 18px;
    object-fit: cover; /* oran bozulmasın */
}


/* İKON VE BUTON BOYUTLARI - BİTİŞ */
    /*
     * SIDEBAR Ayarları
     * Sol tarafta sabit duran sosyal medya ikonları çubuğunun (sidebar) mobil görünüm ayarları.
     * Navbar'ın altından başlaması ve ikonların boyutları burada düzenlenmiştir.
     */
    .sidebar {
        width: 35px;                /* Sidebar'ın genişliğini ayarla */
        padding-top: 70px;          /* Navbar yüksekliğine göre üst boşluk bırak, navbar altından başla */
        row-gap: 4px;               /* İkonlar arası dikey boşluğu ayarla */
        z-index: 5;                 /* Diğer içeriklerin üzerinde görünmesini sağla */
        position: fixed;            /* Ekranı kaydırsan bile sabit kalmasını sağla */
        top: 0;                     /* Ekranın en üstüne sabitle */
        left: 0;                    /* Ekranın soluna sabitle */
        display: flex;              /* Flexbox düzeni kullan */
        flex-direction: column;     /* İkonları dikey olarak sırala */
        align-items: center;        /* İkonları yatayda ortala */
        background-color: transparent; /* Arka planı şeffaf yap */
        backdrop-filter: blur(6px); /* Arka plan bulanıklık efekti ekle */
        height: 100%;               /* Ekran yüksekliğinin tamamını kapla */
        overflow-y: auto;           /* İçerik taşarsa dikey kaydırma çubuğu göster */
    }

    /* Sidebar içindeki sosyal medya ikonları (.fab) için güncellemeler */
    .sidebar .fab {
        font-size: 16px;            /* İkon boyutunu küçült */
        width: 25px;                /* İkon kapsayıcı genişliğini küçült */
        height: 25px;               /* İkon kapsayıcı yüksekliğini küçült */
        line-height: 25px;          /* İkonu dikeyde ortala */
        border-radius: 6px;         /* İkon köşelerini yuvarla */
        margin: 8px auto;           /* Yukarıdan/aşağıdan boşluk, yatayda ortala */
    }

    /* Sidebar içinde bulunan Whatsapp butonu için özel boyutlandırma */
    .sidebar .whatsapp-button {
        width: 28px;                /* Whatsapp ikonunun genişliğini küçült */
        height: 28px;               /* Whatsapp ikonunun yüksekliğini küçült */
        font-size: 0.9rem;          /* İkonun içindeki font boyutunu ayarla */
        margin: 4px auto;           /* Yukarıdan/aşağıdan boşluk, yatayda ortala */
    }

    /* Sidebar içindeki tüm linklerin (ikon kapsayıcılarının) boyutlarını ayarla */
    .sidebar a {
        width: 25px;                /* Linkin genişliğini ikonla aynı yap */
        height: 25px;               /* Linkin yüksekliğini ikonla aynı yap */
        margin: 0 auto;             /* Linkler arası boşlukları kaldır ve yatayda ortala */
        display: flex;              /* İçindeki ikonu ortalamak için flexbox kullan */
        justify-content: center;
        align-items: center;
    }
    /*
     * İçerik Alanı Ayarları
     * Sidebar'ın varlığı nedeniyle ana içerik alanlarının sol boşlukları ayarlanır.
     */

    .malzemeler-list-container {
        margin-left: 40px;          /* Sidebar genişliği (35px) + ek 5px boşluk bırak */
    }
    

    /*
     * Logo Alanı Ayarları
     * Logo kapsayıcısının konumunu ve boşluklarını ayarlar.
     */
    .logo-wrapper {
        margin-left: 0;             /* Sidebar sol kenarda olduğu için logo da sola sıfırla */
        padding-left: 0;
        padding-right: 5px;         /* Navbar'ın iç boşluğu kadar sağda boşluk bırak */
    }

    /*
     * Öne Çıkan İçerik (Featured Content) Ayarları
     * Ana banner alanı ve içindeki bileşenlerin mobil görünüm ayarları.
     */
    .featured-content {
        height: 250px;              /* Öne çıkan içeriğin yüksekliğini sabitle */
        padding: 1px;               /* İç boşlukları ayarla */
        margin-bottom: 8px;         /* Alt boşluğu ayarla */
        margin-top: 8px;
        left: -20px; /* content-wrapper'ın margin-left değerini geri al */
        width: 100%; /* Kapsayıcısının tam genişliğini kullan */
        justify-content: flex-end;  /* İçeriği dikeyde alta hizala */
    }


    .featured-title {
        width: 60px !important;     /* Başlığın genişliğini sabitle */
        height: 60px !important;    /* Başlığın yüksekliğini sabitle */
        position: absolute;         /* Mutlak konumlandırma ile hassas kontrol */
        top: 5px;                   /* Kırmızı çizgiye göre üstten boşluk */
        left: 40px;                 /* Sidebar boşluğu kadar soldan başla */
        transform: none;            /* Önceki merkezleme dönüşümünü kaldır */
        border: 2px solid #000;     /* Daha ince bir kenarlık ekle */
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); /* Daha hafif bir gölge ekle */
    }
    .featured-desc {
    width: 100%;
    font-size: 8px;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px;
    box-sizing: border-box;
    top: 25px;
}

    .content-wrapper {
    position: relative; /* İçindeki elemanlar için referans noktası yap */
    margin-left: 40px; /* Bu kuralı koruyoruz */
}

    /*
     * Filtre Butonları Ayarları
     * Ürün filtreleme butonlarının mobil görünüm ayarları.
     * Butonların sığması ve featured content ile hizalanması burada sağlanır.
     */
    .malzemeler-list-filter {
        display: flex;              /* Flexbox düzeni kullan */
        justify-content: center;    /* Butonları hizala */
        align-items: center;
        flex-wrap: wrap;            /* Butonların sığmaması durumunda alt satıra geçmesini sağla */
        gap: 5px;                   /* Butonlar arası boşluğu azalt */
        z-index: 6;                 /* Diğer öğelerin üzerinde görünmesini sağla */
        position: relative;         /* Konumlandırma için göreceli hale getir */
        padding-left: 40px;         /* Featured content ile aynı hizaya getir */
        padding-right: 5px;         /* Sağdan boşluk bırak */
        width: auto;                /* Kendi içeriğine göre genişlemesini sağla */
        margin: 15px 0;             /* Yukarıdan ve aşağıdan boşluk bırak */
    }

    .filter-btn {
        font-size: 12px;            /* Buton yazı boyutunu ayarla */
        padding: 5px 5px;           /* Butonların iç boşluğunu ayarla */
        width: auto;                /* Otomatik genişlik ayarla */
        min-width: unset;           /* Minimum genişlik kısıtlamasını kaldır */
        white-space: nowrap;        /* Metinlerin tek satırda kalmasını sağla */
    }

    /*
     * Malzemeler Listesi Ayarları
     * Ürün listeleme bölümünün mobil görünüm ayarları.
     */
    .malzemeler-list-wrapper {
        padding: 5px 0;             /* İç boşlukları ayarla */
        column-gap: 10px;           /* Sütunlar arası boşluğu ayarla */
    }
    .malzemeler-item {
        min-width: 90px;            /* Her bir öğenin minimum genişliğini ayarla */
    }
    .malzemeler-item-img {
        height: 60px;               /* Ürün görselinin yüksekliğini ayarla */
    }
    .malzemeler-item-title {
        font-size: 8px;             /* Ürün başlığının font boyutunu küçült */
    }
    .arrow {
        font-size: 40px;            /* Ok ikonunun boyutunu küçült */
        right: 5px;                 /* Sağ kenara daha yakın konumlandır */
    }

    /* Geçiş okları */
.lightbox-nav {
    font-size: 50px;
    width: 50px;
    height: 80px;
  }

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

.lightbox-nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

    /*
     * İletişim Bölümü Ayarları
     * İletişim formu ve harita bölümünün mobil görünüm ayarları.
     */
    .contact-info-wrapper {
        padding: 10px 5px 10px 40px; /* Sağdan ve soldan boşlukları ayarla, sidebar'a göre hizala */
        gap: 6px;                   /* Öğeler arası boşluğu ayarla */
    }
    .contact-map,
    .contact-form-info {
        max-width: none;            /* Maksimum genişlik kısıtlamasını kaldır */
        width: 100%;                /* Tam genişlik kullan */
    }
    .contact-map iframe {
        height: 150px;              /* Harita iframe'inin yüksekliğini ayarla */
    }
    .contact-map h2,
    .contact-form-info h2,
    .contact-form-info h3 {
        font-size: 18px;            /* Başlıkların font boyutunu ayarla */
        margin-bottom: 10px;        /* Başlıkların alt boşluğunu ayarla */
    }
    .contact-form-info p {
        font-size: 12px;            /* Paragraf metninin font boyutunu ayarla */
        line-height: 1.6;           /* Satır yüksekliğini ayarla */
    }

    #map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 2px solid currentColor;
    pointer-events: none; /* iframe'in tıklama olaylarını devre dışı bırakır */
}


     footer {
        width: 100%;
        padding: 10px 10px 10px 40px;
        font-size: 12px;
        line-height: 1.4;
        box-sizing: border-box;
        text-align: center;
        color: #f66c6c;
        font-family: sans-serif;
    }

    /*
     * Lightbox Ayarları
     * Görsel büyütme (lightbox) bileşeninin mobil görünüm ayarları.
     */
    #lightbox img {
        max-width: 95%;             /* Görselin maksimum genişliğini ayarla */
        max-height: 75%;            /* Görselin maksimum yüksekliğini ayarla */
    }
    #lightbox > div { /* Lightbox başlık/açıklama div'i */
        font-size: 14px;            /* Başlık/açıklama font boyutunu ayarla */
        padding: 0 5px;             /* İç boşlukları ayarla */
    }
    /* Kapatma butonu, eğer HTML'de mevcut ve konumlandırılıyorsa bu kısım kullanılabilir. */
    .close-lightbox {
        font-size: 2rem;
        right: 5px;
        top: 5px;
    }
    /* Serdar */
    .social {
    display: flex;
    flex-direction: column; /* İkonları dikey hizalar */
    gap: 10px;
    margin-top: 20px; /* Sosyal medya bloğunun üstündeki boşluğu korur */
}


/* WhatsApp */
.navbar .whatsapp-button {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
}
 
}

@media (max-width: 400px) {
    /* Galeri ve malzeme listesinin genel ayarları */
    .malzemeler-list-container {
        overflow-x: hidden !important; 
    }

    /* Görsellerin kapsayıcısı için yatay kaydırma çubuğu */
    .malzemeler-list-wrapper {
        overflow-x: auto !important; /* Yatay kaydırma çubuğunu etkinleştirir */
        -webkit-overflow-scrolling: touch !important; /* iOS cihazlarda daha iyi bir kaydırma deneyimi sağlar */
        white-space: nowrap !important; /* İçeriğin alt satıra geçmesini engeller */
        padding: 0 10px !important;
    }

    /* Görsellerin kendisi ve 3'lü sütun düzeni */
    .malzemeler-list {
        display: flex !important;
        flex-wrap: nowrap !important; /* Alt satıra geçişi engeller */
        justify-content: flex-start !important;
        gap: 10px !important; /* Görseller arası boşluk */
        padding: 10px 0 !important;
        height: auto !important;
    }

    .malzemeler-item {
        flex-grow: 0 !important;
        flex-shrink: 0 !important;
        /* Görselin dar ekranda bile okunabilir bir boyutta kalmasını sağlar */
        width: 120px !important; 
        height: 90px !important; /* Görselin yüksekliğini de sabitledim */
    }

    .malzemeler-item-img {
        width: 100% !important;
        height: 100% !important; /* Kapsayıcısının yüksekliğini alır */
        object-fit: cover !important; /* Görselin en boy oranını korur ve kapsayıcıyı doldurur */
        display: block !important;
    }
    
    /* Slayt oklarını gizle */
    .arrow {
        display: none !important;
    }

    /* Başlıkların her zaman görünür olmasını sağlar */
    .malzemeler-item-title {
        opacity: 1 !important;
        font-size: 12px !important;
        padding: 5px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    /* Hover'da büyütücü ikonunu da gizle */
    .malzemeler-item::after {
        display: none !important;
    }
    
/* WhatsApp */
.navbar .whatsapp-button {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
}
}

@media (max-width: 320px) {
    /*
     * Navbar ile İlgili Ayarlar
     * Bu bölümde, mobil cihazlarda üst gezinme çubuğunun (navbar) görünümü ve boyutları optimize edilmiştir.
     */
    .navbar {
        padding: 5px 5px; /* İç boşlukları dar ekranlara göre ayarla */
        height: 45px;     /* Navbar'ın yüksekliğini sabitle */
    }

.navbar-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-left: 0;
    }

    .logo {
        font-size: 20px;            /* Logo metninin boyutunu küçült */
        -webkit-text-stroke: 0.5px white; /* Metin konturunu incelt */
        text-stroke: 0.5px white;
        text-shadow:                /* Metin gölgesini hafiflet */
            0 0 2px #ff1a1a,
            0 0 4px #ff1a1a,
            0 0 6px #ff4d4d;
    }
    .logo::after {
        height: 3px;                /* Logo altındaki çizginin yüksekliğini incelt */
        background-image: repeating-linear-gradient( /* Çizgi desenini küçült */
            to right,
            #ff1a1a 0px,
            #ff1a1a 3px,
            transparent 3px,
            transparent 6px
        );
    }
.rota-ana-baslık {
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 9px; /* Gerekirse 8px yap */
    max-width: 100%;
  }

  .rota-ana-baslık-item a {
    font-size: 9px;
    padding: 2px 3px;
  }

.profile-contanier {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 5px;
        width: auto;
        margin-top: 0;
    }
    .profile-text {
        display: none;
    }

    .lang-toggle img {
        width: 18px;                /* Dil değiştirme ikonlarının genişliğini ayarla */
        height: 10px;               /* Dil değiştirme ikonlarının yüksekliğini ayarla */
    }
    /* Navbar içinde bulunan Whatsapp ikonu için özel boyutlandırma */
    .navbar .whatsapp-button {
        width: 28px;                /* Whatsapp ikonunun genişliğini küçült */
        height: 28px;               /* Whatsapp ikonunun yüksekliğini küçült */
        font-size: 0.9rem;          /* İkonun içindeki font boyutunu ayarla */
    }
 .toggle {
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
  background-color: #3a3a3a;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.toggle-icon {
  position: absolute;
  font-size: 1rem;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.toggle-icon.moon {
  color: #f1c40f;
  opacity: 1;
  transform: scale(1);
}

.toggle-icon.sun {
  color: #f39c12;
  opacity: 0;
  transform: scale(0.8);
}

body.light-mode .toggle {
  background-color: #f5f5f5;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

body.light-mode .toggle-icon.moon {
  opacity: 0;
  transform: scale(0.8);
}

body.light-mode .toggle-icon.sun {
  opacity: 1;
  transform: scale(1);
}
    /*
     * SIDEBAR Ayarları
     * Sol tarafta sabit duran sosyal medya ikonları çubuğunun (sidebar) mobil görünüm ayarları.
     * Navbar'ın altından başlaması ve ikonların boyutları burada düzenlenmiştir.
     */
    .sidebar {
        width: 35px;                /* Sidebar'ın genişliğini ayarla */
        padding-top: 70px;          /* Navbar yüksekliğine göre üst boşluk bırak, navbar altından başla */
        row-gap: 4px;               /* İkonlar arası dikey boşluğu ayarla */
        z-index: 5;                 /* Diğer içeriklerin üzerinde görünmesini sağla */
        position: fixed;            /* Ekranı kaydırsan bile sabit kalmasını sağla */
        top: 0;                     /* Ekranın en üstüne sabitle */
        left: 0;                    /* Ekranın soluna sabitle */
        display: flex;              /* Flexbox düzeni kullan */
        flex-direction: column;     /* İkonları dikey olarak sırala */
        align-items: center;        /* İkonları yatayda ortala */
        background-color: transparent; /* Arka planı şeffaf yap */
        backdrop-filter: blur(6px); /* Arka plan bulanıklık efekti ekle */
        height: 100%;               /* Ekran yüksekliğinin tamamını kapla */
        overflow-y: auto;           /* İçerik taşarsa dikey kaydırma çubuğu göster */
    }

    /* Sidebar içindeki sosyal medya ikonları (.fab) için güncellemeler */
    .sidebar .fab {
        font-size: 16px;            /* İkon boyutunu küçült */
        width: 25px;                /* İkon kapsayıcı genişliğini küçült */
        height: 25px;               /* İkon kapsayıcı yüksekliğini küçült */
        line-height: 25px;          /* İkonu dikeyde ortala */
        border-radius: 6px;         /* İkon köşelerini yuvarla */
        margin: 4px auto;           /* Yukarıdan/aşağıdan boşluk, yatayda ortala */
    }

    /* Sidebar içinde bulunan Whatsapp butonu için özel boyutlandırma */
    .sidebar .whatsapp-button {
        width: 28px;                /* Whatsapp ikonunun genişliğini küçült */
        height: 28px;               /* Whatsapp ikonunun yüksekliğini küçült */
        font-size: 0.9rem;          /* İkonun içindeki font boyutunu ayarla */
        margin: 4px auto;           /* Yukarıdan/aşağıdan boşluk, yatayda ortala */
    }

    /* Sidebar içindeki tüm linklerin (ikon kapsayıcılarının) boyutlarını ayarla */
    .sidebar a {
        width: 25px;                /* Linkin genişliğini ikonla aynı yap */
        height: 25px;               /* Linkin yüksekliğini ikonla aynı yap */
        margin: 0 auto;             /* Linkler arası boşlukları kaldır ve yatayda ortala */
        display: flex;              /* İçindeki ikonu ortalamak için flexbox kullan */
        justify-content: center;
        align-items: center;
    }
    /*
     * İçerik Alanı Ayarları
     * Sidebar'ın varlığı nedeniyle ana içerik alanlarının sol boşlukları ayarlanır.
     */

    .malzemeler-list-container {
        margin-left: 40px;          /* Sidebar genişliği (35px) + ek 5px boşluk bırak */
    }

    /*
     * Logo Alanı Ayarları
     * Logo kapsayıcısının konumunu ve boşluklarını ayarlar.
     */
    .logo-wrapper {
        margin-left: 0;             /* Sidebar sol kenarda olduğu için logo da sola sıfırla */
        padding-left: 0;
        padding-right: 5px;         /* Navbar'ın iç boşluğu kadar sağda boşluk bırak */
    }

    /*
     * Öne Çıkan İçerik (Featured Content) Ayarları
     * Ana banner alanı ve içindeki bileşenlerin mobil görünüm ayarları.
     */
    .featured-content {
        height: 130px;              /* Öne çıkan içeriğin yüksekliğini sabitle */
        padding: 1px;               /* İç boşlukları ayarla */
        margin-bottom: 8px;         /* Alt boşluğu ayarla */
        margin-top: 8px;
         left: -20px; /* content-wrapper'ın margin-left değerini geri al */
    width: 100%; /* Kapsayıcısının tam genişliğini kullan */
    height: 130px;
        justify-content: flex-end;  /* İçeriği dikeyde alta hizala */
    }


    .featured-title {
        width: 60px !important;     /* Başlığın genişliğini sabitle */
        height: 60px !important;    /* Başlığın yüksekliğini sabitle */
        position: absolute;         /* Mutlak konumlandırma ile hassas kontrol */
        top: 5px;                   /* Kırmızı çizgiye göre üstten boşluk */
        left: 40px;                 /* Sidebar boşluğu kadar soldan başla */
        transform: none;            /* Önceki merkezleme dönüşümünü kaldır */
        border: 2px solid #000;     /* Daha ince bir kenarlık ekle */
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); /* Daha hafif bir gölge ekle */
    }
    .featured-desc {
    width: 100%;
    font-size: 8px;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px;
    box-sizing: border-box;
    top: 25px;
}

    .content-wrapper {
    position: relative; /* İçindeki elemanlar için referans noktası yap */
    margin-left: 40px; /* Bu kuralı koruyoruz */
}

    /*
     * Filtre Butonları Ayarları
     * Ürün filtreleme butonlarının mobil görünüm ayarları.
     * Butonların sığması ve featured content ile hizalanması burada sağlanır.
     */
    .malzemeler-list-filter {
        display: flex;              /* Flexbox düzeni kullan */
        justify-content: center;    /* Butonları hizala */
        align-items: center;
        flex-wrap: wrap;            /* Butonların sığmaması durumunda alt satıra geçmesini sağla */
        gap: 3px;                   /* Butonlar arası boşluğu azalt */
        z-index: 6;                 /* Diğer öğelerin üzerinde görünmesini sağla */
        position: relative;         /* Konumlandırma için göreceli hale getir */
        padding-left: 40px;         /* Featured content ile aynı hizaya getir */
        padding-right: 5px;         /* Sağdan boşluk bırak */
        width: auto;                /* Kendi içeriğine göre genişlemesini sağla */
        margin: 10px 0;             /* Yukarıdan ve aşağıdan boşluk bırak */
    }

    .filter-btn {
        font-size: 10px;            /* Buton yazı boyutunu ayarla */
        padding: 1px 5px;           /* Butonların iç boşluğunu ayarla */
        width: auto;                /* Otomatik genişlik ayarla */
        min-width: unset;           /* Minimum genişlik kısıtlamasını kaldır */
        white-space: nowrap;        /* Metinlerin tek satırda kalmasını sağla */
    }

    /*
     * Malzemeler Listesi Ayarları
     * Ürün listeleme bölümünün mobil görünüm ayarları.
     */
    .malzemeler-list-wrapper {
        padding: 5px 0;             /* İç boşlukları ayarla */
        column-gap: 10px;           /* Sütunlar arası boşluğu ayarla */
    }
    .malzemeler-item {
        min-width: 90px;            /* Her bir öğenin minimum genişliğini ayarla */
    }
    .malzemeler-item-img {
        height: 60px;               /* Ürün görselinin yüksekliğini ayarla */
    }
    .malzemeler-item-title {
        font-size: 8px;             /* Ürün başlığının font boyutunu küçült */
    }
    .arrow {
        font-size: 40px;            /* Ok ikonunun boyutunu küçült */
        right: 5px;                 /* Sağ kenara daha yakın konumlandır */
    }

    /*
     * İletişim Bölümü Ayarları
     * İletişim formu ve harita bölümünün mobil görünüm ayarları.
     */
    .contact-info-wrapper {
        padding: 10px 5px 10px 40px; /* Sağdan ve soldan boşlukları ayarla, sidebar'a göre hizala */
        gap: 6px;                   /* Öğeler arası boşluğu ayarla */
    }
    .contact-map,
    .contact-form-info {
        max-width: none;            /* Maksimum genişlik kısıtlamasını kaldır */
        width: 100%;                /* Tam genişlik kullan */
    }
    .contact-map iframe {
        height: 150px;              /* Harita iframe'inin yüksekliğini ayarla */
    }
    .contact-map h2,
    .contact-form-info h2,
    .contact-form-info h3 {
        font-size: 18px;            /* Başlıkların font boyutunu ayarla */
        margin-bottom: 10px;        /* Başlıkların alt boşluğunu ayarla */
    }
    .contact-form-info p {
        font-size: 12px;            /* Paragraf metninin font boyutunu ayarla */
        line-height: 1.6;           /* Satır yüksekliğini ayarla */
    }

    /*
     * Lightbox Ayarları
     * Görsel büyütme (lightbox) bileşeninin mobil görünüm ayarları.
     */
    #lightbox img {
        max-width: 95%;             /* Görselin maksimum genişliğini ayarla */
        max-height: 75%;            /* Görselin maksimum yüksekliğini ayarla */
    }
    #lightbox > div { /* Lightbox başlık/açıklama div'i */
        font-size: 14px;            /* Başlık/açıklama font boyutunu ayarla */
        padding: 0 5px;             /* İç boşlukları ayarla */
    }
    /* Kapatma butonu, eğer HTML'de mevcut ve konumlandırılıyorsa bu kısım kullanılabilir. */
    .close-lightbox {
        font-size: 2rem;
        right: 5px;
        top: 5px;
    }
    /* Serdar */
    .social {
      margin-top:20px;
    }
  
}






