 
:root {
    --primary: #4f46e5;
    --accent: #06b6d4;
    --muted: #6b7280;
    --card-radius: 12px;
    --card-shadow: 0 10px 30px rgba(15,23,42,0.06);
}

html, body {
    height: 100%;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
    background: #f6f8fb;
    color: #0f172a;
}

/* -------- Header (fully sticky/frozen) -------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(15,23,42,0.06);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary) !important;
}

.nav-link {
    color: rgba(15,23,42,0.9) !important;
}

    .nav-link:hover {
        color: var(--primary) !important;
    }




/* Cart btn badge */
.cart-badge {
    position: absolute;
    top: 0.1rem;
    right: 0.1rem;
    font-size: 0.65rem;
    z-index: 99999;
}

/* Offcanvas (cart) tweaks */
.offcanvas-end {
    width: 420px;
    max-width: 100%;
    z-index: 99999;
}



/* -------- Mega menu & submenus -------- */
.mega-menu {
    width: 360px;
    min-width: 240px;
}

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
        margin-top: -6px;
        min-width: 220px;
        border-radius: 8px;
        box-shadow: var(--card-shadow);
        display: none;
    }

    .dropdown-submenu > a::after {
        content: "›";
        float: right;
        opacity: .6;
        margin-left: 8px;
    }

/* show on hover for desktop */
@media (min-width: 992px) {
    .dropdown:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }
}

/* -------- Hero banner -------- */
.hero {
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    background: linear-gradient(180deg, rgba(79,70,229,0.04), rgba(6,182,212,0.02));
}

    .hero .carousel-caption {
        left: 5%;
        right: auto;
        bottom: 3.5rem;
        text-align: left;
    }

/* -------- Products -------- */
.product-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease;
    box-shadow: 0 6px 18px rgba(15,23,42,0.04);
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--card-shadow);
    }

.price-mrp {
    text-decoration: line-through;
    color: var(--muted);
    font-size: .92rem;
}

.price-dp {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.03rem;
}

/* -------- Footer -------- */
footer {
    background: linear-gradient(135deg,#0ea5a4,#4f46e5);
    color: #fff;
    padding: 48px 0;
    margin-top: 48px;
    border-radius: 12px 12px 0 0;
}

.footer-card {
    background: rgba(255,255,255,0.06);
    padding: 12px;
    border-radius: 8px;
}

/* responsive tweaks */
@media (max-width:575px) {
    .mega-menu {
        width: 100% !important;
    }

    .dropdown-submenu > .dropdown-menu {
        position: relative;
        left: 0;
        top: 0;
        margin-top: 6px;
        display: none;
    }

    .hero .carousel-caption {
        display: none;
    }

    .offcanvas-end {
        width: 100% !important;
    }
}

/* small helper */
.small-muted {
    color: var(--muted);
    font-size: .9rem;
}

/*@font-face {
    font-family: "bootstrap-icons";
    src: url("fonts/bootstrap-icons.woff2") format("woff2"), url("fonts/bootstrap-icons.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}*/