.booking-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.7rem 1.15rem;
  border: 2px solid transparent;
  border-radius: 999px;
  background: #116847;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(17, 104, 71, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.booking-cta:hover {
  background: #0c5036;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(17, 104, 71, 0.32);
}

.booking-cta:focus-visible {
  outline: 3px solid #f2b84b;
  outline-offset: 3px;
}

.site-nav__booking-cta {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0.55rem 1rem;
  background: #f4e3dc;
  color: #17382f;
  box-shadow: none;
}

.site-nav__booking-cta:hover {
  background: #fff;
  color: #17382f;
}

.booking-cta--section {
  margin-top: 1.5rem;
  background: #7b3a2f;
  box-shadow: 0 10px 24px rgba(71, 31, 25, 0.28);
}

.booking-cta--section:hover {
  background: #612d25;
}

.booking-cta-row {
  display: flex;
  justify-content: center;
  grid-column: 1 / -1;
  width: 100%;
}

.booking-cta--card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
}

.mobile-booking-cta {
  display: none;
}

@media (max-width: 1024px) {
  .site-nav__booking-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  body.has-mobile-booking-cta {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-booking-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 990;
    display: flex;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 253, 248, 0.98);
    border-top: 1px solid rgba(36, 54, 64, 0.16);
    box-shadow: 0 -8px 24px rgba(20, 45, 38, 0.14);
  }

  .mobile-booking-cta .booking-cta {
    width: 100%;
  }

}

@media (prefers-reduced-motion: reduce) {
  .booking-cta {
    transition: none;
  }
}
