body {
    font-family: 'Inter', sans-serif;
    background-image: linear-gradient(rgba(247, 249, 252, 0.8), rgba(247, 249, 252, 0.8)), url('/tdassets/frontend/img/photo-1506869640319-fe1a24fd76dc.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    color: #333;
}

.navbar-shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background-color: #f8f9fa; /* Added from shop.css */
    display: block;
}

/* Modal Backdrop */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99;
}
.modal-open-btn:checked ~ .modal-backdrop {
    display: flex;
}

/* WhatsApp Floating Button */
.whatsapp-btn-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000; /* Ensure it's above most other content */
}

.whatsapp-float {
    background-color: #25d366; /* WhatsApp brand color */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px; /* Vertically center the icon */
    display: block;
    box-shadow: 2px 2px 3px #999;
    transition: all 0.3s ease-in-out;
}

.whatsapp-float:hover {
    background-color: #1DA851; /* Slightly darker on hover */
    color: white;
    transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Make it responsive for smaller screens if needed */
@media (max-width: 768px) {
    .whatsapp-btn-container {
        bottom: 15px;
        right: 15px;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        line-height: 50px;
    }
}