body{background:#f8f9fa} .card-product img{object-fit:cover;height:180px;width:100%;}
<style >
/* CSS for Floating WhatsApp Icon */
#floating-whatsapp-btn {
    position: fixed;
    width: 60px; /* Adjust size as needed */
    height: 60px;
    bottom: 30px; /* Distance from the bottom edge */
    right: 30px; /* Distance from the right edge */
    background-color: #128C7E; /* WhatsApp Green */
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 35px; /* Icon size */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 1000; /* Ensure it stays above other content */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#floating-whatsapp-btn:hover {
    background-color: #128C7E; /* Darker green on hover */
    transform: scale(1.05);
}

</style >

.hero-container {
    /* Use viewport height to limit size on smaller screens */
    min-height: 50vh;
    max-height: 80vh;
    position: relative;
    /* Optional: Center the image/background if using a background-image CSS property */
    background-size: cover;
    background-position: center;
}

/* Make text readable with a semi-transparent background */
.hero-text-overlay {
    background-color: rgba(0, 0, 0, 0.4); /* Darker background for text */
    padding: 20px;
    border-radius: 8px;
}

    /* Ensure text color is white/light for contrast */
    .hero-text-overlay h1,
    .hero-text-overlay p {
        color: white !important;
        /* Adjust font size responsively */
        font-size: 1.5rem; /* Smaller font for mobile */
    }

/* Media query for larger screens (optional, but good practice) */
@media (min-width: 768px) {
    .hero-text-overlay h1 {
        font-size: 2.5rem;
    }
}