
.tlr-hero-search-widget{
    position:relative;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    background-size:cover;
    background-position:center center;
    overflow:hidden;
}
.tlr-hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;
}
.tlr-hero-inner{
    position:relative;
    z-index:2;
    width:min(980px, calc(100% - 40px));
    text-align:center;
    padding:40px 20px;
}
.tlr-hero-title{
    margin:0 0 18px;
    color:#fff;
    font-size:58px;
    line-height:1.1;
    font-weight:300;
    letter-spacing:-0.5px;
}
.tlr-hero-subheadline{
    margin:0 auto 24px;
    max-width:760px;
    color:rgba(255,255,255,0.92);
    font-size:18px;
    line-height:1.6;
}
.tlr-hero-search-shell{
    position:relative;
    max-width:760px;
    margin:0 auto;
}
.tlr-hero-search-form{
    display:flex;
    align-items:stretch;
    max-width:760px;
    margin:0 auto;
    background:#fff;
    border-radius:6px;
    overflow:hidden;
    box-shadow:0 12px 38px rgba(0,0,0,0.22);
}
.tlr-hero-search-form input{
    flex:1;
    min-width:0;
    border:none;
    padding:18px 22px;
    font-size:16px;
    color:#1f1f1f;
    background:transparent;
    outline:none;
}
.tlr-hero-search-form button{
    border:none;
    padding:0 28px;
    background:#8b6f47;
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    white-space:nowrap;
}
.tlr-hero-search-form button:hover{
    filter:brightness(0.95);
}
.tlr-hero-suggestions{
    position:absolute;
    left:0;
    right:0;
    top:calc(100% + 10px);
    background:#fff;
    border-radius:8px;
    box-shadow:0 18px 45px rgba(0,0,0,0.22);
    overflow:hidden;
    z-index:30;
    text-align:left;
}
.tlr-suggestion-item{
    display:block;
    width:100%;
    border:none;
    background:#fff;
    text-align:left;
    padding:14px 18px;
    cursor:pointer;
    border-bottom:1px solid #ececec;
}
.tlr-suggestion-item:last-child{
    border-bottom:none;
}
.tlr-suggestion-item:hover{
    background:#f7f4ef;
}
.tlr-suggestion-title{
    display:block;
    color:#222;
    font-size:15px;
    font-weight:600;
    line-height:1.4;
}
.tlr-suggestion-meta{
    display:block;
    color:#666;
    font-size:12px;
    margin-top:4px;
}
@media (max-width: 1024px){
    .tlr-hero-title{font-size:46px;}
}
@media (max-width: 767px){
    .tlr-hero-title{font-size:34px;}
    .tlr-hero-subheadline{font-size:16px;}
    .tlr-hero-search-form{flex-direction:column;border-radius:8px;}
    .tlr-hero-search-form button{padding:16px 20px;}
}
