.hv-booking-form {
  min-width: 100%;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hv-booking-form .hv-step {
  width: 100%;
  max-width: 720px;
}

.hv-booking-form h3 {
  display: none;
}

.hv-booking-form p {
  margin: 0 0 10px;
}

.hv-booking-form > p > label,
.hv-booking-form .hv-name-row > label,
.hv-booking-form .hv-email-row > label,
.hv-booking-form .hv-phone-row > label {
  display: none;
}

.hv-booking-form .hv-restaurant-row > label,
.hv-booking-form .hv-pickup-row > label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #555;
}

.hv-booking-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.hv-booking-form input[type="text"],
.hv-booking-form input[type="email"],
.hv-booking-form input[type="number"],
.hv-booking-form input[type="date"],
.hv-booking-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0dcd7;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 15px;
  color: #333;
  background: #fff;
  transition: border-color .2s;
}

.hv-booking-form input[type="text"]:focus,
.hv-booking-form input[type="email"]:focus,
.hv-booking-form input[type="number"]:focus,
.hv-booking-form select:focus {
  outline: none;
  border-color: #c4a265;
}

.hv-booking-form input::placeholder {
  color: #b0aba3;
  font-weight: 400;
}

/* Gift toggle */
.hv-gift-toggle {
  margin: 0 0 18px;
  padding: 12px 16px;
  background: #faf6f0;
  border: 2px solid #d4a762;
  border-radius: 10px;
}
.hv-gift-label {
  display: flex !important;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 600 !important;
  font-size: 1.05em;
  margin: 0 !important;
}
.hv-gift-label input[type="checkbox"] {
  display: none;
}
.hv-gift-switch {
  position: relative;
  width: 44px;
  min-width: 44px;
  height: 24px;
  background: #ccc;
  border-radius: 12px;
  transition: background .2s;
}
.hv-gift-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s;
}
.hv-gift-label input:checked ~ .hv-gift-switch {
  background: #d4a762;
}
.hv-gift-label input:checked ~ .hv-gift-switch::after {
  transform: translateX(20px);
}

/* Step indicator */
.hv-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 0 24px;
  width: 100%;
}
.hv-step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #d4d0cb;
  background: #fff;
  color: #999;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
  flex-shrink: 0;
}
.hv-step-dot.active {
  border-color: #B8A689;
  background: linear-gradient(90deg, #B8A689 2.08%, #E0D2BB 31.97%, #BAA793 100%);
  color: #fff;
}
.hv-step-dot.completed {
  border-color: #B8A689;
  background: #B8A689;
  color: #fff;
}
.hv-step-line {
  flex: 0 0 40px;
  height: 2px;
  background: #d4d0cb;
}

/* Step navigation */
.hv-step-nav {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.hv-step-nav .hv-btn-prev {
  flex: 0 0 auto;
  padding: 14px 24px;
  border: 1px solid #d4d0cb;
  background: #fff;
  color: #555;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: border-color .2s;
}
.hv-step-nav .hv-btn-prev:hover {
  border-color: #B8A689;
}
.hv-step-nav .hv-btn-next,
.hv-step-nav .hv-submit-btn {
  flex: 1;
}

.hv-participants-list {
  border: 1px solid #e0dcd7;
  border-radius: 4px;
  padding: 10px 12px;
  margin-bottom: 14px;
}

.hv-participants-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}

.hv-participants-option input[type="radio"] {
  margin: 0;
}

.hv-section-title {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 15px;
  color: #555;
}

.hv-help-text,
.hv-info-text {
  font-size: 14px;
  color: #555;
}

.hv-five-plus-fields {
  margin: 0 0 14px;
  padding: 10px 12px;
  border: 1px dashed #e0dcd7;
  border-radius: 4px;
  background: transparent;
}

.hv-five-plus-date-row {
  margin: 10px 0 0;
}

.hv-five-plus-date-row > label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.hv-booking-form button.hv-submit-btn {
  width: 100%;
  border: 0;
  background: linear-gradient(90deg, #B8A689 2.08%, #E0D2BB 31.97%, #BAA793 100%);
  color: #fff;
  padding: 16px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: opacity .2s;
}

.hv-booking-form button.hv-submit-btn:hover {
  opacity: 0.9;
}

.hv-booking-notice {
  margin: 0 0 14px;
  padding: 12px;
  border-radius: 6px;
}

.hv-booking-notice.success {
  background: #ecfdf3;
  color: #065f46;
  border: 1px solid #10b981;
}

.hv-booking-notice.error {
  background: #fff1f2;
  color: #9f1239;
  border: 1px solid #f43f5e;
}

.hv-date-warning {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: #9f1239;
  font-weight: 600;
}

/* -------------------------------------------------------
 * Amelia-style calendar
 * ------------------------------------------------------- */
.hv-calendar {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
  user-select: none;
  max-width: 420px;
}

.hv-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.hv-cal-title {
  font-weight: 700;
  font-size: 15px;
  color: #1a2a3a;
}

.hv-cal-nav {
  display: flex;
  gap: 6px;
}

.hv-cal-nav button {
  background: none;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #333;
  padding: 0;
  transition: background .15s;
}

.hv-cal-nav button:hover {
  background: #f5f5f5;
}

.hv-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.hv-cal-dow {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #8a8a8a;
  padding: 4px 0;
  text-transform: uppercase;
}

.hv-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  color: #1a2a3a;
  cursor: pointer;
  border: 1px solid #eee;
  background: #fafafa;
  transition: background .15s, border-color .15s;
  position: relative;
}

.hv-cal-day:hover:not(.hv-cal-day--disabled):not(.hv-cal-day--outside):not(.hv-cal-day--booked) {
  background: #f5efe7;
  border-color: #d4c4a8;
}

.hv-cal-day--today {
  font-weight: 700;
}

.hv-cal-day--today::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #1a2a3a;
}

.hv-cal-day--selected {
  background: linear-gradient(90deg, #B8A689 2.08%, #E0D2BB 31.97%, #BAA793 100%) !important;
  color: #fff !important;
  border-color: #B8A689 !important;
}

.hv-cal-day--selected::after {
  background: #fff;
}

.hv-cal-day--disabled {
  color: #ccc;
  cursor: not-allowed;
  background: #f7f7f7;
  border-color: #f0f0f0;
}

.hv-cal-day--booked {
  color: #ccc;
  cursor: not-allowed;
  background: repeating-linear-gradient(
    -45deg,
    #f7f7f7,
    #f7f7f7 3px,
    #eee 3px,
    #eee 4px
  );
  border-color: #e8e8e8;
}

.hv-cal-day--outside {
  color: #ccc;
  background: transparent;
  border-color: transparent;
  cursor: default;
}

@media (max-width: 600px) {
  .hv-booking-form {
    padding: 14px;
  }
}
