.top-bar{
  background:linear-gradient(90deg,#ff4747,#ff7a18);
  color:#fff;
  font-size:13px;
  padding:6px 0;
}
.top-bar a{color:#fff;text-decoration:none;margin-right:12px;}
.top-bar a:hover{text-decoration:underline;}

/* ===== SEARCH ===== */
.ae-header-search{width:520px;}
.ae-search-input{
  height:44px;border-radius:22px 0 0 22px;
  padding-left:18px;border:2px solid #ff4747;
}
.ae-search-btn{
  height:44px;border-radius:0 22px 22px 0;
  background:linear-gradient(90deg,#ff4747,#ff7a18);
  color:#fff;border:none;padding:0 22px;
}
.ae-search-result{
  position:absolute;top:48px;width:100%;
  background:#fff;border-radius:8px;
  box-shadow:0 6px 20px rgba(0,0,0,.12);
  display:none;z-index:9999;
}
.ae-search-item{
  padding:10px 14px;display:flex;
  justify-content:space-between;cursor:pointer;
}
.ae-search-item:hover{background:#f5f5f5;}
.ae-search-type{
  font-size:11px;background:#eee;
  border-radius:10px;padding:2px 8px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
  .ae-header-search{width:100%;margin:12px 0;}
  .top-bar{display:none;}
}