Well its not dropping the www by accident itws following your commands

This
Code:
INCLUDE FILE CODE:
define('HTTP_SERVER', 'http://blinddogcoffee.com');
define('HTTPS_SERVER', 'https://blinddogcoffee.com');
needs to be
Code:
INCLUDE FILE CODE:
define('HTTP_SERVER', 'http://www.blinddogcoffee.com');
define('HTTPS_SERVER', 'https://www.blinddogcoffee.com');
You created the ssl with the www intact, however you are telling zen to NOT use the www


this should take good care of ya