.ms-booking-fab {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: calc(clamp(16px, 2vw, 28px) + env(safe-area-inset-bottom));
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange, #f0442d), var(--orange-2, #ff6a00));
  color: #fff;
  box-shadow: 0 14px 34px rgba(255, 56, 20, 0.3);
  font-family: var(--display, "Arial Narrow", Arial, sans-serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.ms-booking-fab:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 17px 40px rgba(255, 56, 20, 0.34);
}

.ms-booking-fab:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(16, 75, 169, 0.7), 0 17px 40px rgba(255, 56, 20, 0.34);
}

@media (max-width: 760px) {
  .ms-booking-fab {
    left: 16px;
    right: 16px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: auto;
    min-height: 58px;
    padding: 15px 22px 12px;
    font-size: clamp(22px, 6vw, 27px);
    box-shadow: 0 14px 34px rgba(255, 56, 20, 0.32);
  }
}

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

@media print {
  .ms-booking-fab {
    display: none !important;
  }
}
