/* =========================================================
   ATB KATEGORI IKONLU MENU TASARIMI
   Sayfa ici / acilir menu icindeki ikonlu kategori kutulari
   ========================================================= */

.atb-menu-icon-link {
  display: flex !important;
  align-items: center;
  gap: 16px;
  min-height: 102px;
  padding: 14px 16px !important;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #e3e9f2;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  text-decoration: none !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.atb-menu-icon-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(180deg, #d61f2c 0%, #1d4ed8 100%);
  opacity: 0.22;
  transition: opacity 0.22s ease, width 0.22s ease;
}

.atb-menu-icon-link:hover {
  transform: translateY(-2px);
  border-color: #c9d9ef;
  background: linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.11);
}

.atb-menu-icon-link:hover::before {
  width: 5px;
  opacity: 1;
}

.atb-menu-icon-link img {
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
  object-fit: contain;
  display: block;
  padding: 6px;
  border-radius: 12px;
  border: 1px solid #e6edf5;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.atb-menu-icon-link:hover img {
  transform: scale(1.04);
  border-color: #ccdff6;
  box-shadow: 0 8px 18px rgba(29, 78, 216, 0.08);
}

.atb-menu-icon-link span {
  position: relative;
  z-index: 2;
  display: block;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  transition: color 0.22s ease;
}

.atb-menu-icon-link:hover span {
  color: #0b3aa7;
}

.atb-menu-icon-link.active,
.atb-menu-icon-link[aria-current="page"] {
  border-color: #b9d1f5;
  background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
  box-shadow:
    0 12px 28px rgba(29, 78, 216, 0.12),
    0 0 0 1px rgba(214, 31, 44, 0.05);
}

.atb-menu-icon-link.active::before,
.atb-menu-icon-link[aria-current="page"]::before {
  width: 5px;
  opacity: 1;
}

.atb-menu-icon-link.active img,
.atb-menu-icon-link[aria-current="page"] img {
  border-color: #bfd6ff;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.10);
}

.atb-menu-icon-link.active span,
.atb-menu-icon-link[aria-current="page"] span {
  color: #0b3aa7;
}


/* =========================================================
   ATB UST SIYAH KATEGORI BAR - GUVENLI SURUM
   Acilir panel yapisina dokunmaz, sadece ust ana linkleri duzenler.
   ========================================================= */

body header .top-menu {
  background: #101010 !important;
  border-bottom: 1px solid #1f1f1f !important;
}

body header .top-menu .acilirmenu #PopupMenu1 > li > a {
  position: relative !important;
  min-height: 62px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: transparent !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1.18 !important;
  transition: background 0.18s ease, color 0.18s ease !important;
}

body header .top-menu .acilirmenu #PopupMenu1 > li > a > span {
  color: inherit !important;
  line-height: 1.18 !important;
}

body header .top-menu .acilirmenu #PopupMenu1 > li:hover > a {
  background: #1a1a1a !important;
  color: #ffffff !important;
}

body header .top-menu .acilirmenu #PopupMenu1 > li > a::after {
  content: "" !important;
  position: absolute !important;
  left: 14px !important;
  right: 14px !important;
  bottom: 0 !important;
  height: 3px !important;
  background: #ff6a00 !important;
  border-radius: 3px 3px 0 0 !important;
  opacity: 0 !important;
  transform: scaleX(0.65) !important;
  transition: opacity 0.18s ease, transform 0.18s ease !important;
}

body header .top-menu .acilirmenu #PopupMenu1 > li:hover > a::after {
  opacity: 1 !important;
  transform: scaleX(1) !important;
}


/* =========================================================
   MOBIL / TABLET
   Ikonlu kategori kutularini kucultur
   ========================================================= */

@media (max-width: 991px) {
  .atb-menu-icon-link {
    min-height: 92px;
    gap: 12px;
    padding: 12px 14px !important;
    border-radius: 12px;
  }

  .atb-menu-icon-link img {
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    border-radius: 11px;
  }

  .atb-menu-icon-link span {
    font-size: 13.5px;
  }
}

@media (max-width: 768px) {
  .atb-menu-icon-link {
    min-height: 80px;
    gap: 10px;
    padding: 10px 12px !important;
  }

  .atb-menu-icon-link::before {
    top: 10px;
    bottom: 10px;
  }

  .atb-menu-icon-link img {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    padding: 4px;
  }

  .atb-menu-icon-link span {
    font-size: 13px;
    line-height: 1.3;
  }
}
