/*
 * Bidforwriting brand palette for the customer-core bidding theme.
 * Loaded by `core-templates/head-brand-overrides.php` after the core
 * bidding stylesheet so these `:root` declarations win the cascade
 * without bumping selector specificity.
 *
 * Contract: redeclare any subset of the `--bidding-color-*` tokens
 * shipped by `Front/bidding/sass/_tokens.scss`. Layout / structural
 * rules stay in customer-core; this file only repaints.
 *
 * Brand mark: emerald-mint #00DFBF / #00C8AB (primary CTA),
 * coral #F76D6D (alerts), slate #324354 (ink). Matches the legacy
 * bidforwriting marketing CSS so the cabinet feels native to the
 * brand front the customer just came from.
 */

:root {
    /* Primary CTA tone — "Proceed to bidding", "Hire writer", "New Order".
       Bidforwriting's signature mint replaces the core's leafy green. */
    --bidding-color-success:        #00DFBF;
    --bidding-color-success-hover:  #00C8AB;

    /* Accent — links, focus rings, in-form highlights. Tied to the
       same mint so the wizard reads as one piece with the brand front.
       `*-rgb` triplet must mirror `*-accent` so semi-transparent
       decorations (focus glow, halo, soft outline) repaint in mint
       instead of staying cyan from the core default. */
    --bidding-color-accent:         #00DFBF;
    --bidding-color-accent-rgb:     0, 223, 191;

    /* Selection / soft tint pair — used for option-row hover, picked
       bid tile, sidebar drop-shadows. Light mint to harmonize with
       the CTA without competing for attention. */
    --bidding-color-primary:        #d9f8f1;
    --bidding-color-primary-soft:   #ebfaf5;
    --bidding-color-primary-ring:   rgba(0, 223, 191, 0.32);

    /* Error tone — bidforwriting's coral. Replaces the core's flat red
       so toasts / validation match the brand-front banners. */
    --bidding-color-error:          #E84F4F;
}
