/* =========================
   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;
}

/* ==========================================
   HEADER V3 (FOOD STYLE)
========================================== */

.hd3{
    background:#fff;
}

/* ONLY TOP PART STICKY */
.hd3-top{
    position:sticky;
    top:0;
    z-index:9999;
    background:#fff;
    transition: box-shadow .25s ease;

    display:flex;
    align-items:center;
    justify-content:space-between;
    max-width:1280px;
    margin:auto;
    padding:16px 16px;

    box-shadow:0 4px 16px rgba(0,0,0,0.06);
}


/* =========================
   TOP ROW
========================= */



/* LOGO */
.hd3-logo{
    font-size:24px;
    font-weight:900;
    letter-spacing:0.5px;
    color:#111827;
    text-decoration:none;
}

/* =========================
   COOL SEARCH
========================= */

.hd3-search{
    flex:1;
    max-width:560px;
    margin:0 30px;
    position:relative;
}

.hd3-search input{
    width:100%;
    border:none;
    outline:none;
    background:#fff7ed;
    padding:14px 18px 14px 46px;
    font-size:14px;
    border-radius:999px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
    transition:.25s;
}

/* glow on focus */
.hd3-search input:focus{
    box-shadow:0 10px 28px rgba(239,68,68,0.25);
}

/* icon inside */
.hd3-search::before{
    content:"🍳";
    position:absolute;
    left:16px;
    top:50%;
    transform:translateY(-50%);
    font-size:16px;
}

/* =========================
   MENU ROW (BIG + COOL)
========================= */

.hd3-menu{
    background:#fff;
    border-top:1px solid #f3f3f3;
}

.hd3-menu-wrap{
    max-width:1280px;
    margin:auto;
    padding:12px 16px;
    display:flex;
    gap:14px;
    overflow-x:auto;
}

/* MENU LINKS */
.hd3-menu a{
    text-decoration:none;
    font-size:15px;
    font-weight:700;
    color:#374151;
    white-space:nowrap;

    padding:8px 14px;
    border-radius:999px;
    background:#f3f4f6;

    transition:.2s;
}

/* hover pill */
.hd3-menu a:hover{
    background:#ef4444;
    color:#fff;
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

    .hd3-search{
        display:none;
    }



}

/* =========================
   ACTION BUTTONS (RIGHT)
========================= */

.hd3-actions{
    display:flex;
    gap:10px;
    align-items:center;
}

/* base button */
.headeraction-btn{
    display:flex;
    align-items:center;
    gap:6px;
    padding:8px 12px;
    border-radius:999px;
    background:#f3f4f6;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    color:#111827;
    transition:.25s;
}

/* icon size */
.headeraction-btn .icon{
    width:16px;
    height:16px;
    stroke:#ef4444;
}

/* =========================
   VARIANTS
========================= */

/* SAVED */
.headeraction-btn.saved{
    background:#fff1f2;
}

.headeraction-btn.saved span{
    color:#ef4444;
}

.headeraction-btn.saved:hover{
    background:#ef4444;
}

.headeraction-btn.saved:hover span{
    color:#fff;
}

.headeraction-btn.saved:hover .icon{
    stroke:#fff;
}

/* QUICK */
.headeraction-btn.quick:hover{
    background:#111827;
    color:#fff;
}

/* POPULAR */
.headeraction-btn.popular:hover{
    background:#ef4444;
    color:#fff;
}
.headeraction-btn.saved .icon{
    width:20px;
    height:20px;
    stroke-width:1.8;
}

.ico{
    width:18px;
    height:18px;
    margin-right:6px;
    vertical-align:middle;
}

.hd3-menu a{
    display:inline-flex;
    align-items:center;
    gap:6px;
}
/* default (red) */
.headeraction-btn.saved .ico{
    filter: none;
    transition: .25s;
}

/* hover ? make it white */
.headeraction-btn.saved:hover .ico{
    filter: brightness(0) invert(1);
}
/* =========================
   MOBILE HAMBURGER
========================= */

.hd3-mobile-toggle{
    display:none;
    flex-direction:column;
    gap:4px;
    cursor:pointer;
}

.hd3-mobile-toggle span{
    width:22px;
    height:2px;
    background:#111;
    display:block;
    border-radius:2px;
}

/* =========================
   MOBILE FULL MENU
========================= */

.hd3-mobile-menu{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#fff;
    z-index:99999;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    transform:translateY(-100%);
    transition:.35s ease;
}

/* active */
.hd3-mobile-menu.active{
    transform:translateY(0);
}

/* CLOSE BUTTON */
.mobile-close{
    position:absolute;
    top:20px;
    right:20px;
    font-size:22px;
    cursor:pointer;
}

/* LINKS BIG STYLE */
.mobile-menu-links{
    display:flex;
    flex-direction:column;
    gap:2px;

    width:100%;
    max-width:420px;

    padding:0 24px;
    margin-top:2px;
}

.mobile-menu-links a{
    font-size:18px;
    font-weight:900;
    text-decoration:none;
    color:#111827;

    padding:12px 6px;
    border-bottom:1px solid #f3f4f6;

    transition:.2s;
}

/* foodie hover */
.mobile-menu-links a:hover{
    color:#ef4444;
    transform:scale(1.05);
}

/* =========================
   MOBILE RULES
========================= */

@media(max-width:900px){

    .hd3-mobile-toggle{
        display:flex;
    }

    .hd3-actions{
        display:none;
    }

    .hd3-menu{
        display:none;
    }

}
/* =========================
   MOBILE SEARCH
========================= */

.mobile-search{
    width:100%;
    max-width:420px;
    padding:0 24px;
    margin-top:60px;
}

.mobile-search input{
    width:100%;
    border:none;
    outline:none;

    background:#fff7ed;
    padding:14px 16px;
    border-radius:999px;

    font-size:15px;

    box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

/* focus glow */
.mobile-search input:focus{
    box-shadow:0 10px 28px rgba(239,68,68,0.25);
}