.edc-showcase-banner__controls {
  position: absolute;
  z-index: 4;
  right: 16px;
  bottom: 12px;
  display: flex;
  gap: 4px;
}
.edc-showcase-banner__controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--edc-line, #d7d7d3);
  border-radius: 7px;
  background: var(--edc-white, #fff);
  color: var(--edc-ink, #111210);
  cursor: pointer;
  transition: background-color 160ms ease;
}
.edc-showcase-banner__controls svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.edc-showcase .edc-showcase-banner__pagination {
  left: 16px;
  right: 164px;
  bottom: 12px;
  gap: 0;
  overflow-x: auto;
}
.edc-showcase .edc-showcase-banner__pagination button {
  flex: 0 0 44px;
  min-width: 44px;
}
.edc-showcase-banner__controls button:focus-visible {
  outline: 2px solid var(--edc-focus, #1a5fa8);
  outline-offset: 3px;
}
@media (hover: hover) {
  .edc-showcase-banner__controls button:hover { background: var(--edc-paper, #f4f4f2); }
}
@media (max-width: 760px) {
  .edc-showcase-banner__controls { right: 10px; bottom: 8px; }
  .edc-showcase .edc-showcase-banner__pagination { left: 10px; right: 156px; bottom: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .edc-showcase-banner__controls button { transition: none; }
}
