/* =========================
   DC WhatsApp Button Plugin
   Digital Creativity — digitalcreativity.net
   ========================= */

/* ---- Product Page Button ---- */
.dc-whatsapp-product-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    margin-top: 10px;
    background: #25D366;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s ease;
}

.dc-whatsapp-product-btn:hover,
.dc-whatsapp-product-btn:focus {
    background: #1ebd50;
    color: #fff;
    text-decoration: none;
}

.dc-whatsapp-product-btn img {
    width: 20px;
    height: 20px;
    display: block;
}

/* ---- Floating Button ---- */
.dc-whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: background 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.dc-whatsapp-float:hover,
.dc-whatsapp-float:focus {
    background: #1ebd50;
    transform: scale(1.08);
}

.dc-whatsapp-float img {
    width: 30px;
    height: 30px;
    display: block;
}
