/* ====== Кнопка-капсула с подложкой ====== */
.uc-button-show,
.t-btn.uc-button-show {
  --bg: #F58220;
  --txt: #fff;
  --shadow: #C8C8C8;
  --radius: 26px;
  --ox: 14px;   /* смещение тени по X */
  --oy: 12px;   /* смещение тени по Y */

  position: relative;
  z-index: 10;                 /* поверх соседей */
  display: flex;
  width: max-content;
  margin: 0 auto calc(var(--oy) + 6px); /* ← запас снизу, чтобы не резало */
  /* при необходимости добавь и справа: margin-right: calc(var(--ox) + 6px); */

  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 16px 36px;
  min-height: 52px;

  background: var(--bg) !important;
  color: var(--txt) !important;
  border: 0;
  border-radius: var(--radius) !important;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  white-space: nowrap;

  /* сама «подложка» */
  box-shadow: var(--ox) var(--oy) 0 0 var(--shadow) !important;

  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, filter .2s ease;
}

.uc-button-show:hover,
.t-btn.uc-button-show:hover {
  transform: translate(-1px, -1px);
  box-shadow: calc(var(--ox) + 1px) calc(var(--oy) + 1px) 0 0 var(--shadow) !important;
  filter: brightness(1.03);
}

.uc-button-show:active,
.t-btn.uc-button-show:active {
  transform: translate(2px, 2px);
  box-shadow: calc(var(--ox) - 2px) calc(var(--oy) - 2px) 0 0 var(--shadow) !important;
}
