/*
 Theme Name: Shoptimizer Child
 Theme URI: https://dev.changingwiththetide.com
 Description: Child theme to enforce consistent fonts/colors across WordPress Multisite affiliates.
 Author: changingwiththetide
 Author URI: https://dev.changingwiththetide.com
 Template: shoptimizer
 Version: 1.0.0
 License: GNU General Public License v2 or later
 License URI: https://www.gnu.org/licenses/gpl-2.0.html
 Tags: child-theme, multisite, woo-commerce
*/

/* ===== Global brand variables ===== */
:root{
  --brand-font: "Inter", sans-serif;         /* body */
  --brand-headings: "Archivo", sans-serif;   /* headings */
  --brand-color: #0E5B6F;
  --brand-accent: #7ABDCD;
  --brand-bg: #DCE7EB;
  --brand-text: #1A1A1A;
}
}

/* Typography */
html, body, p, li, input, textarea, select, button {
  font-family: var(--brand-font) !important;
  color: var(--brand-text);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--brand-headings) !important;
  color: var(--brand-color);
  line-height: 1.2;
}

/* Links / buttons */
a { color: var(--brand-color); }
a:hover, a:focus { color: var(--brand-accent); }
button, .button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  background: var(--brand-color);
  border-color: var(--brand-color);
  color: #fff;
}
button:hover, .button:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #0b2530;
}
