/* Sticky mobil-CTA i bunden — kun små skærme */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(3.5rem + env(safe-area-inset-bottom, 0px));
  }

  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 95;
    min-height: 3.25rem;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: #fff;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
    font-family: var(--font-sans);
  }

  .mobile-sticky-cta__book {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 3.25rem;
    padding: 0.65rem 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    box-sizing: border-box;
    transition: opacity 0.15s ease, background 0.15s ease;
    -webkit-tap-highlight-color: transparent;
    background: #d92323;
    color: #fff;
  }

  .mobile-sticky-cta__book:active,
  .mobile-sticky-cta__book:hover {
    background: #a82620;
    color: #fff;
  }
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}
