/* ECAM Button Colors — styles the button link for the is-ecam-* / is-ecam-hover-*
   classes set by the Button Colors / Button Hover Colors dropdowns.

   Selectors deliberately match the theme's own global button rule
   (.wp-block-button a.wp-block-button__link.wp-element-button, specificity 0,3,1)
   and add the is-ecam class, giving 0,4,1 — so these WIN by specificity, not just
   by !important + source order. This keeps the colour applied even when a CSS
   optimiser reorders or splits the stylesheets. !important is retained so the
   selection also beats native palette / default / custom (inline) colours (an
   author !important rule beats a normal-importance inline style per the cascade). */

/* Base (normal state) */
.wp-block-button.is-ecam-black  a.wp-block-button__link.wp-element-button { background-color:#000000!important; color:#ffffff!important; }
.wp-block-button.is-ecam-yellow a.wp-block-button__link.wp-element-button { background-color:#F4AF00!important; color:#000000!important; }
.wp-block-button.is-ecam-grey   a.wp-block-button__link.wp-element-button { background-color:#EAEAEA!important; color:#000000!important; }
.wp-block-button.is-ecam-white  a.wp-block-button__link.wp-element-button { background-color:#ffffff!important; color:#000000!important; border:1px solid #000000!important; }

/* Hover / focus */
.wp-block-button.is-ecam-hover-black  a.wp-block-button__link.wp-element-button:hover,
.wp-block-button.is-ecam-hover-black  a.wp-block-button__link.wp-element-button:focus  { background-color:#000000!important; color:#ffffff!important; }
.wp-block-button.is-ecam-hover-yellow a.wp-block-button__link.wp-element-button:hover,
.wp-block-button.is-ecam-hover-yellow a.wp-block-button__link.wp-element-button:focus  { background-color:#F4AF00!important; color:#000000!important; }
.wp-block-button.is-ecam-hover-grey   a.wp-block-button__link.wp-element-button:hover,
.wp-block-button.is-ecam-hover-grey   a.wp-block-button__link.wp-element-button:focus  { background-color:#EAEAEA!important; color:#000000!important; }
.wp-block-button.is-ecam-hover-white  a.wp-block-button__link.wp-element-button:hover,
.wp-block-button.is-ecam-hover-white  a.wp-block-button__link.wp-element-button:focus  { background-color:#ffffff!important; color:#000000!important; border:1px solid #000000!important; }
