        .new-product-card {
            width: 100%;
            max-width: 280px;
            margin-bottom: 20px;
        }

        .new-card-container {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            border: 1px solid #f0f0f0;
        }

        .new-card-container:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .new-hot-label {
            position: absolute;
            top: 16px;
            left: 16px;
            background: #ff5722;
            color: white;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .new-stock-label {
            position: absolute;
            top: 16px;
            left: 16px;
            background: #4caf50;
            color: white;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .new-product-img {
            position: relative;
            padding: 0;
            text-align: center;
            background: #ffffff;
            height: 250px;
            overflow: hidden;
        }

        .new-product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .new-card-container:hover .new-product-img img {
            transform: scale(1.05);
        }

        .new-product-info {
            padding: 20px 20px 30px;
            text-align: left;
        }

        .new-product-cat {
            color: #999;
            font-size: 14px;
            font-weight: 400;
            margin-bottom: 8px;
            text-transform: capitalize;
        }

        .new-product-info h4 {
            margin: 0 0 12px 0;
            font-size: 18px;
            font-weight: 600;
            color: #333;
            line-height: 1.4;
        }

        .new-product-info h4 a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        .new-product-info h4 a:hover {
            color: #ff5722;
        }

        .new-product-cost {
            display: block;
            font-size: 18px;
            font-weight: 600;
            color: #666;
            margin-bottom: 15px;
        }

        .new-product-stars {
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .new-product-stars i {
            color: #ffa726;
            font-size: 16px;
        }

        .new-cat-rating {
            display: flex;
            justify-content: space-between;
        }

        /* Updated Add to Cart Button Styles */
        .new-cart-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: #4caf50;
            color: white !important;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            width: 100%;
            text-align: center;
        }

        .new-cart-btn:hover {
            background: #45a049;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
        }

        .new-cart-btn i {
            font-size: 14px;
        }

        /* Grid Layout */
        .new-products-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 10px;
            /* max-width: 1200px; */
            margin: 0 auto;
            padding: 20px 0;
            margin-bottom: 10px;
        }

        /* Demo page styling */
        .new-demo-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .new-demo-header h1 {
            color: #333;
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .new-demo-header p {
            color: #666;
            font-size: 16px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .new-products-layout {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 25px;
            }

            .new-product-card {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .new-products-layout {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                gap: 20px;
                padding: 15px;
            }

            .new-product-img {
                padding: 0;
                height: 220px;
            }

            .new-product-img img {
                max-width: none;
                max-height: none;
            }

            .new-product-info {
                padding: 15px 15px 25px;
            }

            .new-product-info h4 {
                font-size: 16px;
            }

            .new-product-cost {
                font-size: 16px;
            }

            .new-hot-label,
            .new-stock-label {
                font-size: 10px;
                padding: 3px 10px;
            }

            .new-cart-btn {
                padding: 8px 16px;
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .new-products-layout {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 10px;
            }

            .new-product-card {
                max-width: 100%;
            }

            .new-product-img {
                padding: 0;
                height: 220px;
            }

            .new-product-img img {
                max-width: none;
                max-height: none;
            }

            .new-product-info {
                padding: 12px 12px 20px;
            }

            .new-product-info h4 {
                font-size: 15px;
            }

            .new-product-cost {
                font-size: 15px;
            }

            .new-product-stars i {
                font-size: 14px;
            }

            .new-cart-btn {
                padding: 8px 14px;
                font-size: 12px;
            }

            .new-cart-btn i {
                font-size: 12px;
            }
        }

        @media (max-width: 320px) {
            body {
                padding: 10px;
            }

            .new-products-layout {
                padding: 5px;
            }

            .new-product-img {
                padding: 0;
                height: 160px;
            }

            .new-product-info {
                padding: 10px;
            }

            .new-product-info h4 {
                font-size: 14px;
            }

            .new-product-cost {
                font-size: 14px;
            }
        }