/* TEMEL STİLLER (PC) */
.language-switcher {
    position: relative;
    display: inline-block;
    margin-left: 15px;
  }
  
  .language-trigger {
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
  }
  
  .language-trigger img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    transition: transform 0.2s;
  }
  
  .language-trigger:hover img {
    transform: scale(1.1);
  }
  
  .language-menu {
    position: absolute;
    right: 0;
    top: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  .language-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
  }
  
  .language-option {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
  }
  
  .language-option:hover {
    background: #f8f8f8;
  }
  
  .language-option img {
    width: 20px;
    height: 15px;
    margin-right: 10px;
    border-radius: 2px;
  }
  
  /* MOBİL STİLLERİ */
  @media (max-width: 768px) {
    .language-menu {
      position: fixed;
      left: 50%;
      bottom: 20px;
      top: auto;
      transform: translate(-50%, calc(100% + 20px));
      width: 90%;
      max-width: 300px;
      max-height: 60vh;
      overflow-y: auto;
    }
    
    .language-menu.active {
      transform: translate(-50%, 0);
    }
    
    .language-option {
      padding: 12px 20px;
    }
  }
  
  /* GOOGLE TRANSLATE GİZLEME */
  .goog-te-banner-frame {
    display: none !important;
  }
  
  body {
    top: 0 !important;
  }
  
  .goog-te-combo {
    visibility: hidden;
    position: absolute;
  }

  .dil{
    color: black;
  }

  