 
 
 
/* Genel Stiller */
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f5f5f5;
    }
	/*.search-overlay{display:none}
    /* Sayfa Konteyneri */
    .container {
      max-width: 1280px;
      margin: 0 auto; /* Yatay ortalama */
      background-color: #fff;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Hafif gölge */
      min-height: 100vh; /* Sayfanın tamamını kapla */
    }

    nav {
      background-color: #333;
      color: #fff;
      padding: 10px 20px;
    }

    /* Logo ve Arama Çubuğu */
    .top-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
		position:relative;
		font-size: 20px;
		font-weight: bold;
    }

    .search-bar {
      display: flex;
      align-items: center;
    }

    .search-bar input {
      padding: 5px 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      outline: none;
    }

    .search-bar button {
      background-color: #f39c12;
      color: #fff;
      border: none;
      padding: 5px 10px;
      margin-left: 5px;
      cursor: pointer;
      border-radius: 4px;
      transition: background-color 0.3s;
    }

    .search-bar button:hover {
      background-color: #d35400;
    }

    /* Menü */
    .menu {
      display: flex;
      justify-content: flex-start; /* Menüyü sola yasla */
      list-style: none;
      gap: 20px;
      margin: 10px 0 0 0;
      padding: 0;
    }

    .menu li {
      display: inline;
    }

    .menu a {
		
      color: #fff;
      text-decoration: none;
      font-size: 16px;
      transition: color 0.3s;
    }

    .menu a:hover {
      color: #f39c12;
    }

    /* Mobil Menü */
    .menu-icon {
      display: none;
      cursor: pointer;
      width: 30px;
      height: 25px;
      position: relative;
    }

    .menu-icon div {
      width: 100%;
      height: 3px;
      background-color: #fff;
      position: absolute;
      transition: 0.3s;
    }

    .menu-icon div:nth-child(1) {
      top: 0;
    }

    .menu-icon div:nth-child(2) {
      top: 10px;
    }

    .menu-icon div:nth-child(3) {
      top: 20px;
    }

    /* Çarpı Efekti */
    .menu-icon.active div:nth-child(1) {
      transform: rotate(45deg);
      top: 10px;
    }

    .menu-icon.active div:nth-child(2) {
      opacity: 0;
    }

    .menu-icon.active div:nth-child(3) {
      transform: rotate(-45deg);
      top: 10px;
    }


	.search-icon {
		display:none;
		width: 30px; /* Boyutunu ayarlayın */
		height: 30px; /* Boyutunu ayarlayın */
	}

	.circle {
		stroke: #fff; /* Çemberin rengi */
		stroke-width: 3; /* Çizgi kalınlığı */
		fill: none; /* Çemberin içi boş */
	}

	.handle {
		stroke: #fff; /* Sapın rengi */
		stroke-width: 3; /* Sapın kalınlığı */
	}
.search-overlay {display: none;}


    /********************************************* Mobil için görünürlük ayarları *********************************************************************/
    @media (max-width: 768px) {
      .menu {
        display: none;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 35px;
        left: 0;
        width: 100%;
        border-top: 1px solid #444;
        padding: 10px 0;
      }

      .menu.active {
        display: flex;
      }

      .menu li {
        text-align: center;
        margin: 10px 0;
      }

      .menu-icon {
        display: block;
      }
	
      .search-bar {
        flex: 1;
        justify-content: center;
		display: none;
      }
	  
	  .search-icon{
		  display:block;
		  position:absolute;
		  right:65px;
		 
	  }
	  
	  .search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Siyah perde efekti */
    display: none; /* Başlangıçta gizli */
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1000;
}
.search-box {
    width: 80%;
    max-width: 600px;
	left:25px;
    position: absolute;
	top:20px;
}

.search-box input {
    width: 100%;
    padding: 15px;
    font-size: 20px;
    border: none;
    border-radius: 5px;
    outline: none;
}

/* Kapatma butonu */
.close-btn {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 24px;
    cursor: pointer;
    color: #888;
}
.search-results {
	position: absolute;
        width: 82.5%;
        top: 64px;
        left: 25px;
        max-width: 600px;
        background: white;
        border-radius: 5px;
        margin-top: 10px;
        padding: 10px;
    display: none; /* İlk başta gizli */
}

.search-results div {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

.search-results div:last-child {
    border-bottom: none;
}

.search-results div:hover {
    background: #f1f1f1;
}

    }