.whatsapp-reservation {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1300;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px 0 14px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: #25d366;
  color: #052b36;
  box-shadow: 0 12px 28px rgba(0, 24, 42, 0.30);
  font-family: inherit;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.whatsapp-reservation:hover {
  background: #20c45d;
  color: #041f29;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 24, 42, 0.36);
}

.whatsapp-reservation:focus-visible {
  outline: 3px solid #f1f600;
  outline-offset: 3px;
}

.whatsapp-reservation svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 760px) {
  .whatsapp-reservation {
    right: 12px;
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    min-height: 48px;
    max-width: calc(100vw - 24px);
    padding: 0 16px 0 12px;
    font-size: 14px;
  }

  .whatsapp-reservation svg {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }
}

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