.batch-toolbar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #12110f;
}

.batch-toolbar > span {
  color: var(--gold2);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.batch-toolbar > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.batch-toolbar button {
  border: 1px solid #5a5043;
  border-radius: 999px;
  background: #1d1914;
  color: var(--text);
  padding: 8px 12px;
  font: 600 11px "DM Sans";
  cursor: pointer;
}

.batch-toolbar button:hover { border-color: var(--gold); }
.batch-toolbar button:disabled { opacity: .42; cursor: not-allowed; }

.carousel-select {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #17140fdd;
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(7px);
  box-shadow: 0 4px 16px #0005;
}

.carousel-select.selected {
  background: #d7ad66;
  color: #21170b;
  box-shadow: 0 0 0 3px #f0d69f;
}

@media (max-width: 520px) {
  .batch-toolbar { align-items: flex-start; flex-direction: column; }
  .batch-toolbar > div { justify-content: flex-start; }
}
