/* Booking request page styles */

.booking-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}

.booking-form-stack {
  display: grid;
  gap: 22px;
}

.booking-card {
  display: block;
  padding: 0;
  border-radius: 18px;
  background: #fff;
  border: none;
  padding: 20px;
}

.booking-step-title {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 2px;
  border-bottom: 1px solid;
  padding-bottom: 11px;
  margin-bottom: 20px;
}

.booking-step-title > span {
  display: grid;
  flex: 0 0 56px;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  font-family: DomaineLocal, Georgia, serif;
  font-size: 28px;
  line-height: 1;
  background: linear-gradient(135deg, #2b6a52, #427b59);
  box-shadow: 0 12px 24px rgba(67, 123, 89, 0.26);
}

.booking-step-title h2 {
  margin: 0;
  color: var(--blue);
  font-family: DomaineLocal, Georgia, serif;
  line-height: 0.95;
  font-size: 29px;
}

.booking-step-title p {
  margin: 10px 0 0;
  color: #6f8294;
  font-size: 17px;
  line-height: 1.65;
}

.booking-field-block {
  display: grid;
  gap: 10px;
}

.booking-field-label,
.booking-card label {
  display: grid;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
}

.booking-card input[type="text"],
.booking-card input[type="tel"],
.booking-card input[type="email"],
.booking-card input[type="number"],
.booking-card textarea,
.booking-card select {
  width: 100%;
  border: 1px solid #d7e4ed;
  border-radius: 14px;
  background: #fbfdff;
  color: #183a5a;
  font-size: 16px;
  font-weight: 500;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  height: 50px !important;
}

.booking-card input[type="text"],
.booking-card input[type="tel"],
.booking-card input[type="email"],
.booking-card input[type="number"],
.booking-card select {
  height: 50px;
  border: 1px solid var(--green);
  border-radius: 8px;
  padding: 10px 20px;
}

.booking-card textarea {
  min-height: 140px;
  padding: 16px 18px;
  resize: vertical;
}

.booking-card input:focus,
.booking-card textarea:focus,
.booking-card select:focus {
  outline: none;
  border-color: #4f82b1;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(79, 130, 177, 0.12);
}

.booking-two-col,
.booking-three-col,
.extra-service-grid,
.booking-policy-grid {
  display: grid;
  gap: 16px;
}

.booking-two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 20px;
}

.booking-three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.room-picker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.room-picker-card {
  display: block !important;
  position: relative;
  gap: 0 !important;
  cursor: pointer;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

.room-picker-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.room-picker-ui {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid #d8e4ed;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 61, 98, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.room-picker-card:hover .room-picker-ui {
  transform: translateY(-2px);
  border-color: #9ab7cf;
  box-shadow: 0 18px 30px rgba(17, 61, 98, 0.08);
}

.room-picker-card input:checked + .room-picker-ui {
  border-color: #2b6a52;
  box-shadow: 0 0 0 4px rgba(67, 123, 89, 0.12), 0 18px 30px rgba(17, 61, 98, 0.1);
}

.room-picker-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.room-picker-body {
  padding: 10px;
}

.room-picker-name {
  color: var(--blue);
  font-family: DomaineLocal, Georgia, serif;
  font-size: 17px;
  line-height: 30px;
  margin-bottom: 9px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.room-picker-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

.room-picker-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #34506a;
  font-size: 12px;
  font-weight: 600;
}

.room-picker-meta i {
  color: var(--green);
}

.room-picker-summary {
  color: #677b8d;
  font-size: 15px;
  line-height: 1.7;
  display: none;
}

.room-picker-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
  font-family: DomaineLocal, Georgia, serif;
  margin-top: 7px;
}

.room-picker-price small {
  color: #6f8294;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.booking-empty-state {
  margin: 0;
  padding: 18px;
  border: 1px dashed #c9d8e4;
  border-radius: 14px;
  color: #6f8294;
  background: #fbfdff;
}

.guest-stepper {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  height: 50px;
  overflow: hidden;
  border: 1px solid var(--green);
  border-radius: 14px;
  background: #fbfdff;
}

.guest-stepper input {
  height: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  text-align: center;
  background: transparent !important;
  box-shadow: none !important;
}

.guest-stepper-btn {
  display: flex;
  justify-content: center;
  width: 46px;
  height: 50px;
  border: 0;
  color: #4d6a85;
  font-size: 16px;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
  align-items: center;
  text-align: center;
  border-radius: 5px !IMPORTANT;
}
.guest-stepper-btn i{position: initial;}
.guest-stepper-btn:hover {
  color: var(--green);
  background: #eef6f4;
}

.extra-service-grid,
.booking-policy-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.extra-service {
  display: block !important;
  padding: 0 !important;
  border: 0 !important;
  position: relative;
  gap: 0 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

.extra-service input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.extra-service > span {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 70px;
  padding: 10px;
  border: 1px solid #d8e4ed;
  border-radius: 16px;
  color: var(--text);
  background: #fff;
  box-shadow: none;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.extra-service:hover > span {
  transform: translateY(-2px);
  border-color: #9ab7cf;
}

.extra-service i {
  display: grid;
  flex: 0 0 48px;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--green);
  background: #eef6f4;
}

.extra-service strong,
.extra-service small {
  display: block;
}

.extra-service strong {
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.extra-service small {
  margin-top: 6px;
  color: #6f8294;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.extra-service input:checked + span {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(67, 123, 89, 0.12), 0 16px 28px rgba(17, 61, 98, 0.08);
}

.booking-policy-grid div {
  padding: 20px;
  border: 1px solid #d8e4ed;
  border-radius: 16px;
  background: #fff;
}

.booking-policy-grid i {
  color: var(--green);
  font-size: 26px;
}

.booking-policy-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--blue);
  font-size: 16px;
}

.booking-policy-grid p {
  margin: 6px 0 0;
  color: #6f8294;
  line-height: 1.7;
}

.confirm-check {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  gap: 12px !important;
  align-items: start;
  color: #4d6072 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-transform: none !important;
}

.confirm-check input {
  width: 18px !important;
  height: 18px;
  margin-top: 2px;
}

.booking-card .btn-main {
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  justify-self: start;
  margin-top: 15px;
  width: 100%;
  border: none;
}

.booking-summary-panel {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.summary-box {
  border-radius: 18px;
  padding: 20px 19px;
  color: #fff;
  background: linear-gradient(180deg, #1f4d7b 0%, #173e65 100%);
  box-shadow: 0 18px 36px rgba(17, 61, 98, 0.18);
}

.summary-box h3 {
  margin: 0 0 18px;
  font-family: DomaineLocal, Georgia, serif;
  font-size: 30px;
  line-height: 0.95;
}

.summary-box > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.summary-box span {
  font-size: 16px;
  font-weight: 500;
  font-family: DomaineLocal, Georgia, serif;
}

.summary-box strong {
  max-width: 55%;
  text-align: right;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

.summary-box .summary-total {
  margin-top: 6px;
  border-bottom: 0;
}

.summary-box .summary-total strong {
  font-size: 20px;
}

.summary-box p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.booking-help-box {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 20px;
  border: 1px solid #d8e4ed;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(23, 74, 120, 0.06);
}

.booking-help-box i {
  display: grid;
  flex: 0 0 48px;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
}

.booking-help-box strong {
  color: var(--blue);
}

.booking-help-box p {
  margin: 0;
  color: #6f8294;
}

@media (max-width: 1199px) {
  .booking-page-grid {
    grid-template-columns: 1fr;
  }

  .booking-summary-panel {
    position: static;
  }
}

@media (max-width: 991px) {
  .room-picker-grid,
  .booking-two-col,
  .booking-three-col,
  .extra-service-grid,
  .booking-policy-grid {
    grid-template-columns: 1fr;
  }

  .room-picker-image {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .booking-card {
    padding: 20px;
    border-radius: 16px;
  }

  .booking-step-title {
    gap: 14px;
  }

  .booking-step-title > span {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .booking-step-title h2 {
    font-size: 42px;
  }

  .booking-step-title p {
    font-size: 15px;
  }

  .room-picker-name,
  .summary-box h3 {
    font-size: 36px;
  }

  .summary-box strong {
    max-width: 50%;
    font-size: 15px;
  }
}
.room-picker-grid .room-picker-card .room-picker-ui{display: grid !IMPORTANT;grid-template-columns: 100px 1fr;gap: 6px !important;box-shadow: none !important;border-radius: 10px;}
.booking-policy-grid{margin=-b: 3;margin=-b: 30;margin=-b: 30p;margin=-b: 30px;margin=-b: 30p;margin=-b: 30;margin=-b: 3;margin=-b: ;margin-bottom: 26px;}