/* ==========================================================================
   MASAÜSTÜ MENÜYÜ ETKİLEMEYEN SAFE MOBİL LOGO DÜZELTMESİ
   ========================================================================== */

/* 1. Sadece telefon ekranlarında (767px ve altı) çalışır */
@media (max-width: 767px) {
    /* Sadece logo görselini hedefler, menü kapsayıcılarına dokunmaz */
    .mobile-logo img,
    .header-logo img,
    .logo img,
    a.logo img {
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
        max-height: 42px !important; /* Mobildeki logo yüksekliği */
        object-fit: contain !important; /* Kesilmeyi önler */
    }
}

/* 2. Masaüstündeki "Tüm Kategoriler" menüsünün her zaman en üstte açılmasını garantiye alır */
.all-categories,
.kategoriler-dropdown,
.dropdown-menu,
#pnlTumKategoriler {
    z-index: 99999 !important;
    overflow: visible !important;
}


/* ============================================================
   İNDEO KURUMSAL – Yukarı Çık butonu
   Canlı destek çubuğu sağda olduğu için buton SOL ALTTA
   ============================================================ */

#indeo-back-top {
  position: fixed;
  left: 22px;
  right: auto;
  bottom: 22px;
  z-index: 9998;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #003366 0%, #0056b3 100%);
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

#indeo-back-top.indeo-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#indeo-back-top:hover {
  background: linear-gradient(135deg, #004080 0%, #0066cc 100%);
}

#indeo-back-top svg {
  display: block;
  margin: 0 auto;
  pointer-events: none;
}

@media (max-width: 767px) {
  #indeo-back-top {
    left: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}



