/* ==========================================================
   UNIFIED THEME — Chewtoy's Dugout v9.0.0
   Master import file + minimal global overrides.
   ========================================================== */

/* ── GLOBAL HTML OVERRIDES ── */
html {
  background: transparent;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

/* ── WORDPRESS / WOOCOMMERCE BUTTON OVERRIDES ── */
.button,
.woocommerce-button,
button[type="submit"],
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-button);
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border: 1px solid var(--gold-700);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  background: var(--gold-600);
  color: var(--text-on-gold);
  box-shadow: var(--shadow-sm);
}

.button:hover,
.woocommerce-button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  background: #9F8448;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), var(--shadow-glow-gold);
}
