.x-menu-sticker__spacer {
  box-sizing: border-box;
  width: 100%;
  height: calc(58px + var(--menu-sticker-lift, 0px) + env(safe-area-inset-bottom));
}

#x-menu-sticker {
  box-sizing: border-box;
  position: fixed;
  z-index: 2147482000;
  right: 0;
  bottom: var(--menu-sticker-lift, 0px);
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 1px solid var(--menu-sticker-border);
  background: var(--menu-sticker-background-elevated);
  color: var(--menu-sticker-text);
  box-shadow: 0 -8px 28px rgb(0 0 0 / 38%);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
}

.x-menu-sticker__inner {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
  box-sizing: border-box;
  width: min(100%, 760px);
  min-height: 57px;
  margin: 0 auto;
  padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
}

.x-menu-sticker--no-menu .x-menu-sticker__inner {
  grid-template-columns: minmax(0, 1fr) auto;
}

.x-menu-sticker__menu,
.x-menu-sticker__bonus,
.x-menu-sticker__cta {
  box-sizing: border-box;
  min-width: 0;
  min-height: 44px;
  border: 1px solid var(--menu-sticker-border);
  border-radius: 11px;
  text-decoration: none !important;
}

.x-menu-sticker__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  padding: 0;
  background: var(--menu-sticker-surface-strong);
  color: var(--menu-sticker-accent);
  cursor: pointer;
}

.x-menu-sticker__menu svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

.x-menu-sticker__bonus {
  display: grid;
  grid-template-columns: 5px minmax(0, 1fr);
  align-items: center;
  column-gap: 7px;
  height: 44px;
  padding: 0 8px;
  overflow: hidden;
  background: var(--menu-sticker-surface);
  color: var(--menu-sticker-text) !important;
}

.x-menu-sticker__bonus-dots {
  display: grid;
  align-content: center;
  gap: 5px;
  height: 42px;
}

.x-menu-sticker__bonus-dot {
  width: 2.5px;
  height: 2.5px;
  border-radius: 50%;
  background: var(--menu-sticker-text-muted);
  opacity: .55;
  transform: scale(1);
  transition: background-color var(--menu-sticker-rotation-duration, 480ms) ease,
    opacity var(--menu-sticker-rotation-duration, 480ms) ease,
    transform var(--menu-sticker-rotation-duration, 480ms) cubic-bezier(.22, .78, .24, 1);
}

.x-menu-sticker__bonus-dot.is-active {
  background: var(--menu-sticker-text-muted);
  opacity: .85;
  transform: scale(1.15);
}

.x-menu-sticker__bonus-viewport {
  display: block;
  height: 42px;
  overflow: hidden;
}

.x-menu-sticker__bonus-track {
  display: block;
  height: auto;
  transform: translate3d(0, 0, 0);
  transition: transform 480ms cubic-bezier(.22, .78, .24, 1);
  will-change: transform;
}

.x-menu-sticker__bonus-slide {
  display: grid;
  align-content: center;
  box-sizing: border-box;
  height: 42px;
  min-width: 0;
}

.x-menu-sticker__bonus-slide small {
  overflow: hidden;
  color: var(--menu-sticker-text-muted);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.x-menu-sticker__bonus-slide strong {
  overflow: hidden;
  font-size: 14px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.x-menu-sticker__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 12px;
  color: var(--menu-sticker-text) !important;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  text-transform: uppercase;
}

.x-menu-sticker__cta--primary {
  border-color: var(--menu-sticker-accent);
  background: var(--menu-sticker-accent);
  color: var(--menu-sticker-accent-text) !important;
}

.x-menu-sticker__menu:focus-visible,
.x-menu-sticker__bonus:focus-visible,
.x-menu-sticker__cta:focus-visible {
  outline: 2px solid var(--menu-sticker-text);
  outline-offset: -3px;
}

@media (max-width: 380px) {
  .x-menu-sticker__inner { gap: 4px; padding-right: 5px; padding-left: 5px; }
  .x-menu-sticker__bonus { padding-right: 6px; padding-left: 6px; }
  .x-menu-sticker__bonus-slide small { font-size: 9px; }
  .x-menu-sticker__bonus-slide strong { font-size: 13px; }
  .x-menu-sticker__cta { padding-right: 8px; padding-left: 8px; font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .x-menu-sticker__bonus-track,
  .x-menu-sticker__bonus-dot { transition: none; }
}
