#uzanga-whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    z-index: 999999;
    transition: transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
}

#uzanga-whatsapp-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0,0,0,.3);
}

#uzanga-whatsapp-btn svg {
    width: 34px;
    height: 34px;
    fill: #fff;
}

@media (max-width: 768px) {
    #uzanga-whatsapp-btn {
        width: 58px;
        height: 58px;
        bottom: 16px;
        right: 16px;
    }

    #uzanga-whatsapp-btn svg {
        width: 32px;
        height: 32px;
    }
}
.order-via-whatsapp-btn {
    margin-top: 12px;
    width: 100%;
    border: none;
    border-radius: 8px;
    background: #25D366;
    color: white;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s ease;
    text-decoration: none;
    box-sizing: border-box;
}

.order-via-whatsapp-btn:hover {
    background: #1ebe5d;
    color: white;
}

.order-via-whatsapp-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}