/* UI Colors */
:root {
  --swiggy-green: linear-gradient(135deg, #004aad, #1e90ff, #8785ec);
    --swiggy-orange: #fc8019;
}

.header-main {
    background: var(--swiggy-green);
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    box-shadow: 0 8px 20px rgba(0, 74, 173, 0.3);
}



.badge-one {
    background: white;
    color: var(--swiggy-orange);
    font-weight: 900;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 10px;
}

.profile-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px;
    border-radius: 18px;
    margin-bottom: 5px;
    width: 60px;
    height: 60px;
}

.category-item span {
    font-size: 11px;
    font-weight: 500;
}

.time-tag {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #e91e63;
    font-size: 8px;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
}






/* Hide Scrollbar */
.scroll-hide::-webkit-scrollbar {
  display: none;
}

.scroll-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Card Hover Effect */
.card {
  transition: 0.3s;
}

.card:hover {
  transform: scale(1.05);
}















/* Promo Banner */
.promo-banner {
    background: var(--swiggy-green);
    border-radius: -1rem;
    text-align: center;
    color: white;
}

.banner-title {
    font-size: 40px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -2px;
}

.banner-img { width: 80px; margin: 10px auto; }

.order-btn {
    background: #e91e63;
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
}

/* Bottom Nav */
.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 10px;
    border-top: 1px solid #eee;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #999;
    font-size: 10px;
}





.nav-item.active { color: var(--swiggy-orange); font-weight: bold; }