/*
Theme Name:           Whiz Wonders
Theme URI:            http://flatsome.uxthemes.com
Author:               UX-Themes
Author URI:           https://uxthemes.com
Description:          Multi-Purpose Responsive WooCommerce Theme
Version:              3.20.1
Requires at least:    6.4
Requires PHP:         7.4
WC requires at least: 8.3
Text Domain:          flatsome
License:              https://themeforest.net/licenses
License URI:          https://themeforest.net/licenses
*/


/***************
All custom CSS should be added to Flatsome > Advanced > Custom CSS,
or in the style.css of a Child Theme.
***************/




.amazon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #000;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  padding: 10px 16px;
  text-decoration: none;
  transition: background 0.2s ease-in-out, transform 0.1s ease-in-out;
}

.amazon-btn img {
  height: 20px;
  width: auto;
}

.amazon-btn span {
  line-height: 1.2;
}

.amazon-btn:hover {
  background-color: #232f3e; /* Amazon dark blue */
  transform: translateY(-1px);
}

