/* ================================
   GLOBAL BACKGROUND
================================ */


/* ================================
   MAIN BOOKING CONTAINER
================================ */
#mrb-booking {
  max-width: 420px;
  margin: 40px auto;
  padding: 28px;
  font-family: 'Inter', sans-serif;

  border-radius: 28px;

  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.65),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

/* ================================
   PROGRESS BAR
================================ */
.mrb-progress-wrap {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 10px;
}

.mrb-progress-bar {
  height: 100%;
  width: 20%;
  background: linear-gradient(
    90deg,
    #facc15,
    #fde68a
  );
  transition: width 0.4s ease;
}

.mrb-progress-text {
  display: block;
  margin-bottom: 18px;
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 600;
}

/* ================================
   STEP VISIBILITY
================================ */
.mrb-step {
  display: none;
}

.mrb-step.active {
  display: block;
}

/* ================================
   HEADINGS & TEXT
================================ */
#mrb-booking h2 {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.3;
  margin: 12px 0 18px;
}

#mrb-booking p {
  color: #cbd5f5;
  font-size: 14px;
  line-height: 1.6;
}

/* ================================
   OPTION LIST (STEP 1 & 2)
================================ */
.mrb-option-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

/* OPTION CARD */
.mrb-option {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 18px 20px;
  border-radius: 20px;

  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);

  cursor: pointer;
  transition: all 0.25s ease;

  box-shadow:
    0 8px 22px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.mrb-option:hover {
  background: rgba(255,255,255,0.22);
}

/* SELECTED OPTION */
.mrb-option.selected {
  background: linear-gradient(
    135deg,
    rgba(250,204,21,0.35),
    rgba(255,255,255,0.18)
  );
  border-color: rgba(250,204,21,0.9);
  box-shadow:
    0 10px 26px rgba(250,204,21,0.25),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

/* OPTION ICON */
.option-icon {
  width: 32px;
  text-align: center;
  font-size: 22px;
  color: #ffffff;
}

/* OPTION TEXT */
.option-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
}

/* ================================
   ADD-ON LIST (STEP 3)
================================ */
.mrb-addon-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.mrb-addon input {
  display: none;
}

/* ADDON ROW */
.addon-row {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 18px 20px;
  border-radius: 20px;

  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);

  cursor: pointer;
  transition: all 0.25s ease;

  box-shadow:
    0 8px 22px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.mrb-addon:hover .addon-row {
  background: rgba(255,255,255,0.22);
}

/* SELECTED ADDON */
.mrb-addon input:checked + .addon-row {
  background: linear-gradient(
    135deg,
    rgba(250,204,21,0.35),
    rgba(255,255,255,0.18)
  );
  border-color: rgba(250,204,21,0.9);
  box-shadow:
    0 10px 26px rgba(250,204,21,0.25),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

/* ADDON ICON */
.addon-icon {
  width: 32px;
  text-align: center;
  font-size: 22px;
  color: #ffffff;
}

/* ADDON TITLE */
.addon-title {
  flex: 1;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
}

/* ADDON PRICE */
.addon-price {
  color: #facc15;
  font-size: 15px;
  font-weight: 700;
}

/* ================================
   INPUTS (STEP 4 & 5)
================================ */
#mrb-booking input,
#mrb-booking select,
#mrb-booking textarea {
  width: 100%;
  padding: 0px 16px;
  margin-top: 14px;

  border-radius: 16px;
  border: none;

  background: rgba(255,255,255,0.95);
  color: #111827;

  font-size: 14px;
  outline: none;
}

/* ================================
   BUTTONS
================================ */
.mrb-next,
.mrb-prev,
.mrb-submit {
  width: 100%;
  margin-top: 20px;
  padding: 16px;

  border-radius: 18px;
  border: none;

  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

/* PRIMARY */
.mrb-next,
.mrb-submit {
  background: linear-gradient(
    135deg,
    #facc15,
    #fde68a
  );
  color: #111827;
}

/* SECONDARY */
.mrb-prev {
  background: rgba(255,255,255,0.25);
  color: #ffffff;
}

/* ================================
   ERROR MESSAGE
================================ */
.mrb-error {
  margin-top: 16px;
  padding: 14px;
  border-radius: 16px;

  background: rgba(239,68,68,0.28);
  color: #ffffff;

  font-size: 13px;
}
/* ================================
   TIME SLOT GRID
================================ */
.mrb-time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

/* TIME TILE */
.mrb-time-slot {
  padding: 12px 10px;
  text-align: center;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;

  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  color: #ffffff;

  cursor: pointer;
  transition: all 0.25s ease;
}

/* Hover */
.mrb-time-slot:hover {
  background: rgba(255,255,255,0.22);
}

/* Selected */
.mrb-time-slot.selected {
  background: linear-gradient(
    135deg,
    rgba(250,204,21,0.45),
    rgba(255,255,255,0.25)
  );
  border-color: #facc15;
  color: #111827;
  font-weight: 700;
}

/* Disabled */
.mrb-time-slot.disabled {
  opacity: 0.35;
  pointer-events: none;
}

