* {
    
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
}
        
        body {
            background-color: white;
            color: #333;
            
        }
   
        .product-image {
            display: none;
        }
        /* Header Styles */
        header {
            
        }
        .header-rvl {
            background-color: white;
            color: black;
            padding: 0px 0px 12px 0px;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 100;
        }

        .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:11.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: 110px;
            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;
        }

       

        .cart-btn {
            padding:0px;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            display: flex;
            align-items: center;
            border:none;
            color: inherit;
        }

        
        /* Flipkart-inspired color scheme and typography */
        :root {
            --flipkart-blue: #2874f0;
            --flipkart-light-blue: #3a77e8;
            --flipkart-yellow: #ffe11b;
            --flipkart-white: #ffffff;
            
           
            --flipkart-black: #212121;
            --flipkart-green: #388e3c;
            --flipkart-red: #ff6161;
            --flipkart-orange: #ff9f00;
            --flipkart-light-green: #26a541;
        }
        
        
        
        /* Header-like section */
        .page-header {
            background-color: var(--flipkart-blue);
            color: var(--flipkart-white);
            padding: 12px 20px;
            box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }
        
        .page-header h1 {
            font-size: 22px;
            font-weight: 500;
            display: inline-block;
        }
        
        .page-header span {
            font-size: 14px;
            margin-left: 10px;
            opacity: 0.9;
        }
        
        /* Product cards styling */
        
        
       
        
        
        
        .price-info {
            margin-bottom: 12px;
        }
        
        .price {
            font-size: 20px;
            font-weight: 500;
            color: var(--flipkart-black);
            margin-bottom: 4px;
        }
        
        .mrp {
            font-size: 14px;
            color: var(--flipkart-dark-gray);
            text-decoration: line-through;
            display: inline-block;
            margin-right: 8px;
        }
        
        /* Discount Tag Styling */
        .discount {
            font-size: 12px;
            color: var(--flipkart-green);
            font-weight: 500;
            display: inline-block;
            background-color: #f0fff0;
            padding: 2px 6px;
            border-radius: 2px;
            border: 1px solid var(--flipkart-green);
        }
        
        .retail-price {
            font-size: 14px;
            color: var(--flipkart-dark-gray);
            margin-bottom: 4px;
        }
        
        .store-info, .brand-info {
            font-size: 14px;
            color: var(--flipkart-dark-gray);
            margin-bottom: 4px;
        }
        
        /* Star Rating Styling */
        .ratings-info {
            display: flex;
            align-items: center;
            color: var(--flipkart-dark-gray);
            font-size: 14px;
            margin-bottom: 4px;
        }
        
        .star-rating {
            display: inline-flex;
            margin-right: 6px;
        }
        
        .star {
            color: var(--flipkart-orange);
            font-size: 14px;
            margin-right: 1px;
        }
        
        .rating-tag {
            background-color: var(--flipkart-green);
            color: var(--flipkart-white);
            font-size: 12px;
            font-weight: 500;
            padding: 2px 6px;
            border-radius: 10px;
            
        }
        
        /* Quantity and selection styling */
        .quantity-input {
            margin-bottom: 12px;
        }
        
        
        
        .size-selection, .color-selection {
            margin-bottom: 12px;
        }
        
        .size-selection label, .color-selection label {
            display: block;
            font-size: 14px;
            margin-bottom: 6px;
            color: var(--flipkart-black);
            font-weight: 500;
            float:left;
        }
        
        .size-selection input, .color-selection input {
            margin-right: 8px;
        }
        
        .size-selection span, .color-selection span {
            margin-right: 12px;
            font-size: 14px;
        }
        
        /* Price options styling */
        .price-options {
            margin-bottom: 16px;
            border-top: 1px dashed var(--flipkart-gray);
            padding-top: 12px;
        }
        
        .price-options h4 {
            font-size: 14px;
            margin-bottom: 8px;
            color: var(--flipkart-black);
            font-weight: 500;
        }
        
        .price-option {
            margin-bottom: 6px;
        }
        
        .price-option label {
            font-size: 14px;
            color: var(--flipkart-black);
        }
        
        /* Add to cart button */
        
        .product button {
            border-radius: 50px;
            color: white;
            font-weight: 800;
        }
        
        .product button:hover:not(:disabled) {
            background-color: #ff8300;
        }
        
        .product button:disabled {
            background-color: var(--flipkart-dark-gray);
            cursor: not-allowed;
        }
        
        /* Cart sections styling */
        .cart-container {
            background-color: var(--flipkart-white);
            border-radius: 2px;
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
            padding: 20px;
            margin: 0 20px 30px;
        }
        
        .cart-container h2 {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 16px;
            color: var(--flipkart-black);
            padding-bottom: 12px;
            border-bottom: 1px solid var(--flipkart-gray);
        }
        
        .cart-item {
            display: flex;
            padding: 16px 0;
            border-bottom: 1px solid var(--flipkart-gray);
            position: relative;
        }
        
        .cart-item:last-child {
            border-bottom: none;
        }
        
        .cart-item img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin-right: 16px;
            border: 1px solid var(--flipkart-gray);
            border-radius: 2px;
        }
        
        .cart-item-details {
            flex-grow: 1;
        }
        
        .cart-item-details div {
            margin-bottom: 4px;
            font-size: 14px;
        }
        
        .cart-item-details span {
            font-weight: 500;
        }
        
        /* Cart Item Select Input Styling */
        .cart-item-select {
            padding: 6px 10px;
            border: 1px solid var(--flipkart-dark-gray);
            border-radius: 4px;
            font-size: 13px;
            background-color: var(--flipkart-white);
            margin-right: 8px;
            min-width: 70px;
            transition: border-color 0.2s;
        }
        
        .cart-item-select:focus {
            outline: none;
            border-color: var(--flipkart-blue);
            box-shadow: 0 0 0 2px rgba(40, 116, 240, 0.1);
        }
        
        /* Cart Item Remove Button Styling */
        .cart-item-remove-btn {
            background-color: transparent;
            color: var(--flipkart-red);
            border: 1px solid var(--flipkart-red);
            border-radius: 4px;
            padding: 6px 12px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 8px;
        }
        
        .cart-item-remove-btn:hover {
            background-color: var(--flipkart-red);
            color: var(--flipkart-white);
        }
        
        /* Cart Summary - Style Removed */
        .cart-totals {
            /* All specific styling removed - only keeping basic layout */
            margin-top: 16px;
        }
        
        .cart-totals h3 {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 12px;
            color: var(--flipkart-black);
        }
        
        .cart-totals div {
            margin-bottom: 8px;
            font-size: 14px;
            display: flex;
            justify-content: space-between;
        }
        
        .cart-totals div:last-child {
            font-weight: 500;
            font-size: 16px;
            margin-top: 8px;
            padding-top: 8px;
            border-top: 1px dashed var(--flipkart-dark-gray);
        }
        
        /* Cart buttons */
        .cart-buttons {
            display: flex;
            gap: 12px;
            padding: 0 20px;
            margin-bottom: 30px;
        }
        
        .cart-buttons button {
            flex: 1;
            padding: 12px 20px;
            font-size: 14px;
            font-weight: 500;
            border: none;
            border-radius: 2px;
            cursor: pointer;
        }
        
        #clearCartButton {
            background-color: var(--flipkart-white);
            color: var(--flipkart-blue);
            border: 1px solid var(--flipkart-blue);
        }
        
        #placeOrderButton {
            background-color: var(--flipkart-orange);
            color: var(--flipkart-white);
        }
        
        /* Orders and sent items sections */
        .orders-container, .sent-container, .delivered-container {
            background-color: var(--flipkart-white);
            border-radius: 2px;
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
            padding: 20px;
            margin: 0 20px 30px;
        }
        
        .orders-container h2, .sent-container h2, .delivered-container h2 {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 16px;
            color: var(--flipkart-black);
            padding-bottom: 12px;
            border-bottom: 1px solid var(--flipkart-gray);
        }
        
        .order-item, .sent-item {
            display: flex;
            padding: 16px 0;
            border-bottom: 1px solid var(--flipkart-gray);
            position: relative;
        }
        
        .order-item:last-child, .sent-item:last-child {
            border-bottom: none;
        }
        
        .order-item img, .sent-item img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin-right: 16px;
            border: 1px solid var(--flipkart-gray);
            border-radius: 2px;
        }
        
        .order-item-details, .sent-item-details {
            flex-grow: 1;
        }
        
        .order-item-details div, .sent-item-details div {
            margin-bottom: 4px;
            font-size: 14px;
        }
        
        /* Order and Sent Item Buttons */
        .order-item button {
            background-color: var(--flipkart-blue);
            color: var(--flipkart-white);
            border: none;
            border-radius: 4px;
            padding: 6px 12px;
            font-size: 12px;
            font-weight: 500;
            margin-right: 8px;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .order-item button:hover {
            background-color: var(--flipkart-light-blue);
        }
        
        .auto-delete-countdown {
            background-color: #fff8e1;
            border: 1px solid var(--flipkart-orange);
            color: var(--flipkart-black);
            padding: 8px;
            border-radius: 4px;
            margin: 8px 0;
            font-size: 13px;
        }
        
        .countdown-timer {
            font-weight: 500;
            color: var(--flipkart-red);
        }
        
        .delivered-items h3 {
            font-size: 14px;
            color: var(--flipkart-dark-gray);
            margin-bottom: 12px;
        }
        
        .delivered-items .order-id {
            display: inline-block;
            background-color: var(--flipkart-gray);
            padding: 4px 8px;
            border-radius: 4px;
            margin-right: 8px;
            margin-bottom: 8px;
            font-size: 13px;
        }
        
        /* Overlay styles */
        .spinner-overlay, .order-overlay, .order-success-overlay, .sent-removal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }
        
        .order-form, .order-success, .sent-removal {
            background: var(--flipkart-white);
            padding: 24px;
            border-radius: 2px;
            max-width: 500px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .order-form h2, .order-success h3, .sent-removal h3 {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 16px;
            color: var(--flipkart-black);
        }
        
        .order-form label {
            display: block;
            font-size: 14px;
            margin-bottom: 6px;
            color: var(--flipkart-black);
            font-weight: 500;
        }
        
        .order-form input, .order-form select {
            width: 100%;
            padding: 8px 12px;
            border: 1px solid var(--flipkart-dark-gray);
            border-radius: 2px;
            font-size: 14px;
            margin-bottom: 16px;
            background-color: var(--flipkart-white);
        }
        
        .order-form input[readonly] {
            background-color: var(--flipkart-gray);
        }
        
        .delivery-time-selection {
            margin-bottom: 12px;
        }
        
        .delivery-time-selection h3 {
            font-size: 16px;
            margin-bottom: 12px;
            color: var(--flipkart-black);
        }
        
        .time-slot-group {
            margin-bottom: 12px;
        }
        
        .time-slot-group label {
            font-size: 14px;
            margin-bottom: 6px;
            color: var(--flipkart-black);
            font-weight: 500;
        }
        
        .order-form button {
            background-color: var(--flipkart-orange);
            color: var(--flipkart-white);
            border: none;
            border-radius: 2px;
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            margin-right: 12px;
        }
        
        .order-form button:last-child {
            background-color: var(--flipkart-white);
            color: var(--flipkart-blue);
            border: 1px solid var(--flipkart-blue);
        }
        
        .order-success .success-icon, .sent-removal .removal-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }
        
        .order-details {
            background-color: var(--flipkart-gray);
            padding: 16px;
            border-radius: 2px;
            margin: 16px 0;
            text-align: left;
        }
        
        .order-details p {
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .order-success button, .sent-removal button {
            background-color: var(--flipkart-blue);
            color: var(--flipkart-white);
            border: none;
            border-radius: 2px;
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            width: 100%;
            margin-top: 16px;
        }
        
        /* Spinner animation */
        .spinner {
            border: 4px solid rgba(0, 0, 0, 0.1);
            border-top: 4px solid var(--flipkart-blue);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 20px auto;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Blinking animation for quantity inputs */
        .blinking {
            animation: blink 1s infinite;
            border: 1px solid var(--flipkart-orange) !important;
        }
        
        @keyframes blink {
            0% { border-color: var(--flipkart-orange); }
            50% { border-color: #ffcc00; }
            100% { border-color: var(--flipkart-orange); }
        }
        
        /* Highlight for unselected delivery time slots */
        .delivery-time-highlight {
            border: 1px solid var(--flipkart-red) !important;
            background-color: #ffeaea !important;
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% { border-color: var(--flipkart-red); }
            50% { border-color: #ff9999; }
            100% { border-color: var(--flipkart-red); }
        }
        
        /* Auto-delete notification */
        .auto-delete-notification {
            background-color: var(--flipkart-red);
            color: var(--flipkart-white);
            padding: 12px 20px;
            border-radius: 2px;
            margin: 0 20px 20px;
            font-size: 14px;
            display: none;
        }
        
        /* Debug section */
        .debug-section {
            padding: 0 20px;
            margin-bottom: 30px;
        }
        
        .debug-btn {
            background-color: var(--flipkart-blue);
            color: var(--flipkart-white);
            border: none;
            border-radius: 2px;
            padding: 8px 16px;
            font-size: 14px;
            cursor: pointer;
            margin-bottom: 8px;
        }
        
        .delete-info {
            font-size: 13px;
            color: var(--flipkart-dark-gray);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .product {
                width: 100%;
            }
            
            .products-container {
                padding: 0 0px;
            }
            
            .cart-container, .orders-container, .sent-container, .delivered-container {
                margin: 0 0px 0px;
            }
            
            .cart-buttons {
                padding: 0 0px;
            }
        }
        
        /* NEW: Add to Cart Button Preloader Styles */
        .add-to-cart-preloader {
            position: relative;
            min-height: 50px;
            margin-bottom: 12px;
        }
        
        .add-to-cart-btn-container {
            position: relative;
        }
        
        .btn-preloader {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 50px;
            background-color: #f5f5f5;
            border-radius: 4px;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 10;
            transition: opacity 0.3s ease;
        }
        
        .btn-preloader.hidden {
            opacity: 0;
            pointer-events: none;
            z-index: -1;
        }
        
        .btn-spinner {
            width: 24px;
            height: 24px;
            border: 3px solid #e0e0e0;
            border-top: 3px solid var(--flipkart-orange);
            border-radius: 50%;
            animation: btn-spin 1s linear infinite;
        }
        
        @keyframes btn-spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .add-to-cart-btn {
            position: relative;
            z-index: 1;
            width: 100%;
            padding: 12px 20px;
            background-color: var(--flipkart-orange);
            color: var(--flipkart-white);
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .add-to-cart-btn:hover:not(:disabled) {
            background-color: #ff8300;
        }
        
        .add-to-cart-btn:disabled {
            background-color: var(--flipkart-dark-gray);
            cursor: not-allowed;
        }
    
    



        
        
        .container {
            max-width: 480px;
            margin: 0 auto;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: relative;
            padding-bottom: 80px;
        }
        
        /* Header */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background-color: white;
            border-bottom: 1px solid #eee;
            
        }
        
        .header-left {
            display: flex;
            align-items: center;
        }
        
        .back-btn {
            font-size: 20px;
            margin-right: 15px;
            color: #333;
            text-decoration: none;
        }
        
        .header-title {
            font-size: 20px;
            font-weight: bold;
        }
        
        .header-icons {
            display: flex;
            gap: 15px;
        }
        
        .header-icons i {
            font-size: 20px;
            color: #555;
        }
        
        /* Location Banner */
        .location-banner {
            background-color: #fff8e1;
            padding: 12px 15px;
            display: none;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #eee;
            margin:15px;
        }
        
        .location-text {
            color: #d97706;
            font-weight: 500;
        }
        
        .location-arrow {
            color: #d97706;
            font-size: 18px;
        }
        
        /* Product Info */
        .product-info {
            padding: 15px;
        }
        
        .product-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .price-section {
            display: flex;
            align-items: center;
            
        }
        
        .current-price {
            font-size: 22px;
            font-weight: bold;
            margin-right: 10px;
        }
        
        .original-price {
            text-decoration: line-through;
            color: #888;
            margin-right: 10px;
        }
        
        .discount {
            background: #d3f9d8;
            color: #2b8a3e;
            padding: 3px 8px;
            border-radius: 2px;
            font-size: 12px;
            font-weight: 500;
            margin-right: 10px;
        }
        
        .taxes {
            font-size: 12px;
            color:red;
            padding-left: 0px;
            margin-bottom: 15px;
        }
        
        .action-buttons {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }
        
        .wishlist-btn, .share-btn {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 4px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background-color: white;
            font-size: 14px;
            cursor: pointer;
        }
        
        .wishlist-btn i, .share-btn i {
            color: #555;
        }
        
        .offer-banner {
            background-color: white;
            padding: 10px;
            border-radius: 4px;
            margin-bottom: 15px;
            display: flex;
            gap:20px;
            align-items: center;
        }
        
        .offer-text {
            font-weight: 500;
            color: #7b1fa2;
        }
        
        .offer-price {
            font-weight: bold;
            color: #7b1fa2;
        }
        
        .delivery-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0px;
            padding: 0px 0px 10px 0px;
            border-bottom: 1px solid #eee;
        }
        
        .info-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .info-icon {
            font-size: 18px;
            margin-bottom: 5px;
            color: #4caf50;
        }
        
        .info-text {
            font-size: 12px;
            color: #555;
        }
        
        /* Size Selection */
        .size-section {
            padding: 15px;
            border-bottom: 1px solid #eee;
            display:none;
        }
        
        .section-title {
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .size-options {
            display: flex;
            gap: 10px;
        }
        
        .size-option {
            padding: 8px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background-color: white;
        }
        
        /* Product Highlights */
        .highlights-section {
            padding: 0px 15px;
            border-bottom: 1px solid #eee;
            font-size:0.9rem;
        }
        
        .highlight-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
        }
        
        .highlight-label {
            font-weight: bold;
            color: #555;
            width:40%;
        }
        
        .highlight-value {
            color: #333;
            width:60%;
        }
        
        .view-more-btn {
            
            width: 100%;
            padding: 10px;
            margin-top: 15px;
            background-color: white;
            border: 1px solid #7b1fa2;
            border-radius: 4px;
            color: #7b1fa2;
            font-weight: bold;
            cursor: pointer;
        }
        
        /* Ratings */
        .ratings-section {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .ratings-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
        }
        
        .ratings-title {
            font-weight: bold;
        }
        
        .view-all {
            color: #7b1fa2;
            font-weight: 500;
        }
        
        .ratings-summary {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .average-rating {
            font-size: 32px;
            font-weight: bold;
            margin-right: 15px;
        }
        
        .rating-bars {
            flex: 1;
        }
        
        .rating-bar {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
        }
        
        .rating-label {
            width: 80px;
            font-size: 14px;
        }
        
        .rating-progress {
            flex: 1;
            height: 8px;
            background-color: #e0e0e0;
            border-radius: 4px;
            margin: 0 10px;
            overflow: hidden;
        }
        
        .rating-fill {
            height: 100%;
            background-color: #ffc107;
        }
        
        .rating-count {
            
            font-size: 14px;
            color: #888;
        }
        
        .rating-tags {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        
        .rating-tag {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 5px 10px;
            background-color: #f5f5f5;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
        }
        
        .rating-tag.active {
            background-color: #7b1fa2;
            color: white;
        }
        
        /* Reviews */
        .reviews-section {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .review {
            margin-bottom: 0px;
            padding-bottom: 0px;
            border-bottom: 1px solid #eee;
        }
        
        .review:last-child {
            border-bottom: none;
        }
        
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0px;
        }
        
        .review-rating {
            color: #ffc107;
        }
        
        .review-date {
            color: #888;
            font-size: 14px;
        }
        
        .review-text {
            margin-bottom: 0px;
            line-height: 1.5;
            font-size:13px;
        }
        
        .review-author {
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .review-helpful {
            display: flex;
            align-items: center;
            color: #888;
            font-size: 14px;
        }
        
        .review-helpful i {
            margin-right: 5px;
        }
        
        .review-images {
            display: none;
            gap: 10px;
            margin: 0px;
            overflow-x: auto;
            padding-bottom: 10px;
        }
        
        .review-image {
            width: 100%;
            
            border-radius: 8px;
            object-fit: cover;
            cursor: pointer;
        }
        
        /* Similar Products */
        .similar-section {
            padding: 0px 20px 0px 16px;
            display:none;
        }
        
        .similar-title {
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .similar-products {
            display: flex;
            overflow-x: auto;
            gap: 15px;
            padding-bottom: 10px;
        }
        
        .similar-product {
            min-width: 40%;
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
        }
        .similar-product-s {
            min-width: 40%;
            border: 1px solid #eee;
            border-radius: 8px;
            
        }
        
        .product-image {
            background-color: #f8f8f8;
            
        }
        
        .product-details {
            padding: 10px;
        }
        
        .product-name {
            font-size: 14px;
            margin-bottom: 5px;
            
        }
        
        .product-pricing {
            display: none;
            align-items: center;
            margin-bottom: 5px;            
        }
        
        .product-original-price {
            text-decoration: line-through;
            color: #888;
            font-size: 12px;
            margin-right: 5px;
        }
        
        .product-discount {
            color: #e53935;
            font-size: 12px;
            font-weight: bold;
        }
        
        .product-current-price {
            font-weight: bold;
            font-size: 16px;
            display:none;
        }
        
        .product-offer {
            color: #7b1fa2;
            font-size: 12px;
            margin-bottom: 5px;
            display:none;
        }
        
        .product-delivery {
            color: #4caf50;
            font-size: 12px;
        }
        
        /* Footer */
        .footer {
            position: sticky;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            padding: 5px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            max-width: 480px;
            margin: 0 auto;
            z-index: 200;
        }
        
        .cart-btn {
            display: none;
            align-items: center;
            gap: 5px;
            padding: 15px 20px;
            background-color: white;
            border: 1px solid #7b1fa2;
            border-radius: 4px;
            color: #7b1fa2;
            cursor: pointer;
            margin:5px;            
        }
        
        :root {
            --meesho-pink: #f43397;
           
            --meesho-purple: #8a2be2;
           
        }
        
        .buy-now-btn {
            padding: 16px 30px;
            background: linear-gradient(135deg, var(--meesho-pink), var(--meesho-purple));
            border: none;
            border-radius: 50px;
            color: white;
            font-weight: 800;
            cursor: pointer;
            width:100%;
            box-sizing:border-box;    
            font-size: 16px;        
        }
        
        /* Status Bar */
        .status-bar {
            display: flex;
            justify-content: space-between;
            padding: 5px 15px;
            background-color: #f0f0f0;
            font-size: 14px;
            color: #555;
        }
        
        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        
        .overlay-content {
            background-color: white;
            width: 90%;
            max-width: 500px;
            max-height: 80vh;
            border-radius: 8px;
            padding: 20px;
            overflow-y: auto;
            position: relative;
        }
        
        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #555;
        }
        
        .overlay-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
            padding-right: 30px;
        }
        
        .overlay-section {
            margin-bottom: 20px;
        }
        
        .overlay-section-title {
            font-weight: bold;
            margin-bottom: 10px;
            color: #7b1fa2;
        }
        
        /* Image Viewer */
        .image-viewer {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.9);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1001;
        }
        
        .image-viewer-content {
            max-width: 90%;
            max-height: 90%;
        }
        
        .image-viewer-close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 30px;
            cursor: pointer;
        }
        
        /* Share Options */
        .share-options {
            position: absolute;
            bottom: 80px;
            right: 15px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            padding: 15px;
            display: none;
            flex-direction: column;
            gap: 10px;
            z-index: 100;
        }
        
        .share-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            cursor: pointer;
            border-radius: 4px;
        }
        
        .share-option:hover {
            background-color: #f5f5f5;
        }
        
        .share-option i {
            font-size: 20px;
            width: 24px;
        }
        
        .facebook i {
            color: #3b5998;
        }
        
        .whatsapp i {
            color: #25D366;
        }
        
        .twitter i {
            color: #1DA1F2;
        }
        
        .copy-link i {
            color: #7b1fa2;
        }
   
    

    /* CSS Styles */
  .prdct-lndng-img-slidr-inner-cell {
    margin-bottom: 0;
  }

  .slider-container {
    position: relative;
    overflow: hidden;
  }

  .slider {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .slide {
    flex: 0 0 100%;
    background-color: white;
    text-align: center;
    line-height: 0px;
    font-size: 24px;
  }
  
  .slider-nav {
    text-align: center;
    display:flex;
    justify-content: center;
  }
  
  .slider-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #888;
    border-radius: 2px;
    margin: 5px;
    cursor: pointer;
  }
  
  .slider-dot.active {
    background-color: #333;
  }

    

      .spinner2 {
            border: 6px solid #f3f3f3;
            border-top: 6px solid #3498db;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 0.5s linear infinite;
        }

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

        /* Hide the preloader when the content is loaded */
        body.loaded #preloader2 {
            <!-- display: none; -->
        }

    

    /* 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: #dee2e6;
            color:black;
            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: 1px;
            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: 10px 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: 5px;
        }
        
        #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;
        }
        
        /* Product List */
        .product-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5px;
            padding: 7px;
            background: #efefef;
        }
        .product {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            border:1px solid #e4e4e4;
            transition: transform 0.2s, box-shadow 0.2s;            
            padding:5px;
        }
        .product a {
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
    
        
        .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; 
            border:0.5px solid #2b8a3e;
            padding: 3px 8px;
            border-radius: 2px;
            font-size: 12px;
            font-weight: 500;
        }
        
        .ratings {
            display: flex;
            justify-content:flex-start;
            align-items: center;
            margin-bottom: 10px;            
        }
        
        .rating-tag {
            background-color:#0081ff; color: white; padding: 2px 5px 2px 5px; border-radius: 10px; margin-right:10px;
        }
        
        .big-btn {
           background: #ffdc00;
    color: black;
            text-align: center;
            padding: 10px;
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            border: none;
            width: 100%;            
            margin-bottom:5px;            
        }
        
        .product .boxrgt > div:first-child {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 5px;
            
        }
        
        .product .boxrgt > div:nth-child(2) {
            margin-bottom: 0px;
        }
        
        .product .boxrgt > div:nth-child(3) {
            display: flex;
            align-items: center;
            margin-bottom: px;
        }
        
        .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);
            
        }
       
        
        /* 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);
        }
        
       
        
        
        
        /* Typography */
        .font-10 { font-size: 10px; }
        .font-12 { font-size: 12px; }
        .font-14 { font-size: 14px; }
        .font-16 { font-size: 16px; }
        .font-20 { font-size: 20px; }
        
        .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);
            }
        }
        



    /* Bottom Navigation */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            display: flex;
            justify-content: space-around;
            padding: 8px 0;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 100;
            font-size: 0.8rem;
        }
        
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--flipkart-dark-gray);
            
        }
        
        .nav-item.active {
            color: var(--flipkart-blue);
        }
        
        .nav-item i {
            font-size: 1.5rem;
            margin-bottom: 3px;
        }
