.rotate-settings { flex-direction: column; align-items: stretch; gap: 18px; }

.rotate-quick-group,
.rotate-flip-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.rotate-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.15s ease;
}
.rotate-btn svg { width: 16px; height: 16px; }
.rotate-btn:hover { border-color: var(--text); color: var(--text); }
.rotate-btn.active { background: var(--pine-soft); color: var(--pine); border-color: transparent; }
.rotate-reset-btn { margin-left: auto; color: var(--text-muted); }

.rotate-angle-display { font-size: 13px; font-weight: 700; color: var(--text-secondary); margin-left: 4px; }
.rotate-angle-display b { color: var(--accent); font-family: var(--font-mono); font-weight: 700; }

.rotate-fine-group { flex: 0 0 auto; width: 100%; min-width: 0; }

.rotate-indicator-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--bg-alt);
}
.rotate-indicator-box {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
}
.rotate-indicator-icon {
  width: 34px;
  height: 34px;
  color: var(--accent);
  transition: transform 0.2s ease;
  transform-origin: 50% 50%;
}
.rotate-indicator-caption { font-size: 12.5px; color: var(--text-muted); font-weight: 600; text-align: center; max-width: 460px; }

@media (max-width: 640px) {
  .rotate-reset-btn { margin-left: 0; }
}
