/* ===== Кнопка "Показати ще" (під стиль Betaura) ===== */
.scb-load-more {
  --scb-pad-x: 1.4rem;
  --scb-pad-y: 0.8rem;
  --scb-bar-h: 6px;
  --scb-bar-inset: .45rem;

  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;

  width: fit-content;
  margin: 30px auto;
  padding: var(--scb-pad-y) var(--scb-pad-x) calc(var(--scb-pad-y) + var(--scb-bar-h) + .35rem);

  background: linear-gradient(145deg, #a12e2e, #711a1a);
  color: #f5e6c8 !important;
  border: 2px solid #e8c36a;
  border-radius: 9999px;
  font-family: Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  user-select: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.25s ease,
    background 0.35s ease,
    border-color 0.25s ease;
}

.scb-load-more:hover {
  background: linear-gradient(145deg, #b52d2d, #8a1c1c);
  border-color: #f5d36a;
  transform: translateY(-2px);
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.5),
    0 0 8px rgba(232, 195, 106, 0.4);
}

.scb-load-more:active {
  transform: translateY(1px);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6);
}

.scb-load-more:disabled {
  opacity: .6;
  cursor: not-allowed;
}

/* Лічильник 10/32 */
.scb-load-more .scb-counter {
  color: #f5e6c8;
  font-weight: 600;
}
.scb-load-more .scb-counter .scb-total {
  opacity: .6;
}

/* Прогрес-бар внизу кнопки */
.scb-load-more .scb-progress {
  position: absolute;
  left: calc(var(--scb-pad-x) * .6);
  right: calc(var(--scb-pad-x) * .6);
  bottom: var(--scb-bar-inset);
  height: var(--scb-bar-h);
  background: rgba(232,195,106,0.25);
  border-radius: 9999px;
  overflow: hidden;
}

.scb-load-more .scb-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #e8c36a, #f5e6c8);
  border-radius: inherit;
  transition: width .25s ease;
}

/* Фокус */
.scb-load-more:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(232,195,106,0.35),
    0 1px 2px rgba(0,0,0,0.4);
}
