/* ──────────────────────────────────────────────────────────────────────
 * Storefront theme bridge for Blackbird Pickers.
 *
 * The Storefront library emits its dark palette as --storefront-* CSS
 * custom properties (set by config['theme']). The library has no built-in
 * light mode; we provide it here by overriding those same variables under
 * :root[data-theme="light"], matching BBP's existing dark/light toggle
 * (see the inline <script> at the top of index.html that flips data-theme
 * on the <html> element).
 *
 * Load order matters: include this file AFTER the library's own theme
 * <style> block (which is emitted by $store->widgets()->headTags()).
 * ────────────────────────────────────────────────────────────────────── */

:root[data-theme="light"] {
    --storefront-primary:        #8a6420;
    --storefront-primary-text:   #faf6ec;
    --storefront-background:     #faf6ec;
    --storefront-surface:        #efe7d3;
    --storefront-text:           #1f1a12;
    --storefront-muted:          #6b5e4a;
    --storefront-border:         rgba(138,100,32,0.2);
    --storefront-accent:         #a87f3d;
}
