/* Chez Jose design tokens - single source of truth.
   Loaded globally on the frontend AND inside the Bricks builder canvas,
   and mirrored into Bricks Global Colors / Theme Styles so every page
   (catalog, checkout, account, legal) is driven by the same brand. */
:root{
  /* Neutrals / paper */
  --cj-white:#ffffff; --cj-cream:#fdf8f7; --cj-cream-soft:#fffefc; --cj-paper-grey:#f2f3f6;
  /* Ink */
  --cj-ink:#3d3a36; --cj-ink-strong:#2c2a27; --cj-ink-black:#181412; --cj-muted:#8a847c; --cj-muted-2:#66615c;
  /* Rose / blush */
  --cj-rose:#c98b87; --cj-rose-deep:#c57f7a; --cj-rose-300:#d9a7a4; --cj-rose-200:#ebc9c6; --cj-rose-100:#fbe9e5;
  --cj-blush:#f5e3e1; --cj-logo-box:#f2c9bd; --cj-wine:#794148;
  /* Sand */
  --cj-sand:#e6ddd0; --cj-sand-rose:#e3c2bb; --cj-sand-soft:#f5ebd9;
  /* Sage / green */
  --cj-sage:#89a583; --cj-sage-bg:#dce3de; --cj-forest:#1c2b1a; --cj-whatsapp:#25d366;
  /* Type */
  --cj-font-body:'Heebo','Assistant',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  --cj-font-display:'Cormorant Garamond','Times New Roman',Georgia,serif;
  --cj-font-fine:'Assistant','Heebo',-apple-system,sans-serif;
  --cj-text-xs:12px; --cj-text-sm:13px; --cj-text-base:14px; --cj-text-md:16px; --cj-text-lg:17px;
  --cj-text-xl:18px; --cj-text-2xl:24px; --cj-display:42px;
  --cj-w-regular:400; --cj-w-medium:500; --cj-w-bold:700; --cj-w-extra:800;
  --cj-track-wordmark:0.22em; --cj-track-wide:0.08em;
  /* Radii */
  --cj-radius-sm:8px; --cj-radius-md:10px; --cj-radius-lg:12px; --cj-radius-card:14px; --cj-radius-pill:999px;
  /* Shadow */
  --cj-shadow-card:0 4px 16px 0 rgba(0,0,0,0.08);
  --cj-shadow-float:0 4px 16px 0 rgba(0,0,0,0.08);
  --cj-shadow-hover:0 12px 28px 0 rgba(0,0,0,0.12);
  /* Layout */
  --cj-page-max:1302px; --cj-header-h:86px; --cj-card-w:309px; --cj-card-img-h:190px;
  /* Motion */
  --cj-ease:cubic-bezier(0.4,0,0.2,1); --cj-dur:160ms;
}
*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{background:var(--cj-white);font-family:var(--cj-font-body);color:var(--cj-ink);}
img{max-width:100%;}
button{font-family:inherit;}
