/* ============================================================================
   IndianShopping brand accent
   ----------------------------------------------------------------------------
   Defines the two custom properties the shared guest header reads for its
   brand colour. SHARED_DASHBOARD's css/header-embed.css consumes them as
   fallbacks it does not itself define:

       --he-accent:      var(--site-accent-fill, #3b82f6)
       --he-accent-glow: var(--site-accent-glow, rgba(59, 130, 246, 0.2))

   Until header-embed v2.2.0 the bundle also resolved the accent in JavaScript
   and wrote --he-accent / --he-accent-glow onto <html> as an inline style,
   from site.json's accent_color plus a hardcoded per-site table. v2.2.3 drops
   both of those paths, leaving the stylesheet fallback as the only source. So
   without a site-side definition the IndianShopping header renders blue.

   This file is that definition, and it is deliberately the site's own: the
   shared bundle no longer carries a table of site colours, and IS links no
   generated per-site theme (/auth/api/branding/theme.css) that would supply
   one.

   Values
     #f97316  the saffron-orange in site.json's accent_color, i.e. exactly what
              the v2.2.0 bundle put on <html> in production.
     glow     the bundle's own theme-aware alphas -- 0.2 on dark, 0.1 on light.
              data-theme is always written explicitly ("dark" or "light") by
              js/theme-bootstrap.js and by the equivalent inline bootstraps, so
              keying the light override off the attribute is sufficient.

   Not a no-op at the current pin. v2.2.0 already guards its inline write on
   --site-accent-fill resolving non-empty (so a generated site theme outranks
   the legacy table); defining it here therefore suppresses that write and this
   file supplies the colour instead. The rendered result is unchanged because
   the values above reproduce what the write produced. After the pin moves the
   guard and the write are both gone and only this file remains.

   Measured 2026-08-29 against SHARED_DASHBOARD 3a7131a4 (v2.2.0, the pin in
   shared-dependencies.lock.json) and tools-shared-dashboard origin/main
   db610965 (v2.2.3).
   ========================================================================= */

:root {
  --site-accent-fill: #f97316;
  --site-accent-glow: rgba(249, 115, 22, 0.2);
}

:root[data-theme="light"] {
  --site-accent-glow: rgba(249, 115, 22, 0.1);
}
