<style>
        /* CSS Variables */
        :root {
            --flipkart-white: #ffffff;
            --flipkart-blue: #2874f0;
            --flipkart-light-blue: #e6f0ff;
            --flipkart-orange: #ff9f00;
            --flipkart-green: #388e3c;
            --flipkart-gray: #f1f3f6;
            --flipkart-dark-gray: #878787;
            --flipkart-text: #212121;
            --flipkart-border: #e0e0e0;
        }
        
        :root {
            --meesho-pink: #f43397;
            --meesho-light-pink: #ff6eb4;
            --meesho-purple: #8a2be2;
            --meesho-white: #ffffff;
            --meesho-gray: #f8f8f8;
            --meesho-dark-gray: #666666;
            --meesho-black: #333333;
            --meesho-green: #26a541;
            --meesho-red: #ff3f6c;
            --meesho-orange: #ff9f00;
            --meesho-light-green: #26a541;
            --meesho-yellow: #ffd700;
            --meesho-light-blue: #e6f7ff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--flipkart-gray);
            color: var(--flipkart-text);
        }

        /* Header Styles */
        header {
            background-color: white;
            color: black;
            padding: 0px 0px 12px 0px;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
            position:fixed;
            left:0;
            top:0;
            width:100%;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            
            margin: 0 auto;
            padding: 0 16px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color:black;
        }

       

        .search-container {
            
            display: flex;
            
                                   
            
               
        }

        .search-container input {
            width: 100%;
            height: 100%;
            border: none;
            outline: none;
            padding:14px;
            font-size: 14px;
            border-radius: 50px 0px 0px 50px;
            background:#d9d9d9;
        }

        .search-container button {
            background: var(--meesho-pink);
            border: none;
            height: 100%;
            padding:14.5px 20px;
            color: var(--flipkart-white);
            cursor: pointer;
            border-radius: 0px 50px 50px 0px;
        }

        /* Search Results Dropdown */
        #searchResults {
            list-style: none;
            background: white;
            border-radius: 2px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            max-height: 400px;
            overflow-y: auto;
            display: none;
            position: absolute;
            width: 100%;
            z-index: 1000;
            top: 40px;
            left: 0;
            padding: 10px 0;
        }
        
        #searchResults li {
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            transition: all 0.2s ease;
            border-bottom: 1px solid #f0f0f0;
        }
        
        #searchResults li:last-child {
            border-bottom: none;
        }
        
        #searchResults li:hover {
            background: #f8f9fa;
        }
        
        #searchResults li img {
            width: 40px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
        }
        
        #searchResults li span {
            font-weight: 500;
            color: #444;
        }
        
        .no-results {
            padding: 15px 20px;
            text-align: center;
            color: #888;
            font-style: italic;
        }

        .login-btn {
            background: #ffdfd5;
            color: var(--flipkart-blue);
            border: none;
            padding: 7px 40px;
            font-weight: 500;
            font-size: 16px;
            cursor: pointer;
            border-radius: 2px;
        }

        .seller-btn, .more-btn {
            background: none;
            border: none;
            color: var(--flipkart-white);
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            margin: 0 20px;
        }

        .cart-btn {
            color: black;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            display: flex;
            align-items: center;
            margin-top:12px;
        }

        .cart-btn i {
            margin-right: 5px;
            font-size: 18px;
        }

        /* Category Tabs */
        .container-2 {
            display: flex;
            overflow-x: auto;
            padding: 0px 0px;
            background: var(--flipkart-white);
            gap: 12px;
            border-bottom: 1px solid var(--flipkart-border);
        }
        
        .box-2 {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--flipkart-text);
            min-width: 70px;
        }
        
        .circle-img-box {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 8px;
            border: 1px solid var(--flipkart-border);
        }
        
        #circle-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .ctgry-text-box {
            font-size: 12px;
            text-align: center;
            font-weight: 500;
            background-color: white;
            color:black;
            padding:5px 10px;
            border-radius:50px;
        }
        
        .ctgry-text-box-active {
            font-size: 12px;
            text-align: center;
            font-weight: 500;
            background-color: #000000;
            color:white;
            padding:5px 10px;
            border-radius:50px;
        }
        
        /* Filter Section */
        .one-dr {
            background: var(--flipkart-white);
            padding: 15px;
            border-bottom: 1px solid var(--flipkart-border);            
        }
        
        .one-dr > div {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        label {
            font-size: 14px;
            font-weight: 500;
            margin-right: 10px;
        }
        
        select {
            padding: 8px 12px;
            border: 1px solid var(--flipkart-border);
            border-radius: 2px;
            background: var(--flipkart-white);
            font-size: 14px;
        }
        
        #filter-count {
            background: var(--flipkart-orange);
            color: var(--flipkart-white);
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }
        
        /* Filter Options */
        .filteroptions {
            background: var(--flipkart-white);
            padding: 0px 0px 0px 0px;
            border-bottom: 1px solid var(--flipkart-border);
        }
        
        .filteroptions > div:first-child {
            margin-bottom: 1px;
        }
        
        .filteroptions > div:first-child span {
            font-size: 16px;
            font-weight: 600;
            display: block;
            margin-bottom: 10px;
        }
        
        .filteroptions > div:first-child label {
            display: block;
            margin-bottom: 8px;
        }
        
        .filteroptions > div:first-child > div {
            display: flex;
            gap: 15px;
        }
        
        input[type="number"] {
            padding: 8px 12px;
            border: 1px solid var(--flipkart-border);
            border-radius: 2px;
            width: 100%;
            font-size: 14px;
        }
        
        /* Checkbox Container */
        .checkbox-container {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            padding: 0px 0;
        }
        
        .checkbox-container-elmnt {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 80px;
        }
        
        .checkbox-container img {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            object-fit: cover;
            margin-bottom: 0px;
        }
        
        #clear-filters-btn {
            background: var(--flipkart-blue);
            color: var(--flipkart-white);
            border: none;
            padding: 8px 15px;
            border-radius: 2px;
            font-size: 14px;
            cursor: pointer;
            margin-top: 10px;
        }
        
        /* Out of stock styles */
.product.out-of-stock {
    opacity: 0.5;
    pointer-events: none;
}

.product.out-of-stock .crd-boox {
    filter: grayscale(0.7);
}

.no-click {
    cursor: default;
}

.out-of-stock-message {
    color: #dc3545;
    font-weight: bold;
    margin: 10px 0;
    text-align: center;
}

.big-btn.disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.text-danger {
    color: #dc3545 !important;
}

/* Loading Spinner Styles */
#loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}



@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    margin-top: 15px;
    font-size: 16px;
    color: #333;
}
        
        /* Product List */
        .product-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0px;
            padding: 0px;
            background: #f5f5f5;
        }
        
        .product {
            background-color: white;
            border-radius: 0px;
            overflow: hidden;
            border:1px solid #f9f9f9;
            transition: transform 0.2s, box-shadow 0.2s;            
            padding:5px;
        }
        
       
        
        .product a {
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        .containerofr {
            display: flex;
            padding: 0px;
            gap: 15px;
        }
        
        .boxlft {
            flex: 40%;
            align-self: center;
        }
        
        .boxrgt {
            flex: 60%;
        }
        
        .image-preloader {
            width: 100%;
            height: 150px;
            background: var(--flipkart-gray) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><circle cx="20" cy="20" r="15" stroke="%23ccc" stroke-width="3" fill="none" /><circle cx="20" cy="20" r="15" stroke="%23333" stroke-width="3" fill="none" stroke-dasharray="70 30" transform="rotate(-90 20 20)"><animateTransform attributeName="transform" type="rotate" from="0 20 20" to="360 20 20" dur="1s" repeatCount="indefinite"/></circle></svg>') center center no-repeat;
            border-radius: 2px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .crd-img {
            width: 100%;
            
            object-fit: cover;
            border-radius: 2px;
            display: none;
        }
        
        .discnt-tag {
            background: #d3f9d8;
            color: #2b8a3e;
            padding: 3px 8px;
            border-radius: 2px;
            font-size: 12px;
            font-weight: 500;
        }
        
        .buy-now-btn {
            color: var(--flipkart-blue);
            font-weight: 500;
            font-size: 12px;
        }
        
        .product .boxrgt > div:first-child {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 5px;
            line-height: 1.4;
        }
        
        .product .boxrgt > div:nth-child(2) {
            margin-bottom: 10px;
        }
        
        .product .boxrgt > div:nth-child(3) {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
        }
        
        .product .boxrgt > div:nth-child(3) div:first-child {
            margin-right: 10px;
        }
        
        .product .boxrgt > div:nth-child(3) s {
            color: var(--flipkart-dark-gray);
            font-size: 12px;
        }
        
        .product .boxrgt > div:nth-child(3) div:nth-child(2) {
            font-size: 16px;
            font-weight: 600;
            color: var(--flipkart-text);
        }
        
        .product .boxrgt > div:nth-child(4) {
            font-size: 12px;
            color: var(--flipkart-dark-gray);
            margin-bottom: 10px;
        }
        
        .ratings {
            display: flex;
            justify-content:flex-start;
            align-items: center;
            margin-bottom: 10px;            
        }
        
        .rating-tag {
            background: #229200; color: white; padding: 2px 5px 4px 5px; border-radius: 10px; margin-right:10px;
        }
        
        
        .big-btn {
           background: linear-gradient(135deg, var(--meesho-pink), var(--meesho-purple));
            color: var(--flipkart-white);
            text-align: center;
            padding: 10px;
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            border: none;
            width: 100%;            
            margin-bottom:5px;            
        }
        
        .containerof {
            display: flex;
            justify-content: space-between;
            padding: 10px 0px;
            border-top: 1px solid var(--flipkart-border);
            font-size: 12px;
            color: var(--flipkart-dark-gray);
        }
        
        /* Show More Button */
        .show-more-container {
            text-align: center;
            padding: 20px;
            background: var(--flipkart-gray);
        }
        
        .show-more-btn {
            background: var(--flipkart-blue);
            color: var(--flipkart-white);
            border: none;
            padding: 12px 30px;
            border-radius: 2px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
        }
        
        .show-more-btn:hover {
            background: #1c6ae4;
        }
        
        /* Next Page */
        #next-page {
            display: flex;
            justify-content: center;
            gap: 10px;
            padding: 20px;
            background: var(--flipkart-gray);
        }
        
        #next-page a {
            text-decoration: none;
            color: var(--flipkart-blue);
            font-weight: 500;
        }
        
        #next-page button {
            background: var(--flipkart-white);
            border: 1px solid var(--flipkart-border);
            padding: 8px 15px;
            border-radius: 2px;
            cursor: pointer;
            font-size: 14px;
        }
        
        #next-page button:hover {
            background: var(--flipkart-light-blue);
        }
        
        /* Loading Spinner */
        .loading-spinner {
            display: none;
            text-align: center;
            padding: 20px;
        }
        
        .loading-spinner::after {
            content: "";
            display: inline-block;
            width: 30px;
            height: 30px;
            border: 3px solid var(--flipkart-gray);
            border-top: 3px solid var(--flipkart-blue);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Bottom Navigation */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            display: flex;
            justify-content: space-around;
            padding: 8px 0;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            font-size: 0.8rem;
        }
        
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color:black;
            
        }
        
        .nav-item.active {
            color: var(--flipkart-blue);
        }
        
        .nav-item i {
            font-size: 1.5rem;
            margin-bottom: 3px;
        }
        
        /* Typography */
        html {
    font-size: 16px; /* Base size for rem calculations */
}

/* Use clamp() for responsive scaling */
.font-10 { font-size: clamp(0.4rem, 0.5rem + 0.5vw, 0.625rem); }
.font-12 { font-size: clamp(0.625rem, 0.625rem + 0.5vw, 0.75rem); }
.font-14 { font-size: clamp(0.5rem, 1.5rem + 0.5vw, 0.875rem); }
.font-16 { font-size: clamp(0.875rem, 0.875rem + 0.5vw, 1rem); }
.font-20 { font-size: clamp(1rem, 1rem + 0.5vw, 1.25rem); }
        
        .text-2 { color: var(--flipkart-dark-gray); }
        
        /* Responsive Design */
        @media (min-width: 768px) {
            .product-list {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .container-2 {
                justify-content: center;
            }
        }
        
        @media (min-width: 1024px) {
            .product-list {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            
            .search-container {
                order: 3;
                max-width: 100%;
                margin: 10px 0 0;
            }
        }

        @media (max-width: 480px) {                        
            .seller-btn, .more-btn {
                display: none;
            }
        }
    