/* ============================================================================
   price-compare.css — module-private styles for modules/product/pages/price-compare.html
   De-inlined (go-live combine-pass · 2026-07-19). Two layers:
     1) MOBILE (Source-of-Truth) — exact rules that were inline; phone view unchanged.
     2) DESKTOP light-2026 lives in price-compare.desktop.css (media-gated link).
   Trimmed to only the classes this page renders (header chrome + hero + search
   field + orange button + result-list is drawn with inline styles by the JS).
   Dropped the copy-pasted mega-shell blocks the markup never renders
   (.tabs/.grid/.pcard/.cats/.svc/.acc/.steps/.rt/.chcard/.chans/.actbar/.bnav/… ).
   Load AFTER shared tokens/layout/components/utilities so page tokens win.
   ============================================================================ */

/* ---- page theme (shopping orange accent) — page-scoped :root ---- */
:root{
  --sun:#FF7A1A;--sun-deep:#EF5F06;--ember:#FF3D2E;--gold:#FFB23E;
  --cream:#FFF8F2;--cream-2:#FFEFE2;--paper:#fff;
  --ink:#2A2016;--ink-2:#6E5C4C;--muted:#9A8b7c;--line:#F2E6D8;
  --clay:#C8692B;--clay-soft:#FBEEE2;--clay-deep:#A9531F;--leaf:#1E9E6A;--leaf-soft:#E6F6EE;
  --fd:'Mitr',sans-serif;--fb:'Prompt',sans-serif;--fm:'Prompt',monospace;
  --sh:0 12px 34px -22px rgba(120,70,20,.5);
}
*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}
html,body{margin:0;overflow-x:hidden}
body{font-family:var(--fb);color:var(--ink);background:var(--cream);font-size:15px;line-height:1.55;-webkit-font-smoothing:antialiased}
body.has-nav{padding-bottom:66px}
body.has-bar{padding-bottom:74px}
a{color:inherit;text-decoration:none}
h1,h2,h3,.disp{font-family:var(--fd);font-weight:600;margin:0;line-height:1.25}
p{margin:0 0 10px}
img{max-width:100%;display:block}

/* used keyframes only (floaty → hero .blob · gshift → hero.sun gradient) */
@keyframes floaty{0%,100%{transform:translateY(0)}50%{transform:translateY(-6px)}}
@keyframes gshift{0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%}}

/* header chrome */
header{position:sticky;top:0;z-index:40;background:rgba(255,248,242,.94);backdrop-filter:blur(10px);border-bottom:1px solid var(--line)}
.hd{display:flex;align-items:center;gap:10px;padding:11px 12px}
.ib{width:38px;height:38px;border:none;background:transparent;display:grid;place-items:center;cursor:pointer;color:var(--ink);flex:none;position:relative}
.htitle{font-family:var(--fd);font-weight:600;font-size:17px;flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.dot{position:absolute;top:4px;right:4px;min-width:15px;height:15px;padding:0 4px;border-radius:8px;background:var(--ember);color:#fff;font-size:9.5px;font-weight:600;display:grid;place-items:center;font-family:var(--fb)}

/* hero (orange gradient — only the .sun variant this page uses) */
.hero{color:#fff;padding:22px 16px 24px;position:relative;overflow:hidden}
.hero.sun{background:linear-gradient(120deg,#FF8A2B,#F0590A,#FF7A1A);background-size:250% 250%;animation:gshift 11s ease infinite}
.hero .eb{font-family:var(--fm);font-size:11px;letter-spacing:.16em;text-transform:uppercase;opacity:.9}
.hero h1{font-size:24px;margin:6px 0 4px}
.hero p{font-size:13px;opacity:.94;margin:0}
.hero .blob{position:absolute;border-radius:50%;background:rgba(255,255,255,.15);filter:blur(3px);pointer-events:none;animation:floaty 8s ease-in-out infinite}

/* search field (the page uses only the input) */
.field{margin-bottom:14px}
.field label{display:block;font-family:var(--fd);font-weight:500;font-size:13px;margin-bottom:6px}
.field input{width:100%;border:1.5px solid var(--line);border-radius:11px;padding:12px 14px;font-family:var(--fb);font-size:14px;color:var(--ink);background:#fff;outline:none}
.field input:focus{border-color:var(--sun)}

/* orange button (only the .sun variant this page uses) */
.btn{display:block;width:100%;text-align:center;border:none;border-radius:13px;padding:13px;font-family:var(--fd);font-weight:600;font-size:15px;cursor:pointer;transition:transform .14s}
.btn:active{transform:scale(.98)}
.btn.sun{background:linear-gradient(135deg,var(--sun),var(--sun-deep));color:#fff;box-shadow:0 10px 22px -10px var(--sun)}

@media(prefers-reduced-motion:reduce){*{animation:none!important}}
:focus-visible{outline:2px solid var(--sun);outline-offset:2px}
