/* OTA Desktop Datepicker styles (Premium + Bold UI) */

.ota-search{
  position:relative;
  z-index:20;
  overflow:visible;
  display:grid;
  grid-template-columns:1.3fr 1fr 220px;
  gap:16px;
  align-items:center;

  background:#fff;

  /* ✅ EXTRA THICK BORDER */
  border:5px solid #bdce31;

  border-radius:12px;
  padding:14px 16px;

  max-width:1100px;
  margin:0 auto;

  box-shadow:0 4px 14px rgba(0,0,0,.06);
}

@media(max-width:900px){
  .ota-search{grid-template-columns:1fr;}
}

.ota-col--guests{
  position:relative;
  z-index:30;
  overflow:visible;
}

.ota-label{
  font-weight:600;
  font-size:11px;
  letter-spacing:.05em;
  color:#6F7A8F;
  margin-bottom:4px;
  text-transform:uppercase;
}

/* DATE FIELD */
.ota-date-display{
  width:100%;
  border:5px solid #bdce31;
  border-radius:8px;
  outline:none;
  font-size:16px;
  padding:10px 12px;
  background:#fff;
  cursor:pointer;
  color:#21283A;
}

/* GUEST FIELD */
.ota-guests-toggle{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;

  background:#fff;
  border:5px solid #bdce31;
  border-radius:8px;
  padding:12px 14px;

  cursor:pointer;
}

.ota-guests-toggle:hover{
  border-color:#a8b92b;
  background:#fafafa;
}

.ota-guests-summary{
  font-size:15px;
  color:#21283A;
}

/* POPOVER */
.ota-guests-popover{
  position:absolute;
  top:calc(100% + 6px);
  left:0;
  z-index:99999;
  background:#fff;
  border:1px solid #E3E7EF;
  border-radius:10px;
  box-shadow:0 10px 24px rgba(20,30,55,.12);
  padding:14px 14px 10px;
  min-width:280px;
}

.ota-guests-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:8px 6px;
}

.ota-guests-label{
  font-size:14px;
  color:#21283A;
}

.ota-stepper{
  display:flex;
  align-items:center;
  gap:8px;
}

.ota-stepper-input{
  width:44px;
  text-align:center;
  border:1px solid #D6DCE7;
  border-radius:8px;
  padding:6px 4px;
  font-size:15px;
  background:#F9FAFC;
  color:#21283A;
}

.ota-stepper-btn{
  width:34px;
  height:34px;
  border-radius:50%;
  border:1px solid #C8D0DF;
  background:#fff;
  font-size:18px;
  line-height:18px;
  color:#2C3141;
  cursor:pointer;
}

.ota-stepper-btn:hover{
  background:#F3F6FC;
}

.ota-guests-actions{
  display:flex;
  justify-content:flex-end;
  padding:8px 6px 4px;
}

.ota-popover-close{
  background:#0071c2;
  color:#fff;
  border:none;
  border-radius:8px;
  padding:8px 12px;
  font-weight:600;
  cursor:pointer;
}

/* SEARCH BUTTON */
.ota-search-btn{
  background:#0071c2;
  color:#fff;
  border:none;
  border-radius:8px;
  padding:16px 18px;
  font-weight:700;
  letter-spacing:.1em;
  cursor:pointer;
  width:100%;
}

.ota-search-btn:hover{
  background:#005999;
}

/* FACET */
.ota-facet{
  margin-bottom:8px;
}

.ota-facet .ota-facet-wrap{
  position:relative;
}

.ota-facet .facetwp-facet{
  width:100%;
}

.ota-facet select,
.ota-facet input[type="search"],
.ota-facet input[type="text"],
.ota-facet .fs-wrap{
  width:100%;
  border:5px solid #bdce31;
  border-radius:8px;
  padding:10px 12px;
  background:#fff;
  font-size:15px;
  color:#21283A;
}

/* HOVER */
.ota-date-display:hover,
.ota-facet select:hover,
.ota-facet input:hover{
  border-color:#a8b92b;
}

/* FOCUS */
.ota-date-display:focus,
.ota-facet input:focus{
  border-color:#8fa61f;
  box-shadow:0 0 0 2px rgba(189,206,49,0.3);
  outline:none;
}