```css
/* =========================
RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:#f8f9fa;
    color:#222;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 15px;
}

/* =========================
HEADER
========================= */

.main-header{
    background:#fff;
    padding:12px 0;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:999;
}

.header-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.site-logo{
    height:120px;
    width:auto;
}

.header-menu{
    display:flex;
    align-items:center;
    gap:20px;
}

.header-menu a{
    color:#222;
    font-weight:600;
}

.header-menu a:hover{
    color:#198754;
}

.cart-btn{
    background:#198754;
    color:#fff !important;
    padding:10px 18px;
    border-radius:30px;
    font-weight:700;
}

/* =========================
SLIDER
========================= */

.hero-slider{
    background:#000;
}

.slider-image{
    width:100%;
    height:auto;
    max-height:450px;
    object-fit:contain;
}

.carousel-caption{
    display:none !important;
}

/* =========================
SEARCH
========================= */

.search-section{
    background:#fff;
    padding:50px 0;
}

.search-box{
    max-width:700px;
    margin:auto;
    text-align:center;
}

.search-box h2{
    font-size:40px;
    font-weight:700;
    margin-bottom:10px;
}

.search-box p{
    color:#666;
    margin-bottom:20px;
}

.search-input{
    height:55px;
}

.search-btn{
    min-width:140px;
}

/* =========================
SECTION TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    font-size:38px;
    font-weight:700;
}

.section-title p{
    color:#666;
    margin-top:10px;
}

/* =========================
CATEGORY
========================= */

.category-section{
    background:#fff;
    padding:70px 0;
}

.category-card{
    background:#fff;
    border-radius:18px;
    padding:20px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.category-card:hover{
    transform:translateY(-5px);
}

.category-img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    margin:0 auto 15px;
    border:3px solid #eee;
}

.category-card h5{
    font-size:15px;
    font-weight:700;
    margin:0;
    color:#222;
}

/* =========================
FOOD CARDS
========================= */

.recommended-section,
.popular-section{
    padding:70px 0;
}

.food-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.food-card:hover{
    transform:translateY(-5px);
}

.food-image{
    width:100%;
    height:220px;
    object-fit:cover;
}

.food-body{
    padding:15px;
}

.food-body h5{
    font-size:18px;
    font-weight:700;
    margin-bottom:10px;
}

.food-price{
    color:#198754;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.unit-text{
    color:#777;
    font-size:13px;
    font-weight:500;
}

.btn-success{
    border-radius:8px;
    font-weight:600;
}

/* =========================
WHY CHOOSE US
========================= */

.why-section{
    background:#fff;
    padding:70px 0;
}

.why-card{
    background:#fff;
    padding:30px 20px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.why-card:hover{
    transform:translateY(-5px);
}

.why-icon{
    font-size:50px;
    margin-bottom:15px;
}

.why-card h5{
    font-size:18px;
    font-weight:700;
    margin-bottom:10px;
}

.why-card p{
    color:#666;
    font-size:14px;
}

/* =========================
CONTACT BANNER
========================= */

.contact-banner{
    background:#198754;
    color:#fff;
    text-align:center;
    padding:70px 0;
}

.contact-banner h2{
    font-size:38px;
    font-weight:700;
    margin-bottom:10px;
}

.contact-banner p{
    font-size:18px;
    margin-bottom:15px;
}

.contact-banner h3{
    font-size:30px;
    font-weight:700;
}

/* =========================
WHATSAPP
========================= */

.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:9999;
}

.whatsapp-float img{
    width:60px;
    height:60px;
}

/* =========================
FOOTER
========================= */

.footer-section{
    background:#1f1f1f;
    color:#fff;
    padding:60px 0 20px;
}

.footer-section h4,
.footer-section h5{
    margin-bottom:15px;
}

.footer-section p{
    color:#ccc;
    line-height:1.8;
}

.footer-bottom{
    text-align:center;
    margin-top:20px;
    padding-top:15px;
    border-top:1px solid rgba(255,255,255,.1);
}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .site-logo{
        height:70px;
    }

    .header-menu{
        gap:10px;
    }

    .header-menu a{
        font-size:12px;
    }

    .cart-btn{
        padding:8px 12px;
    }

    .slider-image{
        max-height:220px;
    }

    .search-box h2{
        font-size:28px;
    }

    .food-image{
        height:150px;
    }

    .why-icon{
        font-size:40px;
    }

    .contact-banner h2{
        font-size:24px;
    }

    .contact-banner h3{
        font-size:22px;
    }
.popular-section{
    padding:70px 0;
}

.food-price{
    color:#198754;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.unit-text{
    color:#777;
    font-size:13px;
    font-weight:500;
}
.account-page{
    padding:60px 0;
    background:#f4f6f9;
    min-height:70vh;
}

.welcome-card{
    background:linear-gradient(135deg,#198754,#20c997);
    color:#fff;
    border-radius:20px;
    padding:35px;
    margin-bottom:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.welcome-card h2{
    margin:0;
    font-size:38px;
    font-weight:700;
}

.account-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.account-card:hover{
    transform:translateY(-8px);
}

.account-icon{
    font-size:50px;
    margin-bottom:15px;
}

.account-card h4{
    font-weight:700;
    margin-bottom:10px;
}

.account-card p{
    color:#777;
    min-height:45px;
}

.account-btn{
    border-radius:30px;
    padding:10px 25px;
    font-weight:600;
}
.offer-marquee{
background:#dc2626;
color:#fff;
padding:10px;
font-size:16px;
font-weight:700;
text-transform:uppercase;
letter-spacing:.5px;
}
.offer-marquee{
background:#dc2626;
color:#fff;
padding:10px;
font-size:16px;
font-weight:700;
}
}

