diff --git a/src/components/Products/ProductCard.jsx b/src/components/Products/ProductCard.jsx index 086bb89d..9460b1e9 100644 --- a/src/components/Products/ProductCard.jsx +++ b/src/components/Products/ProductCard.jsx @@ -230,7 +230,7 @@ const ProductCard = forwardRef(({ product }, ref) => { onClick={(e) => handleActionClick(e, handleWishlistToggle)} className={` flex items-center justify-center px-4 py-3 rounded-l-xl border-2 transition-colors duration-150 hover:shadow-lg cursor-pointer focus:outline-none - ${isWishlisted ? 'bg-[#023e8a] border-[#023e8a] text-white hover:bg-[#1054ab]' : 'bg-white border-[#023e8a] text-[#023e8a] hover:text-[#1054ab]'} + ${isWishlisted ? 'bg-[#023e8a] border-[#023e8a] text-white hover:bg-[#1054ab] hover:border-[#1054ab]' : 'bg-white border-[#023e8a] text-[#023e8a] hover:text-[#1054ab] hover:border-[#1054ab]'} `} aria-label={isWishlisted ? 'Remove from wishlist' : 'Add to wishlist'} aria-pressed={isWishlisted} diff --git a/src/components/RecentlyViewed.jsx b/src/components/RecentlyViewed.jsx index eb7447eb..881b225d 100644 --- a/src/components/RecentlyViewed.jsx +++ b/src/components/RecentlyViewed.jsx @@ -42,10 +42,10 @@ export default function RecentlyViewed() { const visibleItems = items.slice(currentIndex, currentIndex + itemsPerPage); return ( -
+
{/* Header section with title and navigation arrows */}
-

+

RECENTLY VIEWED

diff --git a/src/pages/Products/Products.jsx b/src/pages/Products/Products.jsx index fc82fc69..b692681e 100644 --- a/src/pages/Products/Products.jsx +++ b/src/pages/Products/Products.jsx @@ -55,7 +55,7 @@ export default function Products() {
{/* Banner Section */}
-
+

All Products @@ -69,7 +69,7 @@ export default function Products() {

{/* Toolbar Section */} -
+
{/* Left: All Filters button (non-functional) */}
{/* Product Grid Section */} -
+
{error && (