/* =========================================================================
   Brand theme — Sovereign Nutriment Pvt. Ltd.
   Export house & chocolate manufacturing

   Deep green taken from the leaves in the SNPL globe mark, with a warm gold
   accent for the agri commodities (maize, sugar, mango, coconut).
   Load AFTER site.css.
   ========================================================================= */
:root {
  /* Light mode */
  --brand-primary: #14513a; /* SNPL leaf green */
  --brand-primary-hover: #0e3e2c;
  --brand-accent: #b06e00; /* harvest gold, AA on off-white */
  --brand-accent-soft: #fbf0d9;

  /* Dark mode */
  --brand-primary-dark: #6fc39a;
  --brand-primary-dark-hover: #8ed3b0;
  --brand-accent-dark: #e8b356;
  --brand-accent-soft-dark: #2f2711;

  /* Selection tint */
  --sel-bg: #c9e7d7;
}

[data-theme='dark'] {
  --sel-bg: #1d3a2d;
}

::selection {
  background: var(--sel-bg);
}
