/* =========================================
   SUB-HEADER GİZLE
========================================= */
.sub-header {
  display: none !important;
}

/* =========================================
   NAVBAR DİL SEÇİCİ
========================================= */
.hcs-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 28px;
  flex-shrink: 0;
}

.hcs-lang a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid transparent;
  color: #26354b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .22s ease;
}

.hcs-lang a img {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.hcs-lang a:hover {
  border-color: #dce2e9;
  background: #f7f8fa;
  color: #ed1c24;
}

.hcs-lang a.active {
  border-color: #ed1c24;
  background: #fff1f2;
  color: #ed1c24;
}

/* MASAÜSTÜ — navbar container'ın sağına yapış */
@media (min-width: 992px) {
  .hcs-lang {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* TABLETten küçük — menü açıldığında alta düş */
@media (max-width: 991px) {
  .hcs-lang {
    width: 100%;
    margin: 10px 0 0;
    padding: 10px 12px;
    border-top: 1px solid #edf0f4;
    justify-content: flex-start;
  }

  .hcs-lang a {
    font-size: 13px;
  }

  .hcs-lang a img {
    width: 24px;
    height: 16px;
  }
}
