/* MOBILE HEADER */
.mobile-header {
    background: var(--gold);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 8px rgba(246, 11, 229, 0.3);
}

.mob-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.7rem 1rem;
}

.mob-top-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.mob-top-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.mob-logo {
    font-family: 'Baloo 2', cursive;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
}

.mob-logo span {
    color: #fff9fe;
}

.mob-delivery {
    flex: 1;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.mob-delivery strong {
    color: #fff;
}

.mob-icons {
    display: flex;
    gap: 0.5rem;
}

.mob-icon-btn {
    background: rgba(255, 255, 255, 0.18);
    border: none;
    color: #fff;
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mob-search {
    margin: 0 1rem 0.7rem;
    display: flex;
    background: #fff;
    border-radius: var(--radius-s);
    overflow: hidden;
}

.mob-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    font-family: 'Hind', sans-serif;
    background: transparent;
}

.mob-search-btn {
    background: transparent;
    border: none;
    padding: 0 0.8rem;
    font-size: 1.1rem;
    color: var(--mid);
}

/* BOTTOM NAV */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    display: flex;
    z-index: 300;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
    gap: 0.15rem;
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 500;
    border: none;
    background: transparent;
    transition: color 0.15s;
}

.bottom-nav-item .b-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
    color: var(--gold);
}

.bottom-nav-item.cart-item {
    position: relative;
}

.b-cart-badge {
    position: absolute;
    top: 4px;
    right: calc(50% - 18px);
    background: var(--gold);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    min-width: 14px;
    height: 14px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media(max-width:767px) {
    .top-nav {
        display: none;
    }

    main {
        padding: 0.8rem 0.8rem;
    }

    .hero-banner {
        border-radius: var(--radius-m);
        padding: 1.2rem;
        height: auto;
        min-height: 30vh;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .promo-strips {
        gap: 0.6rem;
    }

    .promo-strip-title {
        font-size: 0.88rem;
    }

    .products-grid{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:0.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    footer {
        display: none;
    }
}