/* Grzybołaz 0.7.8 — production brand and interaction states */
:root{
  --mushroom:#c76545;
  --mushroom-soft:#f2dfd7;
  --focus-ring:#c76545;
}

.brand-mark{
  width:32px;
  height:32px;
  flex:0 0 32px;
  display:grid;
  place-items:center;
  border-radius:9px;
  overflow:hidden;
  box-shadow:0 3px 10px rgba(16,39,30,.14);
}
.brand-mark img{display:block;width:100%;height:100%;object-fit:cover}
.brand{font-weight:900;letter-spacing:-.35px}

:where(button,a,input,select,textarea):focus-visible{
  outline:3px solid var(--focus-ring);
  outline-offset:2px;
}

button:disabled,
[aria-disabled="true"]{
  opacity:.52;
  cursor:not-allowed;
  filter:saturate(.65);
  box-shadow:none!important;
}

.filter-chip.active,
.map-mode-switch button.active,
button[aria-pressed="true"]{
  box-shadow:0 0 0 2px rgba(199,101,69,.22);
}

.notice.warning{border:1px solid rgba(163,69,63,.22)}
.danger-btn:focus-visible{outline-color:var(--danger)}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    scroll-behavior:auto!important;
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    transition-duration:.01ms!important;
  }
}

@media (forced-colors:active){
  .brand-mark{border:1px solid CanvasText}
  :where(button,a,input,select,textarea):focus-visible{outline:2px solid Highlight}
}
