/*
 * Essaywritery 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: cobalt #3C78FF (primary CTA / accent), navy #0F1B36
 * (ink), gold #FDBB2D (highlight). Matches the legacy essaywritery
 * 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".
       Cobalt replaces the core's green so the brand identity carries
       into the wizard from the homepage hero. */
    --bidding-color-success:        #3C78FF;
    --bidding-color-success-hover:  #2962ee;

    /* Accent — links, focus rings, in-form highlights. Same cobalt
       so the wizard reads as one piece with the brand front. `*-rgb`
       triplet mirrors `*-accent` so semi-transparent decorations
       (focus glow, halo, soft outline) repaint in cobalt instead of
       staying cyan from the core default. */
    --bidding-color-accent:         #3C78FF;
    --bidding-color-accent-rgb:     60, 120, 255;

    /* Selection / soft tint pair — used for option-row hover, picked
       bid tile, sidebar drop-shadows. Light blue to harmonize with
       the CTA without competing for attention. */
    --bidding-color-primary:        #dbe5ff;
    --bidding-color-primary-soft:   #eaf0ff;
    --bidding-color-primary-ring:   rgba(60, 120, 255, 0.30);

    /* Error tone — essaywritery's softer red, matches the brand-front
       form validation banners. */
    --bidding-color-error:          #ff2c2c;
}
