:root{
  --fx-card:#ffffff;
  --fx-soft:#f6f7fb;
  --fx-text:#0f172a;
  --fx-muted:#64748b;
  --fx-border:rgba(15,23,42,.08);
  --fx-shadow:0 18px 50px rgba(15,23,42,.12);
  --fx-shadow2:0 12px 30px rgba(15,23,42,.10);
}

/* === SEARCH CONTAINER === */
.search-shell{
  background: var(--fx-card);
  border-radius: 26px;
  border: 1px solid var(--fx-border);
  padding: 16px;
}

/* === GRID === */
.search-grid{
  display:grid;
  grid-template-columns: 1.25fr 56px 1.25fr 0.9fr 0.9fr 0.9fr auto;
  gap:10px;
  align-items:center;
}

/* === LABEL & INPUT === */
.fx-label{
  font-weight:900;
  font-size:12px;
  margin-bottom:6px;
}

.fx-input{
  height:68px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.10);
  padding:0 14px;
  font-weight:800;
}

/* === SWAP === */
.swap-btn{
  width:56px;
  height:56px;
  border-radius:50%;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
      margin-top: 20px;
}

/* === RETURN === */
.ret-wrap{ position:relative; }
.ret-clear{
    position: absolute;
    right: 7px;
    background: #fec60a;
    border-radius: 31px;
    cursor: pointer;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    padding: 0;
    width: 18px;
    height: 18px;
    text-align: center;
    color: #000;
}

/* === AUTOCOMPLETE === */
#flightSearchForm .ac-box{
  position:absolute;
  top:calc(100% + 6px);
  left:0; right:0;
  background:#fff;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.10);
  display:none;
  z-index:9999;
  min-width: 350px;
}
#flightSearchForm .ac-item{
  padding:12px 14px;
  display:flex;
  justify-content:normal;
  cursor:pointer;
  font-size: 14px;
      white-space: nowrap;
}
#flightSearchForm .ac-item span {
right: 0px;
    position: absolute;
    padding: 5px 10px;
	background:#ffffff;
}
#flightSearchForm .ac-item:hover span,#flightSearchForm .ac-item:focus span, #flightSearchForm .ac-item.active span, #flightSearchForm .ac-item:focus span {
    background: #ffc106 !important;
}
/* === PAX === */
.pax-btn{
  height:56px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  font-weight:900;
  width:100%;
  text-align:left;
  padding:0 14px;
}
.pax-pop{
  position:absolute;
  right:0;
  top:calc(100% + 8px);
  width:280px;
  background:#fff;
  border-radius:18px;
  padding:12px;
  display:none;
  z-index:9999;
}

  /* pax popover */
  .pax-pop{
    position:absolute;
    right:0;
    top: calc(100% + 8px);
    width: 280px;
    background:#fff;
    border-radius: 18px;
    border:1px solid rgba(15,23,42,.10);
    box-shadow: var(--fx-shadow);
    padding: 12px;
    display:none;
    z-index: 9999;
  }
  .pax-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 10px 8px;
    border-radius: 14px;
  }
  .pax-row:hover{ background:#f8fafc; }
  .pax-ctl{
    display:flex;
    align-items:center;
    gap:10px;
  }
  .pax-ctl button{
    width:34px; height:34px;
    border-radius: 12px;
    border:1px solid rgba(15,23,42,.10);
    background:#fff;
    font-weight:1100;
  }
  .pax-ctl span{ min-width: 18px; text-align:center; font-weight:1100; }
.type-tabs button {
    font-size: 12px;
	line-height: 13px;
}
#paxDone{
	height:40px;
}
/* === CTA === */
.fx-cta{
  height:48px;
  border-radius:16px;
  font-weight:900;
  white-space:nowrap;
}

/* TYPE TAB KAPALI */
.col-type{ display:none !important; }
@media(max-width:992px){
.search-grid {
    grid-template-columns: 1fr;
}
.heroInner {
	padding: 15px 0;
	padding-top: 15px;
}
}
/* ===============================
   DATE CHIP INPUT
=============================== */

.fx-date-wrap{
  position: relative;
}

.fx-date-icon{
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
  font-size: 16px;
}

.fx-date-input{
  padding-left: 42px;
}

/* chip görünümü (tarih seçiliyse) */
.fx-date-input.has-date{
  background: #f8fafc;
  border-color: #e2e8f0;
  font-weight: 900;
  color: #0f172a;
}

/* mobilde biraz daha kompakt */
@media(max-width:576px){
  .fx-date-input{
    font-size: 14px;
  }
}