.sb-booking-wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px){
  .sb-booking-wrap{ grid-template-columns: 1fr; }
}

.sb-title{
  font-size: 44px;
  margin: 0 0 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b9862a; /* tone gold gần ảnh */
  font-family: Georgia, "Times New Roman", serif;
}

.sb-desc{
  margin: 0 0 18px;
  color:#666;
  max-width: 520px;
}

.sb-booking-left, .sb-booking-right{
  background: #fff;
}

.sb-hours{
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 16px;
}

.sb-hours-row{
  display:flex;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid #eee;
}
.sb-hours-row:first-child{ border-top: none; }

.sb-hours-day{
  font-weight: 600;
  color:#222;
}
.sb-hours-time{
  background:#c89a3a;
  color:#fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 13px;
  align-self: center;
}

.sb-calendar-box {
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 39px 12px;
    background: #fbf3ea;
}

.sb-hidden-input{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  opacity:0;
}

/* Form */
.sb-form{
  margin-top: 8px;
  max-width: 560px;
}

.sb-field{
  margin-bottom: 14px;
}
.sb-field label{
  display:block;
  font-size: 14px;
  color:#666;
  margin-bottom: 8px;
}
.sb-field input, .sb-field textarea{
  width:100%;
  border:none;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  outline: none;
  background: transparent;
}
.sb-field textarea {
    border-radius: 8px;
    padding: 10px 12px;
    background: #fff;
    border: none;
    border-bottom: 1px solid #ddd;
}
.sb-btn{
  display:inline-block;
  border:none;
  background:#c89a3a;
  color:#fff;
  padding: 12px 28px;
  border-radius: 999px;
  cursor:pointer;
  font-weight: 700;
  letter-spacing: .5px;
}
.sb-btn:disabled{
  opacity: .6;
  cursor: not-allowed;
}

.sb-alert{
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f5f5f5;
  color:#222;
}
.sb-alert.is-error{
  background: #ffe9e9;
  color:#8a1f1f;
}
.sb-alert.is-success{
  background: #e9fff0;
  color:#1f6b35;
}

/* Flatpickr inline - chỉnh nhẹ cho giống ảnh */
.flatpickr-calendar.inline{
  box-shadow: none !important;
  background: transparent !important;
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange{
  background: #c89a3a !important;
  border-color: #c89a3a !important;
}
.flatpickr-day.today{
  border-color: #9b9b9b !important;
}
/* ===== FULL WIDTH CALENDAR ===== */

#sb_calendar_inline {
    width: 100%;
    background: #fff;
    border-radius: 10px;
}

.flatpickr-calendar.inline {
  width: 100% !important;
  max-width: 100% !important;
}

.flatpickr-calendar .flatpickr-days {
  width: 100% !important;
}

.flatpickr-calendar .dayContainer {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
}

.flatpickr-day {
  flex: 1 0 14.2857%;
  max-width: 14.2857%;
}
.flatpickr-rContainer{
  width: 100%;
}.flatpickr-day {
  height: 48px;
  line-height: 48px;
  font-size: 15px;
}

.flatpickr-months {
  padding: 10px 0;
}

.flatpickr-current-month {
  font-size: 18px;
  font-weight: 600;
}
.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
  
    color: rgb(0 0 0 / 45%);
}
.sb-field select.sb-select{
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  outline: none;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}