.comp-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  height: 30px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0 32px;
  overflow: visible;
  position: relative;
}

.comp-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 6px;
  transition: background 0.12s;
}

.comp-bar__item {
  cursor: pointer;
}

.comp-bar__item:hover {
  background: #f1f5f9;
}

.comp-bar__flag {
  width: 14px;
  height: 10px;
  border-radius: 1.5px;
  object-fit: cover;
  flex-shrink: 0;
}

.comp-bar__sep {
  width: 1px;
  height: 14px;
  background: #e2e8f0;
  flex-shrink: 0;
  margin: 0 2px;
}

.comp-bar__extra {
  padding: 2px 8px;
  margin-left: 4px;
  font-size: 10px;
  font-weight: 600;
  color: #94a3b8;
  background: #f1f5f9;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .comp-bar {
    padding: 0 16px;
    height: 30px;
  }
  .comp-bar__item {
    padding: 2px 8px;
    font-size: 11px;
  }
  .comp-bar__item:last-child {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1079px) {
  .comp-bar {
    padding: 0 24px;
  }
}
