.fc-topbar{

background:#111;

color:#fff;

padding:10px;

text-align:center;

font-size:14px;

}

.fc-header{

background:#fff;

padding:20px 0;

box-shadow:0 2px 10px rgba(0,0,0,.08);

}

.fc-header-row{

display:flex;

justify-content:space-between;

align-items:center;

gap:20px;

}

.fc-logo img{

max-height:70px;

}

.fc-search{

flex:1;

}

.fc-search input{

width:100%;

padding:12px;

border:2px solid #d4af37;

border-radius:40px;

}

.fc-icons{

display:flex;

gap:20px;

font-size:24px;

}

.fc-icons a{

color:#222;

text-decoration:none;

}

.fc-menu{

background:#fff;

border-top:1px solid #eee;

padding:15px 0;

text-align:center;

}

.fc-menu ul{

display:flex;

justify-content:center;

gap:35px;

list-style:none;

margin:0;

padding:0;

}

.fc-menu a{

text-decoration:none;

font-weight:bold;

color:#222;

}
.container{
    width:95%;
    max-width:1400px;
    margin:0 auto;
}

.fc-header-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.fc-logo{
    width:180px;
}

.fc-logo img{
    width:100%;
    height:auto;
    max-height:80px;
    object-fit:contain;
}

.fc-search{
    flex:1;
}

.fc-search form{
    display:flex;
}

.fc-search input[type="search"]{
    flex:1;
    padding:12px 15px;
    border:2px solid #d4af37;
    border-radius:30px 0 0 30px;
}

.fc-search input[type="submit"]{
    padding:12px 20px;
    background:#d4af37;
    color:#fff;
    border:none;
    border-radius:0 30px 30px 0;
    cursor:pointer;
}

.fc-icons{
    display:flex;
    gap:20px;
    font-size:24px;
}

.fc-menu ul{
    display:flex;
    justify-content:center;
    list-style:none;
    gap:30px;
    margin:15px 0;
    padding:0;
}

.fc-menu li{
    list-style:none;
}
.custom-logo-link{
    display:block;
}

.custom-logo{
    max-width:180px !important;
    max-height:80px !important;
    width:auto !important;
    height:auto !important;
}

.search-form{
    display:flex;
    width:100%;
}

.search-field{
    flex:1;
    padding:12px 15px;
    border:2px solid #d4af37;
    border-right:none;
    border-radius:30px 0 0 30px;
    outline:none;
}

.search-submit{
    background:#d4af37;
    color:#fff;
    border:none;
    padding:12px 22px;
    border-radius:0 30px 30px 0;
    cursor:pointer;
}