body {
    background: #f8f9fa;
}

/* LOGO HEADER */
.logo {
    height: 55px;
    object-fit: contain;
}

/* FOOTER LOGO */
.footer-logo {
    height: 60px;
}

/* OFFCANVAS LINKS */
.offcanvas a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    z-index: 999;
}

/* CART BADGE */
.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    font-size: 11px;
}

/* PRODUCT CARD */
.product-card {
    transition: .25s;
}

    .product-card:hover {
        transform: translateY(-5px);
    }


.menu-link {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

    .menu-link i {
        margin-right: 8px;
    }

    .menu-link:hover {
        color: #d63384;
    }