.hidden {
  display: none !important;
}

/* ---- "Coming soon" state shown while online table booking is switched off ---- */
.tl-coming-soon,
.book-coming-soon {
  padding: 60px 20px 70px;
}

.tl-coming-soon .button-basic-1,
.book-coming-soon .button-basic-1 {
  display: inline-block;
  margin-top: 10px;
}

.booking-form {
  width: 100%;
}

.booking-form-row {
  display: flex;
  gap: 15px;
}

.booking-form-row input,
.booking-form-row select {
  background-color: transparent;
  color: #fff;
  width: 100%;
  height: 40px;
  margin-bottom: 20px;
  padding: 5px 14px;
  border: 1px solid #aaa;
  border-top: 0;
  border-right: 0;
  outline: none;
  transition: all 0.2s ease-in-out;
  font-family: inherit;
}

.booking-form-row select {
  cursor: pointer;
}

.booking-form-row select option {
  background-color: #111;
  color: #fff;
}

.booking-form-row input:hover,
.booking-form-row input:focus,
.booking-form-row select:hover,
.booking-form-row select:focus {
  border-bottom-color: #ff2c55;
  border-left-color: #ff2c55;
}

.booking-form textarea {
  background-color: transparent;
  color: #fff;
  width: 95%;
  max-width: 95%;
  margin-bottom: 15px;
  border: 1px solid #aaa;
  outline: none;
  padding: 5px 14px;
  border-top: 0;
  border-right: 0;
  transition: all 0.2s ease-in-out;
  font-family: inherit;
}

.booking-form textarea:hover,
.booking-form textarea:focus {
  border-bottom-color: #ff2c55;
  border-left-color: #ff2c55;
}

.booking-form #booking-submit-btn {
  width: auto;
  border: 2px solid #ff2c55;
  padding: 10px 35px;
  border-radius: 30px;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-family: inherit;
  text-transform: uppercase;
}

.booking-form #booking-submit-btn:hover {
  background-color: #ff2c55;
}

.booking-form #booking-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.booking-form-status {
  min-height: 20px;
  margin-bottom: 15px;
  font-size: 14px;
}

.booking-form-status.success {
  color: #3ddc84;
}

.booking-form-status.error {
  color: #ff2c55;
}

@media (max-width: 767px) {
  .booking-form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* Floating WhatsApp quick-book button */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease-in-out, background 0.2s ease-in-out;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: #1ebe5b;
  color: #fff;
}

.whatsapp-float svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 0;
    width: 50px;
    height: 50px;
    justify-content: center;
    font-size: 0;
    gap: 0;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}
