/* ================= RESET ================= */
*{ box-sizing:border-box; }

body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#f2f2f2;
    padding-bottom:70px; /* bottom nav space */
}

/* ================= HEADER ================= */
.top-header{
    background:#14a7e4;
    color:#fff;
    padding:14px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.loc-title{ font-size:14px; font-weight:500; }
.loc-sub{ font-size:12px; opacity:0.9; }
.bell{ font-size:20px; }

/* ================= SEARCH ================= */
.search-wrap{
    background:#14a7e4;
    padding:10px;
}
.search-box{
    background:#fff;
    border-radius:10px;
    padding:10px;
    display:flex;
    align-items:center;
}
.search-box input{
    border:none;
    outline:none;
    width:100%;
    margin-left:8px;
}

/* ================= BANNER SLIDER ================= */
.banner-slider{
    margin:14px;
}
.banner-slide{
    display:none;
    position:relative;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,0.08);
}
.banner-slide.active{ display:block; }
.banner-slide img{ width:100%; display:block; }

.banner-text{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    max-width:55%;
}
.banner-text h3{
    margin:0 0 10px;
    font-size:18px;
}
.banner-text button{
    background:#ff8c1a;
    border:none;
    color:#fff;
    padding:10px 18px;
    border-radius:10px;
    font-weight:bold;
}

/* ================= DOTS ================= */
.banner-dots{
    display:flex;
    justify-content:center;
    margin-top:10px;
}
.banner-dots span{
    width:8px;
    height:8px;
    background:#ccc;
    border-radius:50%;
    margin:0 4px;
    transition:0.3s;
}
.banner-dots span.active{
    width:18px;
    background:#14a7e4;
    border-radius:10px;
}

/* ================= CATEGORY GRID ================= */
.category-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    padding:12px;
}
.cat-box{
    background:#fff;
    border-radius:14px;
    padding:16px 10px;
    text-align:center;
}
.cat-box img{
    width:55px;
    height:55px;
    object-fit:contain;
}
.cat-box p{
    margin:8px 0 0;
    font-size:13px;
    font-weight:500;
}

/* ================= BOTTOM NAV (🔥 MAIN FIX) ================= */
.bottom-nav{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    height:60px;
    background:#14a7e4;
    display:flex;
    justify-content:space-around;
    align-items:center;
    z-index:9999;
}

.bottom-nav a{
    color:#fff !important;
    text-align:center;
    font-size:12px;
    text-decoration:none !important;
    line-height:14px;
}

.bottom-nav a.active{
    font-weight:bold;
}

/* ❌ Agar koi extra plain links galti se aa rahe ho to hide */
body > a{
    display:none !important;
}

/* ================= DESKTOP ================= */
@media(min-width:768px){
    .category-grid{
        grid-template-columns:repeat(6,1fr);
        max-width:1100px;
        margin:auto;
    }
    .banner-slider{
        max-width:1100px;
        margin:20px auto;
    }
}