diff --git a/frontend/application/components/FeaturedProducts.tsx b/frontend/application/components/FeaturedProducts.tsx index 1ffa7d9..648dce7 100644 --- a/frontend/application/components/FeaturedProducts.tsx +++ b/frontend/application/components/FeaturedProducts.tsx @@ -52,16 +52,16 @@ function ProductCard({ product, priority = false }: { product: Product; priority viewport={{ once: true }} transition={{ duration: 0.3, ease: "easeOut" }} onClick={() => router.push(`/shop/${product.slug || product.id}`)} - className="group bg-white/90 backdrop-blur-md rounded-2xl sm:rounded-3xl border border-medical-gray-200/80 overflow-hidden hover:shadow-xl hover:shadow-canina-blue/10 hover:border-canina-blue/30 transition-all duration-300 flex flex-col cursor-pointer relative" + className="group bg-white/90 backdrop-blur-md rounded-2xl sm:rounded-3xl border border-medical-gray-200/80 overflow-hidden hover:shadow-xl hover:shadow-canina-blue/10 hover:border-canina-blue/30 transition-all duration-300 flex flex-col cursor-pointer relative w-full" > {/* Category Badge */} -
+
{product.shortDescription || (product.description ? product.description.replace(/<[^>]*>/g, '') : '')}
{/* Footer: Price + CTA */} -