
        :root {
            --noon-yellow: #FEEE00;
            --noon-yellow-dark: #FFCE00;
            --noon-blue: #0066CC;
            --noon-gray: #F7F7F7;
            --noon-text: #333333;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--noon-gray);
            margin: 0;
            padding: 0;
            color: var(--noon-text);
        }

        /* Header Styles */
        .noon-header {
            background-color: var(--noon-yellow);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .noon-head {
            background-color: white;
            position: sticky;
            top: 68px;
            z-index: 999;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .container-fluid {
            margin: 0 auto;
            width: 100%;
            max-width: 1400px;
            padding: 0 15px;
        }

        .noon-logo img {
            width: 90px;
            height: auto;
        }

        .search-input {
            border: 1px solid #ddd;
            border-radius: 6px;
            padding: 10px 15px;
            width: 100%;
            height: 40px;
            font-size: 14px;
        }

        .header-links {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 18px;
        }

        .header-links a {
            color: #333;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Navigation */
        .nav-container {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            padding: 12px 0;
           
        }

        .nav-links a {
            color: #333;
            text-decoration: none;
            font-size: 18px;
            font-weight: 700;
        }

        .nav-links a:hover {
            color: var(--noon-blue);
        }

        /* Hero Banner */
        .hero-banner {
            margin: 20px 0;
        }

        .carousel-inner img {
            width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: cover;
            border-radius: 8px;
        }

        .carousel-indicators button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        /* Categories */
        .categories-container {
            background: #fff0be;
            padding: 25px 0;
            margin: 20px 0;
        }

        .categories-row {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }

        .category-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 80px;
            text-decoration: none;
            color: #333;
            flex-shrink: 0;
        }

        .category-icon {
            width: 60px;
            height: 60px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
            font-size: 24px;
            color: #666;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .category-name {
            font-size: 12px;
            text-align: center;
            line-height: 1.2;
            font-weight: 500;
        }

        /* Section Headers */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 30px 0 20px;
        }

        .section-title {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            margin: 0;
        }

        .view-all-link {
            color: var(--noon-blue);
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 15px;
            margin-bottom: 30px;
        }

        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s, box-shadow 0.2s;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        }

        .product-image {
            position: relative;
            height: 180px;
            background-color: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-image img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }

        .wishlist-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: white;
            border: none;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            z-index: 10;
        }

        .wishlist-btn:hover {
            color: #ff0000;
        }

        .product-info {
            padding: 15px;
        }

        .product-title {
            font-size: 14px;
            color: #333;
            margin-bottom: 8px;
            line-height: 1.3;
            height: 36px;
            overflow: hidden;
            -webkit-box-orient: vertical;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .current-price {
            font-size: 16px;
            font-weight: bold;
            color: #333;
        }

        .original-price {
            font-size: 14px;
            color: #999;
            text-decoration: line-through;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .stars {
            display: flex;
            gap: 2px;
        }

        .star {
            color: #ffc107;
            font-size: 12px;
        }

        .rating-count {
            font-size: 12px;
            color: #666;
        }

        .delivery-info {
            font-size: 12px;
            color: #28a745;
            margin-top: 5px;
        }

        /* Footer */
        .footer {
            background-color: #f8f9fa;
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 1px solid #e9ecef;
        }

        .footer-section h5 {
            font-size: 14px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

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

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

        .footer-section ul li a {
            color: #666;
            text-decoration: none;
            font-size: 13px;
        }

        .footer-section ul li a:hover {
            color: var(--noon-blue);
        }

        .footer-bottom {
            border-top: 1px solid #cecece;
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
        }

        /* Responsive Adjustments */
        @media (max-width: 1200px) {
            .container-fluid {
                max-width: 1140px;
            }
        }

        @media (max-width: 992px) {
            .container-fluid {
                max-width: 960px;
            }
            
            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .container-fluid {
                max-width: 720px;
            }
            
            .noon-logo img {
                width: 80px;
            }
            
            .header-links {
              display: none;
            }
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
            .section-title {
                font-size: 20px;
            }
            
            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
            }
            
            .category-item {
                width: 70px;
            }
            
            .category-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .carousel-inner img {
                max-height: 300px;
            }
            
            .footer-section {
                margin-bottom: 25px;
            }
        }

        @media (max-width: 576px) {
            .container-fluid {
                max-width: 540px;
            }
            
            .noon-header .row {
                flex-wrap: wrap;
            }
            
            .noon-logo {
                margin-bottom: 10px;
            }
            
            .header-links {
                display: none;
            }
            
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
            .section-title {
                font-size: 18px;
            }
            
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            
            .category-item {
                width: 65px;
            }
            
            .product-image {
                height: 150px;
            }
            
            .product-info {
                padding: 10px;
            }
            
            .product-title {
                font-size: 13px;
                height: 32px;
            }
            
            .current-price {
                font-size: 14px;
            }
            
            .original-price {
                font-size: 12px;
            }
            
            .carousel-inner img {
                max-height: 200px;
            }
            
            .footer-section {
                flex: 0 0 50%;
                max-width: 50%;
            }
        }

        @media (max-width: 480px) {
            .header-links a i {
                display: none;
            }
            
            
            
            .categories-row {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 5px;
                -webkit-overflow-scrolling: touch;
            }
            
            .category-item {
                flex: 0 0 auto;
            }
            
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Cart icon animation */
        @keyframes cartBounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .fa-shopping-cart:hover {
            animation: cartBounce 0.5s ease;
        }
    