body {
    scroll-behavior: smooth;
}

.hero-section {
    background: url('https://images.pexels.com/photos/1427107/pexels-photo-1427107.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
    height: 90vh;
    color: #fff;
    display: flex;
    align-items: center;
}

.overlay {
    background: rgba(0, 0, 0, 0.55);
    height: 100%;
    width: 100%;
    padding: 60px 20px;
}

.section-title {
    border-left: 4px solid #f0a500;
    padding-left: 12px;
    margin-bottom: 30px;
}

.product-card img {
    height: 230px;
    object-fit: cover;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

footer {
    background: #111;
    color: #eee;
    padding: 20px 0;
}