/* ==========================================================================
   Duckpawl — site integration overrides (loaded after brand.css)
   Small, targeted fixes that depend on the live WordPress/WooCommerce/Astra
   markup, kept separate from the design system in brand.css.
   ========================================================================== */

/* The logo image already shows the "Duckpawl" wordmark, so hide Astra's
   text site-title (its header builder renders it regardless of the legacy
   display-site-title option). */
.site-title { display: none !important; }

/* Bring WooCommerce primary action buttons in line with the brand (amber),
   instead of Astra's default accent blue. Covers the home buy-box add-to-cart,
   the product page, and cart/checkout primary buttons. */
.woocommerce .single_add_to_cart_button,
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt,
.wc-block-components-button {
  background: var(--dp-amber) !important;
  color: var(--dp-navy) !important;
  border: 2px solid transparent !important;
  border-radius: var(--dp-radius-pill) !important;
  font-family: var(--dp-font-head) !important;
  font-weight: 600 !important;
  box-shadow: 0 8px 18px rgba(224, 162, 31, .30) !important;
}
.woocommerce .single_add_to_cart_button:hover,
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce input.button.alt:hover,
.wc-block-components-button:hover {
  background: var(--dp-amber-dark) !important;
}
