/* Shared site shell: navigation, footer and reusable compare bar elements. */

/* Dropdown container */
    .dropdown {
      position: relative;
    }

    .dropdown-toggle {
      cursor: pointer;
      font-weight: 600;
    }

    /* Menü */
    .dropdown-menu {
      display: none;
      position: absolute;
      top: 28px;
      left: 0;
      background: #fff;
      border: 1px solid #eee;
      border-radius: 8px;
      min-width: 200px;
      padding: 8px 0;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      z-index: 999;
    }

    .dropdown-menu li a {
      display: block;
      padding: 8px 14px;
      color: #222;
      white-space: nowrap;
    }

    .dropdown-menu li a:hover {
      background: #f5f5f5;
    }

    /* Hover mode - desktop */
    @media (min-width: 768px) {
      .dropdown:hover .dropdown-menu {
        display: block;
      }
    }

    /* Açılır menü mobilde de çalışsın */
    @media (max-width: 768px) {
      .dropdown-menu {
        position: static;
        box-shadow: none;
        border: 0;
        padding-left: 16px;
      }
    }

.network-footer {
  margin-top: 60px;
  background: #0f172a;
  color: #cbd5e1;
  font-size: 14px;
}

.network-container {
  max-width: 1200px;
  margin: auto;
  padding: 30px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.network-footer strong {
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.network-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.network-footer li {
  margin-bottom: 6px;
}

.network-footer a {
  color: #cbd5e1;
  text-decoration: none;
}

.network-footer a:hover {
  text-decoration: underline;
}

.network-copy {
  text-align: center;
  padding: 12px;
  background: #020617;
  font-size: 13px;
}

.network-nav-list {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .network-nav-list {
    flex-direction: column;
    gap: 10px;
  }
}
