.home2-sticky {
  display: none;
}

@media (max-width: 767px) {
  .home2-sticky.is-visible {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    color: var(--color-white);
    background: #1b123d;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.28);
  }

  .home2-page:has(.home2-sticky.is-visible) {
    padding-bottom: 84px;
  }

  .home2-sticky__copy {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
  }

  .home2-sticky__cta {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .home2-page:has(dialog[open]) .home2-sticky {
    display: none;
  }
}
