.marketing-appointment-button {
  position: fixed;
  right: calc(1.5rem + env(safe-area-inset-right, 0px));
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: #9d5845;
  color: #fff;
  box-shadow: 0 8px 22px rgba(32, 51, 48, 0.24);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.marketing-appointment-button:hover {
  background: #173d38;
  box-shadow: 0 10px 26px rgba(32, 51, 48, 0.28);
  transform: translateY(-2px);
}

.marketing-appointment-button:focus-visible {
  outline: 3px solid #173d38;
  outline-offset: 4px;
}

@media (max-width: 560px) {
  .marketing-appointment-button {
    right: calc(0.875rem + env(safe-area-inset-right, 0px));
    bottom: calc(0.875rem + env(safe-area-inset-bottom, 0px));
    min-height: 50px;
    max-width: calc(100vw - 1.75rem - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));
    padding: 0.8rem 1.05rem;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marketing-appointment-button {
    transition: none;
  }
}
