/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Segoe UI", system-ui, sans-serif;
    background:#eaeaea;
    color:#222;
}

/* APP CONTAINER */
.app{
    max-width:420px;
    margin:auto;
    min-height:100vh;
    background:#f7f7f7;
}

/* HEADER */
.header{
    position:sticky;
    top:0;
    z-index:100;
    background:#fc8019;
    color:#fff;
    padding:16px 16px 28px;
    border-bottom-left-radius:22px;
    border-bottom-right-radius:22px;
}
.brand{
    font-size:22px;
    font-weight:700;
}
.location{
    margin-top:6px;
    font-size:13px;
}

/* SEARCH */
.search-box{
    margin:18px 16px 16px;
    background:#fff;
    border-radius:16px;
    padding:14px 16px;
    display:flex;
    align-items:center;
    gap:10px;
    box-shadow:0 12px 28px rgba(0,0,0,0.18);
}
.search-box i{
    color:#999;
}
.search-box input{
    border:none;
    outline:none;
    width:100%;
    font-size:15px;
    background:transparent;
}

/* BANNER SLIDER */
.banner-slider{
    margin:0 16px 20px;
    overflow:hidden;
    border-radius:18px;
}
.banner-track{
    display:flex;
    transition:0.6s ease-in-out;
}
.banner{
    min-width:100%;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 14px 30px rgba(0,0,0,0.18);
}
.banner img{
    width:100%;
    height:140px;
    object-fit:cover;
    display:block;
}

/* FILTERS */
.filters{
    display:flex;
    gap:10px;
    padding:0 16px 14px;
    overflow-x:auto;
}
.filters::-webkit-scrollbar{
    display:none;
}
.filter{
    padding:10px 18px;
    background:#fff;
    border-radius:25px;
    font-size:14px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
}
.filter.active{
    background:#fc8019;
    color:#fff;
}

/* RESTAURANT LIST */
.restaurant-list{
    padding:16px;
}
.restaurant-list h2{
    font-size:20px;
    font-weight:700;
    margin-bottom:14px;
}

/* RESTAURANT CARD */
.restaurant-card{
    background:#fff;
    border-radius:18px;
    padding:16px;
    margin-bottom:16px;
    box-shadow:0 14px 34px rgba(0,0,0,0.15);
}
.card-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.card-top h3{
    font-size:17px;
}
.rating{
    background:#e8f5e9;
    color:#2e7d32;
    padding:6px 10px;
    border-radius:8px;
    font-size:13px;
}
.cuisine{
    margin:8px 0 6px;
    font-size:14px;
    color:#666;
}
.meta{
    display:flex;
    justify-content:space-between;
    font-size:14px;
    color:#555;
}

/* DESKTOP CENTER */
@media(min-width:768px){
    body{
        display:flex;
        justify-content:center;
    }
}
/* =====================
   OFFER STRIP (4 BOXES)
===================== */
.offer-strip{
    display:flex;
    margin:0 16px 18px;
    gap:10px;
}

.offer-box{
    width:25%;
    background:#fff;
    border-radius:14px;
    padding:12px 6px;
    text-align:center;
    box-shadow:0 6px 16px rgba(0,0,0,0.12);
}

.offer-box h4{
    font-size:14px;
    font-weight:700;
    color:#fc8019;
    margin-bottom:4px;
}

.offer-box p{
    font-size:12px;
    color:#555;
}
/* =========================
   ₹99 STORE – EXACT STYLE
========================= */

.store99-exact{
    background:linear-gradient(#e3f2fd,#f7f7f7);
    padding:16px;
    border-radius:22px;
    margin:12px 16px 4px;
}

/* HEADER */
.store99-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:14px;
}
.store99-head .left p{
    font-size:14px;
    margin-top:6px;
}
.logo99{
    background:#ffd54f;
    padding:6px 8px;
    border-radius:8px;
    font-weight:800;
    font-size:15px;
}
.store-text{
    font-size:18px;
    font-weight:700;
    margin-left:6px;
}
.store99-head a{
    color:#1976d2;
    font-weight:600;
    font-size:14px;
    text-decoration:none;
}

/* ROW */
.store99-row{
    display:flex;
    gap:14px;
    overflow-x:auto;
}
.store99-row::-webkit-scrollbar{display:none;}

/* CARD */
.item99{
    min-width:155px;
    background:#fff;
    border-radius:18px;
    padding:8px;
}

/* IMAGE */
.img-wrap{
    position:relative;
    height:100px;
    border-radius:16px;
    overflow:hidden;
    background:#000;
}
.img-wrap.red{ background:#c62828; }

.img-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* PLUS */
.plus-btn{
    position:absolute;
    bottom:8px;
    right:8px;
    width:34px;
    height:34px;
    border:none;
    border-radius:10px;
    background:#fff;
    color:#2e7d32;
    font-size:22px;
    font-weight:700;
    box-shadow:0 4px 12px rgba(0,0,0,0.25);
}

/* NAME */
.veg-name{
    font-size:14px;
    font-weight:600;
    margin-top:8px;
    display:flex;
    gap:6px;
    align-items:center;
}

/* VEG / NONVEG DOT */
.veg,.nonveg{
    width:12px;
    height:12px;
    border-radius:2px;
}
.veg{ border:2px solid #2e7d32; }
.nonveg{ border:2px solid #c62828; }

/* PRICE */
.price-row{
    display:flex;
    gap:8px;
    align-items:center;
    margin-top:4px;
}
.price-row .old{
    text-decoration:line-through;
    color:#777;
}
.price-row .new{
    background:#fbc02d;
    padding:2px 6px;
    font-weight:700;
    border-radius:4px;
}

/* RATING */
.rating99{
    background:#e8f5e9;
    color:#2e7d32;
    display:inline-block;
    padding:4px 8px;
    border-radius:10px;
    font-size:12px;
    font-weight:600;
    margin-top:6px;
}

/* REST NAME */
.res99{
    font-size:13px;
    color:#777;
    margin-top:4px;
}
/* =====================
   IMAGE SLIDER (APP STYLE)
===================== */

.image-slider{
    margin:-80px 16px 8px;
    overflow:hidden;
    border-radius:18px;
}

.image-track{
    display:flex;
    transition:0.7s ease-in-out;
}

.image-slide{
    min-width:100%;
}

.image-slide img{
    width:100%;
    height:140px;
    object-fit:cover;
    border-radius:18px;
}
/* ======================
   SWIGGY RESTAURANT CARD
====================== */

.restaurant-home{
    padding:16px;
}

.res-title{
    font-size:20px;
    font-weight:700;
    margin-bottom:14px;
}

/* CARD */
.swiggy-card{
    background:#fff;
    border-radius:22px;
    margin-bottom:22px;
    overflow:hidden;
    box-shadow:0 14px 30px rgba(0,0,0,0.18);
}

/* IMAGE */
.img-box-swiggy{
    position:relative;
}

.img-box-swiggy img{
    width:100%;
    height:220px;
    object-fit:cover;
}

/* DARK OVERLAY */
.img-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7));
}

/* OFFER TAG */
.offer-swiggy{
    position:absolute;
    left:12px;
    bottom:14px;
    background:#000;
    color:#fff;
    font-size:13px;
    padding:4px 8px;
    border-radius:6px;
}

/* TIME */
.time-swiggy{
    position:absolute;
    right:12px;
    bottom:14px;
    background:#fff;
    font-size:12px;
    padding:4px 8px;
    border-radius:6px;
    font-weight:700;
}

/* TOP ICONS */
.icons-top{
    position:absolute;
    top:12px;
    right:12px;
    display:flex;
    gap:12px;
    font-size:20px;
    color:#fff;
}

/* DOTS */
.img-dots{
    position:absolute;
    top:14px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:6px;
}
.img-dots span{
    width:6px;
    height:6px;
    background:#fff;
    border-radius:50%;
    opacity:0.6;
}

/* INFO */
.swiggy-info{
    padding:12px;
}

.bolt-line{
    font-size:13px;
    font-weight:600;
    color:#fc8019;
    margin-bottom:4px;
}

.swiggy-info h3{
    font-size:20px;
    font-weight:700;
}

.meta{
    display:flex;
    gap:6px;
    font-size:14px;
    color:#444;
    margin-top:4px;
}

.rating{
    color:#2e7d32;
    font-weight:700;
}

.swiggy-info p{
    font-size:14px;
    color:#777;
    margin-top:4px;
}
/* =========================
   FIXED BOTTOM NAVBAR
========================= */

.bottom-nav{
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    height:64px;
    background:#fff;
    display:flex;
    justify-content:space-around;
    align-items:center;
    border-top:1px solid #eee;
    z-index:999;
}

/* NAV ITEM */
.bottom-nav .nav-item{
    text-align:center;
    font-size:11px;
    color:#888;
}

.bottom-nav .nav-item i{
    font-size:22px;
    display:block;
    margin-bottom:4px;
}

/* ACTIVE */
.bottom-nav .nav-item.active{
    color:#fc8019;
    font-weight:700;
}
.bottom-nav .nav-item.active i{
    color:#fc8019;
}

/* ICON + BADGE */
.icon-wrap{
    position:relative;
    display:inline-block;
}

.badge{
    position:absolute;
    top:-8px;
    right:-16px;
    background:#e53935;
    color:#fff;
    font-size:9px;
    padding:2px 5px;
    border-radius:10px;
    font-weight:700;
}

.badge.live{
    background:#d32f2f;
}

/* =========================
   CONTENT BOTTOM SPACE
========================= */

.app{
    padding-bottom:70px; /* navbar ke liye space */
}
