/* Top bar extras: warehouse select + lang + telegram */

.top-bar-warehouse {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  line-height: 1.2;
}

.top-bar-warehouse__icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  color: #6b7280;
  display: block;
}
.top-bar-warehouse:hover .top-bar-warehouse__icon {
  color: var(--blue-600, #2563eb);
}


.top-bar-warehouse__label {
  margin: 0;
  font-size: 0.875rem; /* 14px — как top-bar / city */
  font-weight: 500;
  color: #4b5563;
  cursor: default;
  white-space: nowrap;
}

.top-bar-warehouse__select {
  min-width: 9.5rem;
  max-width: 12.5rem;
  height: 1.5rem;
  padding: 0 1.35rem 0 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
  background-color: #fff;
  color: #4b5563;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: inherit;
  line-height: 1.25;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1.25L5 5.25L9 1.25' stroke='%236b7280' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.4rem center;
  background-size: 9px 6px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.top-bar-warehouse__select:hover {
  border-color: #9ca3af;
  color: #374151;
}

.top-bar-warehouse__select:focus {
  outline: none;
  border-color: var(--blue-500, #3b82f6);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
}

.top-bar-lang {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #4b5563;
  font: inherit;
}

.top-bar-lang__flag {
  width: 22px;
  height: 15px;
  border-radius: 1px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  display: block;
}

.top-bar-lang__caret {
  width: 10px;
  height: 10px;
  color: #4b5563;
}

.top-bar-telegram {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: #3a342e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.top-bar-telegram:hover {
  color: #1e4a7a;
}

.top-bar-telegram__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  flex-shrink: 0;
}

.top-bar-telegram__icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.top-bar-sep {
  width: 1px;
  height: 18px;
  background: #c5cdd8;
  flex: 0 0 1px;
}

@media (max-width: 1024px) {
  .top-bar-telegram__text {
    display: none;
  }
}

@media (max-width: 640px) {
  .top-bar-warehouse {
    display: none;
  }
}
