/* ===== LOKA BRAND VARIABLES ===== */
:root {
    --loka-green: #1E8449;
    --loka-orange: #F39C12;
    --loka-bg: #F9FBF9;
    --loka-dark: #2C3E50;
}

/* ===== Global ===== */
body {
    font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
    background-color: var(--loka-bg);
    color: var(--loka-dark);
}

/* ===== Sticky Glass Navbar ===== */
.premium-navbar {
    backdrop-filter: blur(14px);
    background: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* ===== Hero Section ===== */
.hero-section {
    padding: 80px 0;
    background: #ffffff;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
}

.hero-sub {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

/* ===== Buttons ===== */
.btn-loka-primary {
    background-color: var(--loka-green);
    color: #fff;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
}

.btn-loka-primary:hover {
    background-color: #186a3b;
}

.btn-loka-outline {
    border: 2px solid var(--loka-orange);
    color: var(--loka-orange);
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
}

.btn-loka-outline:hover {
    background-color: var(--loka-orange);
    color: #fff;
}

/* ===============================
   BLINKIT STYLE CATEGORY CARDS
================================ */

.category-link {
    text-decoration: none;
}

.blinkit-category-card {
    background: white;
    border-radius: 20px;
    padding: 18px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.blinkit-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.category-image-wrapper {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    border-radius: 16px;
    margin-bottom: 15px;
    object-fit: contain;
}

.category-image-wrapper img {
    width: 100%;
    height: 100px;
}

/* CATEGORY IMAGE CONTAINER */
.loka-category-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f5f5f5;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
}

/* IMAGE FILLS CONTAINER */
.loka-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* THIS makes it fill */
}

@media (max-width: 576px) {
    .category-image-wrapper img {
        height: 75px;
    }
}

.category-title {
    font-weight: 700;
    font-size: 15px;
    color: #000;
}


.category-sub {
    font-size: 13px;
    color: #555;
}

/* ===== Trust Badges ===== */
.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.trust-badges span {
    font-weight: 500;
}

/* =========================
   HYPERLOCAL ENERGY STYLE
========================= */

body {
    background: #fdfdfd;
}

/* Section spacing consistency */
section {
    padding: 70px 0;
}

/* Section titles */
section h3 {
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Soft animated background glow */
.hero-section {
    background: linear-gradient(135deg, #e8f5e9, #ffffff);
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    right: -100px;
    top: -100px;
    width: 300px;
    height: 300px;
    background: rgba(30,132,73,0.15);
    border-radius: 50%;
    filter: blur(60px);
}

/* Category hover animation */
/* ================================
   CARD BASE STYLE
================================ */

.category-card{
    background: #ffffff;
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

/* Soft shadow default */
.category-card{
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}


/* ================================
   POP-UP HOVER EFFECT
================================ */

.category-card:hover{
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
    z-index: 5;
}


/* Glow effect for startup energy */
.category-card::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(30,132,73,0.15),
        rgba(243,156,18,0.15)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before{
    opacity: 1;
}

/* Add button animation */
.add-to-cart-btn {
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #F39C12 !important;
    transform: scale(1.05);
}

/* ===============================
   LOKA PRODUCT CARD - BLINKIT STYLE
================================ */

.loka-product-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.loka-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* IMAGE */
/* IMAGE - SMALLER */
.loka-product-image {
    width: 100%;
    aspect-ratio: 1 / 1;   /* THIS makes it square */
    background: #f8f8f8;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.loka-product-image img {
    width: 90%;
    height: 90%;
}

/* BODY */
.loka-product-body {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* NAME */
.loka-product-name {
    font-weight: 700;
    font-size: 15px;
    color: #000;
    text-align: left;
}

/* DESCRIPTION */
.loka-product-desc {
    font-size: 13px;
    color: #555;
    margin-top: 4px;
    text-align: left;
}

/* BOTTOM SECTION */
.loka-product-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

/* PRICE */
.loka-product-price {
    font-weight: 700;
    font-size: 16px;
    color: #000;
}

/* ADD BUTTON */
.loka-add-btn {
    border: 2px solid #198754;
    background: #e9f7ef;
    color: #198754;
    font-weight: 700;
    border-radius: 10px;
    padding: 6px 16px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.loka-add-btn:hover {
    background: #198754;
    color: #fff;
}

@media (max-width: 576px) {
    .loka-product-card {
        padding: 12px;
    }

    .loka-product-name {
        font-size: 14px;
    }

    .loka-product-price {
        font-size: 15px;
    }

    .loka-add-btn {
        padding: 5px 12px;
        font-size: 13px;
    }
}

.mobile-search-wrapper {
    background: #ffffff;
}

.mobile-search-wrapper input {
    height: 48px;
    font-size: 15px;
}

.page-wrapper {
    padding-top: 65px; /* navbar height */
}

.hero-spacing {
    padding-top: 20px;
    padding-bottom: 40px;
}

@media (max-width: 768px) {
    .hero-spacing {
        padding-top: 10px;
        padding-bottom: 25px;
    }
}


/* ===============================
   LOKA STORE CARD (Same Style as Product)
================================ */

.loka-store-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.loka-store-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* IMAGE - Square */
.loka-store-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f8f8f8;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.loka-store-image img {
    width: 100%;
    height: 100%;
}

/* BODY */
.loka-store-body {
    margin-top: 12px;
    text-align: left;
}

.loka-store-name {
    font-weight: 700;
    font-size: 16px;
    color: #000;
}

.loka-store-desc {
    font-size: 13px;
    color: #555;
    margin-top: 4px;
}

/* ===========================
   LOKA FOOTER
=========================== */

.loka-footer {
    background: #111827; /* premium dark */
    color: #e5e7eb;
    padding: 60px 0 30px;
}

.footer-title {
    color: #facc15; /* orange accent */
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-contact-item {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contact-item a {
    color: #e5e7eb;
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: #22c55e; /* green hover */
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #22c55e;
}

.footer-divider {
    height: 1px;
    background: #374151;
    margin: 40px 0 20px;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #9ca3af;
}

.page-content {
    padding-top: 0px;
    padding-bottom: 60px;
}
/* ===========================
   AUTO SCROLL PARTNER STRIP
=========================== */

.partner-strip {
    overflow: hidden;
    background: #ffffff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.partner-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: scrollStores 25s linear infinite;
}

.partner-card {
    background: #f1f5f9;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #166534; /* green tone */
    white-space: nowrap;
    transition: all 0.3s ease;
}

.partner-card:hover {
    background: #22c55e;
    color: white;
}

/* Smooth infinite movement */
@keyframes scrollStores {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.partner-strip {
    position: relative;
}

.partner-strip::before,
.partner-strip::after {
    content: "";
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    z-index: 2;
}

.partner-strip::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.partner-strip::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

#productQuickView .modal-content{
border-radius:18px;
padding:10px;
}

#productQuickView img{
max-height:220px;
object-fit:cover;
width:100%;
}


.flying-img{
position:fixed;
z-index:99999;
width:80px;
height:80px;
border-radius:10px;
pointer-events:none;
transition:all 0.8s cubic-bezier(.17,.67,.83,.67);
}