:root {
  --nhf-mb-h: 60px;
}

/* Sidebar */
#nhf-sidebar {
  padding: 0.75rem 0 1rem;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--nh-charcoal, #2C2A29);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nhf-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--nh-forest, #1E3932);
}

/* Category list */
.nhf-cat-list,
.nhf-cat-sub {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nhf-cat-item {
  border-radius: 6px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.nhf-cat-toggle {
  all: unset;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.35rem 0.4rem;
  font-weight: 500;
  border-radius: 6px;
  color: inherit;
  position: relative;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.nhf-cat-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.35rem 0.4rem;
  font-weight: 500;
  border-radius: 6px;
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.nhf-cat-toggle:hover,
.nhf-cat-toggle:focus-visible,
.nhf-cat-link:hover,
.nhf-cat-link:focus-visible {
  background-color: rgba(0, 112, 74, 0.06);
  color: var(--nh-green, #00704A);
  text-decoration: none;
}

.nhf-cat-item.is-open > .nhf-cat-toggle {
  color: var(--nh-green, #00704A);
  font-weight: 600;
  background-color: rgba(0, 112, 74, 0.05);
}

.nhf-cat-item.is-open > .nhf-cat-toggle:hover {
  background-color: rgba(0, 112, 74, 0.08);
}

.nhf-icon::before {
  content: "›";
  display: inline-block;
  font-size: 0.9em;
  opacity: 0.7;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nhf-cat-item.is-open > .nhf-cat-toggle .nhf-icon::before {
  transform: rotate(90deg);
  opacity: 1;
}

/* Subcategories */
.nhf-cat-sub {
  margin: 0.25rem 0 0.5rem 0.75rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease-in-out;
}

.nhf-cat-item.is-open > .nhf-cat-sub {
  max-height: 1000px;
  opacity: 1;
}

.nhf-cat-sub li {
  margin: 0.25rem 0;
}

.nhf-cat-sub a {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 0.2rem 0.15rem;
  border-radius: 4px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nhf-cat-sub a:hover {
  color: var(--nh-green, #00704A);
  background-color: rgba(0, 112, 74, 0.06);
}

.nhf-cat-sub .is-active > a {
  color: var(--nh-green, #00704A);
  font-weight: 600;
  background-color: rgba(0, 112, 74, 0.08);
  position: relative;
}

.nhf-all a {
  font-style: italic;
  color: rgba(0, 0, 0, 0.7);
}

.nhf-all a:hover {
  color: var(--nh-green, #00704A);
}

/* Accent lines */
.nhf-cat-item.is-open > .nhf-cat-toggle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--nh-green, #00704A);
  border-radius: 2px;
  opacity: 0;
  transform: scaleY(0.6);
  transform-origin: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nhf-cat-item.is-open > .nhf-cat-toggle::before {
  opacity: 1;
  transform: scaleY(1);
}

.nhf-cat-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--nh-green, #00704A);
  border-radius: 2px;
  opacity: 0;
  transform: scaleY(0.6);
  transform-origin: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nhf-cat-link:hover::before,
.nhf-cat-link:focus-visible::before {
  opacity: 1;
  transform: scaleY(1);
}

.nhf-cat-sub .is-active > a::before {
  content: "";
  position: absolute;
  left: -0.75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--nh-green, #00704A);
  border-radius: 2px;
  opacity: 0;
  transform: scaleY(0.6);
  transform-origin: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nhf-cat-sub .is-active > a::before {
  opacity: 1;
  transform: scaleY(1);
}

.nhf-cat-item.is-open > .nhf-cat-toggle:hover::before,
.nhf-cat-sub .is-active > a:hover::before,
.nhf-cat-link:hover::before {
  background-color: var(--nh-forest, #1E3932);
}

/* Filters */
.nhf-filters {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.nhf-filter {
  margin-bottom: 0.75rem;
}

.nhf-filter-toggle {
  all: unset;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.35rem 0.4rem;
  border-radius: 6px;
  font-weight: 500;
  color: inherit;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.nhf-filter-toggle:hover,
.nhf-filter-toggle:focus-visible {
  color: var(--nh-green, #00704A);
  background-color: rgba(0, 112, 74, 0.06);
}

.nhf-filters .nhf-filter.is-open > .nhf-filter-toggle {
  color: var(--nh-green, #00704A);
  background-color: rgba(0, 112, 74, 0.05);
  font-weight: 600;
  box-shadow: none;
  border: none;
}

.nhf-filter-toggle .nhf-icon::before {
  content: "›";
  font-size: 0.9em;
  opacity: 0.6;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nhf-filter.is-open .nhf-filter-toggle .nhf-icon::before {
  transform: rotate(90deg);
  opacity: 1;
}

.nhf-filter-body {
  display: none;
  margin: 0.3rem 0 0 0.75rem;
}

.nhf-filter.is-open .nhf-filter-body {
  display: block;
  animation: nhfFadeIn 0.25s ease;
}

@keyframes nhfFadeIn {
  from {
    opacity: 0;
    transform: translateY(-2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nhf-filter-body label {
  display: block;
  margin: 0.25rem 0;
  cursor: pointer;
  user-select: none;
}

.nhf-filter-body input[type="checkbox"] {
  accent-color: var(--nh-green, #00704A);
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: -2px;
}

.nhf-filter--toggles label {
  display: block;
  margin: 0.35rem 0;
}

.nhf-filter--toggles input[type="checkbox"] {
  accent-color: var(--nh-green, #00704A);
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: -2px;
}

/* Optional price UI */
.nhf-price-slider {
  position: relative;
  height: 4px;
  border-radius: 2px;
  margin: 0.5rem 0;
  background: linear-gradient(
    to right,
    var(--nh-green, #00704A) 0%,
    var(--nh-mint, #C3E8C6) 100%
  );
}

.nhf-price-slider::after {
  content: "●";
  position: absolute;
  right: 20%;
  top: -6px;
  color: var(--nh-green, #00704A);
  font-size: 12px;
}

.nhf-price-values {
  font-size: 0.9em;
  color: rgba(0, 0, 0, 0.7);
}

.nhf-reset {
  display: block;
  margin-top: 1rem;
  text-align: right;
  font-size: 0.9em;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
}

.nhf-reset:hover {
  color: var(--nh-green, #00704A);
  text-decoration: underline;
}

.nhf-applybar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 0.75rem;
}

.nhf-applybtn {
  appearance: none;
  border: 0;
  border-radius: 4px;
  padding: 0.45rem 0.7rem;
  background: var(--nh-green, #00704A);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.nhf-applybtn:hover {
  background: var(--nh-forest, #1E3932);
}

.nhf-price-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nhf-price-field {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 0.25rem 0.4rem;
}

.nhf-price-field input {
  border: 0;
  outline: 0;
  width: 90px;
  background: transparent;
}

.nhf-price-sep {
  opacity: 0.7;
}

.nhf-filter.is-active-group > .nhf-filter-toggle {
  color: var(--nh-green, #00704A);
}

.nhf-filter.is-active-group > .nhf-filter-toggle .nhf-icon {
  position: relative;
}

.nhf-filter.is-active-group > .nhf-filter-toggle .nhf-icon::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nh-green, #00704A);
  transform: translateY(-50%);
  opacity: 0.6;
}

.nhf-filter--attribute + .nhf-filter--toggles {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Mobile */
@media (max-width: 992px) {
  #nhf-sidebar {
    display: none;
  }
}

.nhf-mobilebar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--nhf-mb-h);
  box-sizing: border-box;
  padding-top: 0;
  padding-right: calc(16px + env(safe-area-inset-right, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  padding-left: calc(20px + env(safe-area-inset-left, 0px));
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.06);
  display: none;
  z-index: 1000;
}

@media (max-width: 992px) {
  .nhf-mobilebar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }

  .nhf-mobilebar .nhf-mb-btn--filters {
    margin-left: 0;
    margin-right: auto;
  }
}

@media (max-width: 992px) {
  body.nhf-has-mobilebar {
    padding-bottom: calc(var(--nhf-mb-h) + env(safe-area-inset-bottom, 0px));
  }

  body.nhf-has-mobilebar .site-footer {
    padding-bottom: max(
      24px,
      calc(var(--nhf-mb-h) + env(safe-area-inset-bottom, 0px))
    );
  }
}

.nhf-mb-btn {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  color: var(--nh-charcoal, #2C2A29);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.nhf-mb-btn:hover {
  background: #fafafa;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.nhf-mb-btn:focus-visible {
  outline: none;
  border-color: var(--nh-green, #00704A);
  box-shadow: 0 0 0 2px rgba(0, 112, 74, 0.12);
}

.nhf-mb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  line-height: 1;
  opacity: 0.75;
  flex: 0 0 16px;
}

.nhf-mb-icon img,
.nhf-mb-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}

.nhf-mb-label {
  font-size: 14px;
}

.nhf-badge {
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--nh-green, #00704A);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 0 6px;
  margin-left: 4px;
}

html.nhf-lock,
body.nhf-lock {
  overflow: hidden;
  height: 100%;
}

.nhf-drawer {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1001;
}

.nhf-drawer.is-open {
  display: block;
}

.nhf-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.nhf-drawer.is-open .nhf-drawer__backdrop {
  opacity: 1;
}

.nhf-drawer__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 16px 16px 0 0;
  max-height: 85vh;
  height: 85vh;
  transform: translateY(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
}

.nhf-drawer.is-open .nhf-drawer__panel {
  transform: translateY(0);
}

.nhf-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nhf-drawer__title {
  font-weight: 700;
  font-size: 16px;
  color: var(--nh-forest, #1E3932);
}

.nhf-drawer__close {
  appearance: none;
  border: 0;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  padding: 6px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--nh-charcoal, #2C2A29);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nhf-drawer__close:hover,
.nhf-drawer__close:focus-visible {
  background: rgba(0, 0, 0, 0.06);
  color: var(--nh-green, #00704A);
}

.nhf-drawer__body {
  padding: 12px 16px calc(88px + env(safe-area-inset-bottom, 0px));
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.nhf-drawer__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px calc(96px + env(safe-area-inset-right, 0px)) calc(12px + env(safe-area-inset-bottom, 0px)) 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  border-radius: 16px 16px 0 0;
}

.nhf-drawer__apply {
  appearance: none;
  border: 0;
  border-radius: 4px;
  padding: 10px 14px;
  background: var(--nh-green, #00704A);
  color: #fff;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;
}

.nhf-drawer__apply:hover {
  background: var(--nh-forest, #1E3932);
}

.nhf-drawer__reset {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  color: rgba(0, 0, 0, 0.72);
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  padding: 10px 12px;
  border-radius: 4px;
  flex: 0 0 auto;
}

.nhf-drawer__reset:hover,
.nhf-drawer__reset:focus-visible {
  background: #fafafa;
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--nh-green, #00704A);
}

@media (max-width: 992px) {
  .nhf-drawer__body .nhf-filter-body label {
    padding: 6px 0;
  }

  .nhf-drawer__body .nhf-filter-toggle {
    padding: 10px 8px;
  }

  .nhf-drawer__body .nhf-applybar {
    display: none !important;
  }
}

/* Dark mode */
body.dark-mode #nhf-sidebar {
  color: var(--dm-text);
  border-top: 1px solid var(--dm-border);
  border-bottom: 1px solid var(--dm-border);
}

body.dark-mode .nhf-heading {
  color: color-mix(in srgb, var(--dm-text) 85%, var(--dm-primary) 15%);
}

body.dark-mode .nhf-cat-item {
  background: transparent;
}

body.dark-mode .nhf-cat-toggle,
body.dark-mode .nhf-cat-link {
  color: var(--dm-text);
}

body.dark-mode .nhf-cat-toggle:hover,
body.dark-mode .nhf-cat-toggle:focus-visible,
body.dark-mode .nhf-cat-link:hover,
body.dark-mode .nhf-cat-link:focus-visible {
  color: var(--dm-primary);
  background: color-mix(in srgb, var(--dm-bg) 85%, var(--dm-forest) 15%);
}

body.dark-mode .nhf-cat-item.is-open > .nhf-cat-toggle {
  color: var(--dm-primary);
  background: color-mix(in srgb, var(--dm-bg) 88%, var(--dm-forest) 12%);
}

body.dark-mode .nhf-cat-item.is-open > .nhf-cat-toggle:hover {
  background: color-mix(in srgb, var(--dm-bg) 80%, var(--dm-forest) 20%);
}

body.dark-mode .nhf-icon::before {
  opacity: 0.9;
}

body.dark-mode .nhf-cat-sub {
  border-left: 1px solid var(--dm-border);
}

body.dark-mode .nhf-cat-sub a {
  color: var(--dm-text);
}

body.dark-mode .nhf-cat-sub a:hover {
  color: #fff;
  background: color-mix(in srgb, var(--dm-bg) 85%, var(--dm-forest) 15%);
}

body.dark-mode .nhf-cat-sub .is-active > a {
  color: var(--dm-primary);
  background: color-mix(in srgb, var(--dm-bg) 88%, var(--dm-forest) 12%);
}

body.dark-mode .nhf-cat-item.is-open > .nhf-cat-toggle::before,
body.dark-mode .nhf-cat-sub .is-active > a::before,
body.dark-mode .nhf-cat-link::before {
  background: var(--dm-primary);
}

body.dark-mode .nhf-cat-item.is-open > .nhf-cat-toggle:hover::before,
body.dark-mode .nhf-cat-sub .is-active > a:hover::before,
body.dark-mode .nhf-cat-link:hover::before {
  background: var(--dm-forest);
}

body.dark-mode .nhf-all a {
  color: color-mix(in srgb, var(--dm-text) 70%, #000 30%);
}

body.dark-mode .nhf-all a:hover {
  color: var(--dm-primary);
}

body.dark-mode .nhf-filters {
  border-top: 1px solid var(--dm-border);
}

body.dark-mode .nhf-filter--attribute + .nhf-filter--toggles {
  border-top: 1px solid var(--dm-border);
}

body.dark-mode .nhf-filter-toggle {
  color: var(--dm-text);
}

body.dark-mode .nhf-filter-toggle:hover,
body.dark-mode .nhf-filter-toggle:focus-visible {
  color: var(--dm-primary);
  background: color-mix(in srgb, var(--dm-bg) 85%, var(--dm-forest) 15%);
}

body.dark-mode .nhf-filters .nhf-filter.is-open > .nhf-filter-toggle {
  color: var(--dm-primary);
  background: color-mix(in srgb, var(--dm-bg) 88%, var(--dm-forest) 12%);
}

body.dark-mode .nhf-filter-body label {
  color: var(--dm-text);
}

body.dark-mode .nhf-filter-body input[type="checkbox"],
body.dark-mode .nhf-filter--toggles input[type="checkbox"] {
  accent-color: var(--dm-primary);
}

body.dark-mode .nhf-price-slider {
  background: linear-gradient(
    to right,
    var(--dm-primary) 0%,
    color-mix(in srgb, var(--dm-primary) 35%, var(--dm-bg) 65%) 100%
  );
}

body.dark-mode .nhf-price-slider::after {
  color: var(--dm-primary);
}

body.dark-mode .nhf-price-values {
  color: color-mix(in srgb, var(--dm-text) 75%, #000 25%);
}

body.dark-mode .nhf-reset {
  color: color-mix(in srgb, var(--dm-text) 70%, #000 30%);
}

body.dark-mode .nhf-reset:hover {
  color: var(--dm-primary);
}

body.dark-mode .nhf-applybar {
  border-top: 1px solid var(--dm-border);
}

body.dark-mode .nhf-applybtn {
  background: var(--dm-primary);
  color: #0f2019;
}

body.dark-mode .nhf-applybtn:hover {
  background: var(--dm-forest);
  color: #fff;
}

body.dark-mode .nhf-price-field {
  border: 1px solid var(--dm-border);
  background: color-mix(in srgb, var(--dm-bg) 90%, var(--dm-forest) 10%);
}

body.dark-mode .nhf-price-field input {
  color: var(--dm-text);
}

body.dark-mode .nhf-filter.is-active-group > .nhf-filter-toggle {
  color: var(--dm-primary);
}

body.dark-mode .nhf-filter.is-active-group > .nhf-filter-toggle .nhf-icon::after {
  background: var(--dm-primary);
}

body.dark-mode .nhf-mobilebar {
  background: var(--dm-bg);
  border-top: 1px solid var(--dm-border);
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.25);
}

body.dark-mode .nhf-mb-btn {
  color: var(--dm-text);
  background: color-mix(in srgb, var(--dm-bg) 92%, white 8%);
  border: 1px solid var(--dm-border);
  box-shadow: none;
}

body.dark-mode .nhf-mb-btn:hover {
  background: color-mix(in srgb, var(--dm-bg) 84%, var(--dm-forest) 16%);
  border-color: color-mix(in srgb, var(--dm-border) 70%, var(--dm-primary) 30%);
}

body.dark-mode .nhf-badge {
  background: var(--dm-primary);
  color: #0f2019;
}

body.dark-mode .nhf-drawer__backdrop {
  background: rgba(0, 0, 0, 0.55);
}

body.dark-mode .nhf-drawer__panel {
  background: var(--dm-bg);
  color: var(--dm-text);
}

body.dark-mode .nhf-drawer__header {
  border-bottom: 1px solid var(--dm-border);
}

body.dark-mode .nhf-drawer__title {
  color: var(--dm-text);
}

body.dark-mode .nhf-drawer__close {
  color: var(--dm-text);
}

body.dark-mode .nhf-drawer__close:hover,
body.dark-mode .nhf-drawer__close:focus-visible {
  background: color-mix(in srgb, var(--dm-bg) 85%, var(--dm-forest) 15%);
  color: var(--dm-primary);
}

body.dark-mode .nhf-drawer__footer {
  border-top: 1px solid var(--dm-border);
  background: var(--dm-bg);
}

body.dark-mode .nhf-drawer__apply {
  background: var(--dm-primary);
  color: #0f2019;
}

body.dark-mode .nhf-drawer__apply:hover {
  background: var(--dm-forest);
  color: #fff;
}

body.dark-mode .nhf-drawer__reset {
  color: var(--dm-text);
  background: color-mix(in srgb, var(--dm-bg) 92%, white 8%);
  border: 1px solid var(--dm-border);
}

body.dark-mode .nhf-drawer__reset:hover,
body.dark-mode .nhf-drawer__reset:focus-visible {
  background: color-mix(in srgb, var(--dm-bg) 84%, var(--dm-forest) 16%);
  border-color: color-mix(in srgb, var(--dm-border) 70%, var(--dm-primary) 30%);
  color: var(--dm-primary);
}