/*
 * CandlePlus theme page (views/pages/themes/candleplus.php) — season-finder
 * tab states, ported from the prototype's JS-computed button styles
 * (html-design/Theme CandlePlus.dc.html renderVals().seasonTabs[].style).
 * Layout classes live on the markup; only the active/inactive state and its
 * transition are here, keyed off aria-pressed (toggled by
 * assets/js/pages/theme-candleplus.js). Colour literals mirror the design
 * tokens in assets/css/input.css.
 */
[data-season-tab] {
  border: 1px solid #E7E4DF;
  background: #fff;
  color: #52525B;
  transition: all .18s ease;
}
[data-season-tab][aria-pressed="true"] {
  border-color: #0B0B0C;
  background: #0B0B0C;
  color: #fff;
}
