.add-to-cart-button:hover { transform: scale(1.05); transition: transform 0.2s ease-in-out; } /* Add transition to the cart icon */ nav .container > div:nth-child(3) > a { transition: color 0.3s ease; } nav .container > div:nth-child(3) > a:hover { color: #FFFF00; } .product-card { transition: transform 0.3s ease; } .product-card:hover { transform: scale(1.03); }