
/* === Base Styles (all bb_booking_* classes as requested) === */

/* Button helper (if you want small tweaks – optional) */
.bb_booking_1 {
  cursor: pointer;
}

/* Overlay */
.bb_booking_2 {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;               /* hidden by default */
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 9999;
}

/* Overlay active state */
.bb_booking_2.bb_booking_12 {
  display: flex;
}

/* Modal box */
.bb_booking_3 {
  background: #ffffff;
  max-width: 480px;
  width: 100%;
  border-radius: 12px;
  padding: 24px 24px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}

/* Modal header */
.bb_booking_4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

/* Title */
.bb_booking_5 {
  font-size: 22px;
  margin: 0;
  font-weight: 600;
  color: black;
}

/* Close button */
.bb_booking_6 {
  border: none;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

/* Form */
.bb_booking_7 {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Form group */
.bb_booking_8 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Label */
.bb_booking_9 {
  font-size: 14px;
  font-weight: 500;
  color: rgb(102, 98, 98);
  text-align: start;
}

/* Inputs */
.bb_booking_10 {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  box-sizing: border-box;
}

/* Submit button */
.bb_booking_11 {
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  background: #0051ff;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}

/* Submit hover */
.bb_booking_11:hover {
  background: #0e7f01;
}

/* Prevent scroll on body when popup open */
body.bb_booking_13 {
  overflow: hidden;
}

/* ===================== */
/*  6+ RESPONSIVE BREAKPOINTS */
/* ===================== */

/* >= 1200px - Large desktop */
@media (min-width: 1200px) {
  .bb_booking_3 {
    max-width: 520px;
    padding: 28px 28px 24px;
  }
  .bb_booking_5 {
    font-size: 24px;
  }
  .bb_booking_10 {
    font-size: 15px;
  }
}

/* <= 1024px - Small desktop / large tablet */
@media (max-width: 1024px) {
  .bb_booking_3 {
    max-width: 480px;
  }
}

/* <= 768px - Tablet */
@media (max-width: 768px) {
  .bb_booking_3 {
    max-width: 420px;
    padding: 22px 20px 18px;
  }
  .bb_booking_5 {
    font-size: 20px;
  }
}

/* <= 600px - Large mobile */
@media (max-width: 600px) {
  .bb_booking_3 {
    max-width: 100%;
    border-radius: 0;
    height: auto;
  }
  .bb_booking_2 {
    padding: 0;
    align-items: flex-end;
  }
}

/* <= 480px - Medium mobile */
@media (max-width: 480px) {
  .bb_booking_3 {
    padding: 18px 16px 16px;
  }
  .bb_booking_5 {
    font-size: 18px;
  }
  .bb_booking_10 {
    padding: 8px 10px;
    font-size: 13px;
  }
  .bb_booking_11 {
    font-size: 14px;
    padding: 9px 12px;
  }
}

/* <= 360px - Small mobile */
@media (max-width: 360px) {
  .bb_booking_3 {
    padding: 16px 12px 12px;
  }
  .bb_booking_5 {
    font-size: 16px;
  }
  .bb_booking_9 {
    font-size: 13px;
  }
}
