

/* =========================
   TEXT
========================= */

p{
    margin-bottom:14px;
    color:#374151;
}

/* =========================
   LINKS
========================= */

a{
    color:#ef4444;
    text-decoration:none;
    transition:all .2s ease;
}



/* =========================
   CONTAINER
========================= */

.container{
    max-width:1200px;
    margin:auto;
    padding:20px 16px;
}

/* =========================
   IMAGES
========================= */

img{
    max-width:100%;
    height:auto;
    border-radius:10px;
}

/* =========================
   BUTTONS
========================= */

.btn{
    display:inline-block;
    background:#ef4444;
    color:#fff;
    padding:10px 16px;
    border-radius:8px;
    font-size:13px;
    font-weight:600;
    border:none;
    cursor:pointer;
}

.btn:hover{
    background:#dc2626;
}

/* =========================
   CARDS (VERY IMPORTANT FOR YOU)
========================= */

.card{
    background:#fff;
    border-radius:14px;
    box-shadow:0 6px 20px rgba(0,0,0,0.06);
    padding:16px;
    transition:all .25s ease;
}

.card:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 28px rgba(0,0,0,0.10);
}

/* =========================
   SMALL META TEXT
========================= */

.meta{
    font-size:12px;
    color:#6b7280;
}

/* =========================
   SCROLLBAR (OPTIONAL PREMIUM)
========================= */

::-webkit-scrollbar{
    width:8px;
}
::-webkit-scrollbar-thumb{
    background:#e5e7eb;
    border-radius:10px;
}
::-webkit-scrollbar-thumb:hover{
    background:#d1d5db;
}
/* =========================
   FINAL HEADER (CLEAN + FIXED)
========================= */

.fd1{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:99999;
    background:#fff;
    border-bottom:1px solid #eaeaea;

    box-shadow:0 4px 14px rgba(0,0,0,0.10);
}

/* prevent content jump */
body{
    padding-top:70px;
}

/* WRAP */
.fd1-wrap{
    max-width:1280px;
    margin:auto;
    padding:10px 16px;
    display:flex;
    align-items:center;
    gap:15px;
}

/* LOGO */
.fd1-logo img{
    height:38px;
}

/* NAV */
.fd1-nav{
    display:flex;
    align-items:center;
    gap:18px;
    flex:1; /* push search right */
}

.fd1-nav a{
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    color:#374151;
    white-space:nowrap;
}

.fd1-nav a:hover{
    color:#ef4444;
}

/* SEARCH (RIGHT SIDE) */
.fd1-search{
    margin-left:20px;
    width:260px;
    display:flex;
    align-items:center;
    background:#f5f6f8;
    border-radius:999px;
    padding:3px;
}

.fd1-search input{
    flex:1;
    border:none;
    outline:none;
    background:transparent;
    padding:6px 10px;
    font-size:12px;
}

.fd1-search button{
    border:none;
    background:#ef4444;
    color:#fff;
    font-weight:700;
    padding:6px 10px;
    border-radius:999px;
    cursor:pointer;
    font-size:11px;
}

/* RIGHT ICONS */
.fd1-right{
    display:flex;
    align-items:center;
    gap:14px;
    margin-left:auto;
}

.fd1-icon{
    font-size:18px;
    color:#374151;
    text-decoration:none;
    position:relative;
}

.fd1-icon:hover{
    color:#ef4444;
}

/* BADGE */
.fd1-badge{
    position:absolute;
    top:-6px;
    right:-8px;
    background:#ef4444;
    color:#fff;
    font-size:10px;
    padding:2px 5px;
    border-radius:999px;
    font-weight:700;
}

/* MENU BUTTON */
.fd1-menu-btn{
    display:none;
    font-size:22px;
    cursor:pointer;
}

/* MOBILE DROPDOWN */
.fd1-mobile{
    display:none;
    background:#fff;
    border-top:1px solid #eee;
    padding:10px 15px;
    animation:fdSlide .25s ease;
}

.fd1-mobile a{
    display:block;
    padding:10px 0;
    text-decoration:none;
    font-weight:600;
    color:#374151;
    border-bottom:1px solid #f1f1f1;
}

.fd1-mobile a:last-child{
    border:none;
}

.fd1-mobile a:hover{
    color:#ef4444;
}

@keyframes fdSlide{
    from{opacity:0; transform:translateY(-10px);}
    to{opacity:1; transform:translateY(0);}
}

/* =========================
   MOBILE
========================= */

@media(max-width:1000px){

    .fd1-nav{
        display:none;
    }

    .fd1-search{
        display:none; /* hide search on mobile */
    }

    .fd1-menu-btn{
        display:block;
    }

}