/* ─────────────────────────────────────────
   BLOCK: TOP-BAR
───────────────────────────────────────── */
.top-bar {
  background: var(--gray-bg);
  font-size: 12px;
  color: var(--gray-text);
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 24px;
}
.top-bar__left  { display: flex; gap: 24px; align-items: center; }
.top-bar__right { display: flex; gap: 10px; margin: 0 -18px; align-items: center; }

.top-bar__city {
  color: var(--black);
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;  
  cursor: pointer;
  font-weight: 500;
}
.top-bar__city-icon {
  display: flex;
  gap: 8px;
}
.top-bar__link { color: var(--gray-text); }
.top-bar__link:hover { text-decoration: underline; }

.top-bar__phone-container {
  position: relative;
  display:flex;
  gap: 8px;
  align-items: center;
}
.top-bar__phone { font-weight: 600; font-size: 15px; color: var(--black); }
.top-bar__expand-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.top-bar__dropdown {
  position: absolute;
  top: -11px;
  right: -16px;

  background: #fff;
  border: 1px solid var(--gray-border);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);

  padding: 10px 15px;
  width: max-content;

  display: none;
  z-index: 300;
}
.top-bar__dropdown-item {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

.top-bar__dropdown-item-arrow {
  display: flex;
  gap: 8px;
}

.top-bar__dropdown-item + .top-bar__dropdown-item {
  border-top: 1px solid #eee;
  margin-top: 8px;
  padding-top: 12px;
}
.top-bar__phone-container--active .top-bar__dropdown {
  display: block;
}
.top-bar__expand-btn img {
  transition: transform 0.2s ease;
}

.top-bar__phone-container--active .top-bar__expand-btn img {
  transform: rotate(180deg);
}

.top-bar__btn {
  border: 1px solid var(--black);
  padding: 4px 18px;
  background: #fff;
  font-size: 12px;
}
.top-bar__btn--filled {
  background: #202020;
  color: #fff;
  border: none;
  font-weight: 400;
}
