/**
 * Sticky CTA Button — стили липкой кнопки на мобайле
 *
 * @package Betru_Theme
 */

.sticky-cta {
  display: none;
  height: 56px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(100%);
  overflow: hidden;
  pointer-events: none;
  transition:
    display 0.3s allow-discrete,
    opacity 0.3s,
    transform 0.3s;
  -webkit-tap-highlight-color: transparent;
  width: 100%;

  &.is-visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .sticky-cta__link {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 7px 5px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--color-text-dark);
    text-decoration: none;
    text-align: center;
    background-color: var(--color-accent-yellow);
    background-size: 150%;
    background-position: 50% 55%;
    background-repeat: no-repeat;
    cursor: pointer;
  }
}

/* Десктоп — скрыто полностью */
@media (min-width: 769px) {
  .sticky-cta {
    display: none !important;
  }
}
