.file-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.file-input-hidden {
  display: none;
}

.file-name {
  font-size: 14px;
  color: var(--muted);
}

.range-value {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.preview-grid img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  max-height: 260px;
  object-fit: contain;
  background: #f8fafc;
}
