.pb-scope {
  --pb-color-canvas: #fffaf6;
  --pb-color-surface: #fffdfb;
  --pb-color-surface-muted: #f5f7fa;
  --pb-color-ink: #172743;
  --pb-color-ink-muted: #56657a;
  --pb-color-primary: #0f5fab;
  --pb-color-primary-hover: #0b4f90;
  --pb-color-primary-soft: #eaf3fb;
  --pb-color-border: #dce3eb;
  --pb-color-control-border: #7889a0;
  --pb-color-focus: #0b579e;
  --pb-color-success: #16734a;
  --pb-color-success-soft: #e8f6ef;
  --pb-color-warning: #8a5800;
  --pb-color-warning-soft: #fff3d6;
  --pb-color-emergency: #b42318;
  --pb-color-emergency-hover: #921b13;
  --pb-color-emergency-active: #74170f;
  --pb-color-emergency-soft: #fff0ee;
  --pb-color-on-emergency: #ffffff;
  --pb-color-danger: var(--pb-color-emergency);
  --pb-color-danger-hover: var(--pb-color-emergency-hover);
  --pb-color-danger-soft: var(--pb-color-emergency-soft);
  --pb-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --pb-font-size-body: 1rem;
  --pb-font-size-secondary: 0.875rem;
  --pb-font-size-label: 0.875rem;
  --pb-font-size-metadata: 0.75rem;
  --pb-font-size-eyebrow: 0.8125rem;
  --pb-line-height-body: 1.5;
  --pb-line-height-compact: 1.35;
  --pb-line-height-eyebrow: 1.3;
  --pb-font-weight-regular: 400;
  --pb-font-weight-medium: 500;
  --pb-font-weight-semibold: 600;
  --pb-letter-spacing-eyebrow: 0.075em;
  --pb-space-1: 0.25rem;
  --pb-space-2: 0.5rem;
  --pb-space-3: 0.75rem;
  --pb-space-4: 1rem;
  --pb-space-6: 1.5rem;
  --pb-space-8: 2rem;
  --pb-space-12: 3rem;
  --pb-space-16: 4rem;
  --pb-radius-sm: 0.75rem;
  --pb-radius-md: 1rem;
  --pb-radius-lg: 1.25rem;
  --pb-shadow-card: 0 0.5rem 1.5rem rgba(23, 39, 67, 0.08);
  --pb-shadow-menu: 0 0.75rem 2rem rgba(23, 39, 67, 0.14);
  --pb-control-height: 3rem;
  --pb-target-min: 2.75rem;
  --pb-content-max: 75rem;
  --pb-header-height: 3.875rem;
  --pb-primary-nav-height: 4.25rem;
}

.pb-page {
  min-width: 20rem;
  margin: 0;
  color: var(--pb-color-ink);
  background: var(--pb-color-canvas);
  font-family: var(--pb-font-family);
  font-size: var(--pb-font-size-body);
  font-weight: var(--pb-font-weight-regular);
  line-height: var(--pb-line-height-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.pb-skip-link {
  position: fixed;
  z-index: 10000;
  inset-block-start: max(var(--pb-space-2), env(safe-area-inset-top));
  inset-inline-start: max(var(--pb-space-2), env(safe-area-inset-left));
  min-height: var(--pb-target-min);
  display: inline-flex;
  align-items: center;
  padding: var(--pb-space-2) var(--pb-space-4);
  border: 2px solid var(--pb-color-focus);
  border-radius: var(--pb-radius-sm);
  background: var(--pb-color-surface);
  color: var(--pb-color-ink);
  font-weight: var(--pb-font-weight-semibold);
  text-decoration: none;
  transform: translateY(calc(-100% - var(--pb-space-6)));
  transition: transform 160ms ease;
}

.pb-skip-link:focus,
.pb-skip-link:focus-visible {
  outline: 3px solid var(--pb-color-focus);
  outline-offset: 3px;
  transform: translateY(0);
}

.pb-scope .leaflet-control-zoom a {
  box-sizing: border-box;
  width: var(--pb-target-min) !important;
  min-width: var(--pb-target-min);
  height: var(--pb-target-min) !important;
  min-height: var(--pb-target-min);
  line-height: var(--pb-target-min) !important;
}

.pb-scope .leaflet-container a.leaflet-popup-close-button {
  box-sizing: border-box;
  width: var(--pb-target-min) !important;
  min-width: var(--pb-target-min);
  height: var(--pb-target-min) !important;
  min-height: var(--pb-target-min);
  display: grid;
  padding: 0;
  place-items: center;
  font-size: 1.5rem;
  line-height: 1;
}

.pb-container {
  width: min(100% - (2 * var(--pb-space-4)), var(--pb-content-max));
  margin-inline: auto;
}

.pb-stack {
  display: flex;
  flex-direction: column;
  gap: var(--pb-space-4);
}

.pb-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--pb-space-3);
}

.pb-heading {
  margin: 0;
  color: var(--pb-color-ink);
  font-weight: var(--pb-font-weight-medium);
  line-height: 1.2;
  text-wrap: balance;
}

.pb-text-secondary {
  color: var(--pb-color-ink-muted);
  font-size: var(--pb-font-size-secondary);
}

.pb-label {
  color: var(--pb-color-ink-muted);
  font-size: var(--pb-font-size-label);
  font-weight: var(--pb-font-weight-medium);
  line-height: var(--pb-line-height-compact);
}

.pb-metadata {
  color: var(--pb-color-ink-muted);
  font-size: var(--pb-font-size-metadata);
  line-height: var(--pb-line-height-compact);
}

.pb-eyebrow {
  margin: 0 0 var(--pb-space-2);
  color: var(--pb-color-primary);
  font-size: var(--pb-font-size-eyebrow);
  font-weight: var(--pb-font-weight-semibold);
  letter-spacing: var(--pb-letter-spacing-eyebrow);
  line-height: var(--pb-line-height-eyebrow);
  text-transform: uppercase;
}

.pb-card {
  padding: var(--pb-space-6);
  border: 1px solid var(--pb-color-border);
  border-radius: var(--pb-radius-lg);
  background: var(--pb-color-surface);
  box-shadow: var(--pb-shadow-card);
}

.pb-button {
  min-height: var(--pb-control-height);
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--pb-space-2);
  padding: var(--pb-space-3) var(--pb-space-6);
  border: 1px solid transparent;
  border-radius: var(--pb-radius-sm);
  background: var(--pb-color-primary);
  color: #ffffff;
  font: inherit;
  font-weight: var(--pb-font-weight-medium);
  line-height: var(--pb-line-height-compact);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.pb-button:hover {
  background: var(--pb-color-primary-hover);
}

.pb-button--secondary {
  border-color: var(--pb-color-control-border);
  background: var(--pb-color-surface);
  color: var(--pb-color-ink);
}

.pb-button--secondary:hover {
  border-color: var(--pb-color-primary);
  background: var(--pb-color-primary-soft);
  color: var(--pb-color-primary);
}

.pb-button--danger {
  background: var(--pb-color-danger);
}

.pb-button--danger:hover {
  background: var(--pb-color-danger-hover);
}

.pb-button--emergency {
  border-color: var(--pb-color-emergency);
  background: var(--pb-color-emergency);
  color: var(--pb-color-on-emergency);
}

.pb-button--emergency:hover {
  border-color: var(--pb-color-emergency-hover);
  background: var(--pb-color-emergency-hover);
}

.pb-button--emergency:active {
  border-color: var(--pb-color-emergency-active);
  background: var(--pb-color-emergency-active);
}

.pb-button--emergency-secondary {
  border-color: var(--pb-color-emergency);
  background: var(--pb-color-emergency-soft);
  color: var(--pb-color-emergency);
}

.pb-button--emergency-secondary:hover {
  border-color: var(--pb-color-emergency-hover);
  background: var(--pb-color-emergency);
  color: var(--pb-color-on-emergency);
}

.pb-button--emergency-secondary:active {
  border-color: var(--pb-color-emergency-active);
  background: var(--pb-color-emergency-active);
  color: var(--pb-color-on-emergency);
}

.pb-button--quiet {
  border-color: transparent;
  background: transparent;
  color: var(--pb-color-primary);
}

.pb-button--quiet:hover {
  background: var(--pb-color-primary-soft);
  color: var(--pb-color-primary-hover);
}

.pb-button--full {
  width: 100%;
}

.pb-button:disabled,
.pb-button[aria-disabled="true"] {
  border-color: var(--pb-color-border);
  background: var(--pb-color-surface-muted);
  color: var(--pb-color-ink-muted);
  cursor: not-allowed;
  opacity: 0.72;
}

.pb-button[aria-disabled="true"] {
  pointer-events: none;
}

.pb-field {
  display: flex;
  flex-direction: column;
  gap: var(--pb-space-2);
}

.pb-field__label {
  color: var(--pb-color-ink);
  font-size: var(--pb-font-size-secondary);
  font-weight: var(--pb-font-weight-medium);
}

.pb-control {
  width: 100%;
  min-height: var(--pb-control-height);
  box-sizing: border-box;
  padding: var(--pb-space-3) var(--pb-space-4);
  border: 1px solid var(--pb-color-control-border);
  border-radius: var(--pb-radius-sm);
  background-color: var(--pb-color-surface);
  color: var(--pb-color-ink);
  font: inherit;
  line-height: var(--pb-line-height-compact);
}

.pb-control::placeholder {
  color: var(--pb-color-ink-muted);
  opacity: 1;
}

.pb-control:hover {
  border-color: var(--pb-color-ink-muted);
}

.pb-control:disabled {
  background: var(--pb-color-surface-muted);
  color: var(--pb-color-ink-muted);
  cursor: not-allowed;
  opacity: 0.78;
}

.pb-control[aria-invalid="true"] {
  border-color: var(--pb-color-danger);
  background: var(--pb-color-danger-soft);
}

.pb-control--select {
  padding-inline-end: var(--pb-space-12);
}

.pb-control--textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.pb-field__hint,
.pb-field__error {
  margin: 0;
  font-size: var(--pb-font-size-label);
  line-height: var(--pb-line-height-compact);
}

.pb-field__hint {
  color: var(--pb-color-ink-muted);
}

.pb-field__error {
  color: var(--pb-color-danger);
  font-weight: var(--pb-font-weight-medium);
}

.pb-alert {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--pb-space-3);
  padding: var(--pb-space-4);
  border: 1px solid var(--pb-color-border);
  border-radius: var(--pb-radius-md);
  background: var(--pb-color-surface);
  overflow-wrap: anywhere;
}

.pb-alert--success {
  border-color: var(--pb-color-success);
  background: var(--pb-color-success-soft);
}

.pb-alert--warning {
  border-color: var(--pb-color-warning);
  background: var(--pb-color-warning-soft);
}

.pb-alert--danger {
  border-color: var(--pb-color-danger);
  background: var(--pb-color-danger-soft);
}

.pb-header {
  --pb-header-brand-width: 7.5rem;
  --pb-header-brand-label-size: 0.68rem;
  --pb-header-content-max: var(--pb-content-max);
  position: relative;
  z-index: 20;
  min-width: 20rem;
  min-height: var(--pb-header-height);
  box-sizing: border-box;
  border-bottom: 1px solid var(--pb-color-border);
  background: var(--pb-color-surface);
  color: var(--pb-color-ink);
  font-family: var(--pb-font-family);
}

.pb-header--with-primary-nav {
  z-index: 3000;
}

.pb-header__inner {
  width: min(100% - (2 * var(--pb-space-3)), var(--pb-content-max));
  min-height: var(--pb-header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: var(--pb-space-2);
}

.pb-brand {
  width: var(--pb-header-brand-width);
  min-width: var(--pb-header-brand-width);
  min-height: var(--pb-target-min);
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 var(--pb-header-brand-width);
  border-radius: var(--pb-radius-sm);
  background: var(--pb-color-primary-soft);
  box-shadow: inset 0 -3px 0 var(--pb-color-primary);
  text-decoration: none;
}

.pb-brand__wordmark {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: var(--pb-target-min);
  display: block;
  object-fit: contain;
}

.pb-brand.pb-brand--symbol-lockup {
  width: auto;
  min-width: 0;
  flex: 0 0 auto;
  justify-content: flex-start;
  gap: var(--pb-space-2);
  background: transparent;
  box-shadow: none;
}

.pb-brand__app-symbol {
  width: 2.75rem;
  height: 2.75rem;
  display: block;
  flex: 0 0 2.75rem;
  object-fit: contain;
}

.pb-brand__wordmark-capsule {
  width: 7.5rem;
  height: 2.75rem;
  min-height: 2.75rem;
  max-height: 2.75rem;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--pb-radius-sm);
  background: var(--pb-color-primary-soft);
  box-shadow: inset 0 -3px 0 var(--pb-color-primary);
}

.pb-brand--symbol-lockup .pb-brand__wordmark {
  width: 100%;
}

@media (max-width: 27rem) {
  .pb-header__inner,
  .pb-brand.pb-brand--symbol-lockup {
    gap: var(--pb-space-1);
  }

  .pb-brand__app-symbol {
    width: 2.75rem;
    height: 2.75rem;
    flex-basis: 2.75rem;
  }

  .pb-brand__wordmark-capsule {
    width: 5.5rem;
  }
}

.pb-logo-capsule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--pb-radius-sm);
  background: var(--pb-color-primary-soft);
  box-shadow: inset 0 -3px 0 var(--pb-color-primary);
  line-height: 0;
}

.pb-store-brand {
  --pb-store-brand-width: 7.5rem;
  --pb-store-brand-label-size: 0.68rem;
  min-width: 0;
  min-height: var(--pb-target-min);
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: var(--pb-radius-sm);
  color: var(--pb-color-primary);
  text-decoration: none;
}

.pb-store-brand__capsule {
  width: var(--pb-store-brand-width);
  max-width: 100%;
  height: var(--pb-target-min);
  min-height: var(--pb-target-min);
  max-height: var(--pb-target-min);
  box-sizing: border-box;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.1rem 0.35rem 0.22rem;
  border-radius: var(--pb-radius-sm);
  background: var(--pb-color-primary-soft);
  box-shadow: inset 0 -3px 0 var(--pb-color-primary);
}

.pb-store-brand__wordmark {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(var(--pb-target-min) - 0.32rem);
  display: block;
  object-fit: contain;
}

.pb-store-brand__label {
  position: absolute;
  inset-inline-end: 0.42rem;
  inset-block-end: 0.28rem;
  color: var(--pb-color-primary);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", var(--pb-font-family);
  font-size: var(--pb-store-brand-label-size);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  background: linear-gradient(100deg, #ff5a16 4%, var(--pb-color-primary) 96%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pb-store-brand--header {
  --pb-store-brand-width: var(--pb-header-brand-width);
  --pb-store-brand-label-size: var(--pb-header-brand-label-size);
}

.pb-store-brand--compact {
  --pb-store-brand-width: 7.25rem;
  margin-block-end: var(--pb-space-3);
}

.pb-store-brand--hero {
  --pb-store-brand-width: clamp(14.375rem, 25vw, 21.25rem);
  --pb-store-brand-label-size: clamp(1rem, 2.1vw, 1.55rem);
}

.pb-store-brand:hover .pb-store-brand__capsule,
.pb-store-brand[aria-current="page"] .pb-store-brand__capsule {
  box-shadow: inset 0 -3px 0 var(--pb-color-primary), var(--pb-shadow-card);
}

.pb-store-brand:focus-visible {
  outline: 3px solid var(--pb-color-focus);
  outline-offset: 3px;
}

.pb-discover-brand {
  --pb-discover-brand-width: 7.5rem;
  --pb-discover-brand-label-size: 0.68rem;
  min-width: 0;
  min-height: var(--pb-target-min);
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: var(--pb-radius-sm);
  color: var(--pb-color-primary);
  text-decoration: none;
}

.pb-discover-brand__capsule {
  width: var(--pb-discover-brand-width);
  max-width: 100%;
  height: var(--pb-target-min);
  min-height: var(--pb-target-min);
  max-height: var(--pb-target-min);
  box-sizing: border-box;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.1rem 0.35rem 0.22rem;
  border-radius: var(--pb-radius-sm);
  background: var(--pb-color-primary-soft);
  box-shadow: inset 0 -3px 0 var(--pb-color-primary);
}

.pb-discover-brand__wordmark {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(var(--pb-target-min) - 0.32rem);
  display: block;
  object-fit: contain;
}

.pb-discover-brand__label {
  position: absolute;
  inset-inline-end: 0.42rem;
  inset-block-end: 0.28rem;
  color: var(--pb-color-primary);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", var(--pb-font-family);
  font-size: var(--pb-discover-brand-label-size);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  background: linear-gradient(100deg, #ff5a16 4%, var(--pb-color-primary) 96%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pb-discover-brand--header {
  --pb-discover-brand-width: var(--pb-header-brand-width);
  --pb-discover-brand-label-size: var(--pb-header-brand-label-size);
}

.pb-discover-brand:hover .pb-discover-brand__capsule,
.pb-discover-brand[aria-current="page"] .pb-discover-brand__capsule {
  box-shadow: inset 0 -3px 0 var(--pb-color-primary), var(--pb-shadow-card);
}

.pb-discover-brand:focus-visible {
  outline: 3px solid var(--pb-color-focus);
  outline-offset: 3px;
}

.pb-header__section {
  min-width: 0;
  display: none;
  overflow: hidden;
  color: var(--pb-color-ink-muted);
  font-size: var(--pb-font-size-secondary);
  font-weight: var(--pb-font-weight-medium);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pb-header__menu {
  position: relative;
  flex: 0 0 auto;
  margin-inline-start: auto;
}

.pb-header__login-shortcut,
.pb-header__login-shortcut:visited {
  min-height: var(--pb-target-min);
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-start: auto;
  padding: var(--pb-space-2) var(--pb-space-3);
  border: 1px solid rgba(15, 95, 171, 0.36);
  border-radius: var(--pb-radius-sm);
  background: var(--pb-color-primary-soft);
  color: var(--pb-color-primary);
  font-size: var(--pb-font-size-secondary);
  font-weight: var(--pb-font-weight-semibold);
  text-decoration: none;
  white-space: nowrap;
}

.pb-header__login-shortcut + .pb-header__menu {
  margin-inline-start: 0;
}

.pb-header__login-shortcut:hover,
.pb-header__login-shortcut[aria-current="page"] {
  border-color: var(--pb-color-primary);
  background: var(--pb-color-primary);
  color: #ffffff;
}

.pb-header__menu--static {
  position: static;
  display: block;
  flex: 1 1 auto;
  margin-inline-start: auto;
  width: 100%;
}

.pb-header__menu--static .pb-header__nav {
  position: static;
  display: flex;
  flex-direction: column;
  width: min(100vw - (2 * var(--pb-space-3)), var(--pb-content-max));
  max-width: none;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  gap: var(--pb-space-1);
}

.pb-header__menu--static .pb-header__link {
  width: 100%;
}

.pb-header__menu-trigger {
  min-width: var(--pb-target-min);
  min-height: var(--pb-target-min);
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--pb-space-2) var(--pb-space-3);
  border: 1px solid var(--pb-color-control-border);
  border-radius: var(--pb-radius-sm);
  background: var(--pb-color-surface);
  color: var(--pb-color-ink);
  font-size: var(--pb-font-size-secondary);
  font-weight: var(--pb-font-weight-medium);
  cursor: pointer;
  list-style: none;
}

.pb-header__menu-trigger::-webkit-details-marker {
  display: none;
}

.pb-header__nav {
  min-width: min(17rem, calc(100vw - (2 * var(--pb-space-3))));
  max-width: calc(100vw - (2 * var(--pb-space-3)));
  box-sizing: border-box;
  position: absolute;
  inset-block-start: calc(100% + var(--pb-space-2));
  inset-inline-end: 0;
  display: none;
  flex-direction: column;
  gap: var(--pb-space-1);
  padding: var(--pb-space-2);
  border: 1px solid var(--pb-color-border);
  border-radius: var(--pb-radius-md);
  background: var(--pb-color-surface);
  box-shadow: var(--pb-shadow-menu);
}

.pb-header__menu[open] .pb-header__nav {
  display: flex;
}

.pb-header__product-menu {
  position: relative;
  flex: 0 0 auto;
}

.pb-header__product-trigger {
  min-height: var(--pb-target-min);
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: var(--pb-space-1);
  padding: var(--pb-space-2) var(--pb-space-3);
  border-radius: var(--pb-radius-sm);
  color: var(--pb-color-ink);
  font-size: var(--pb-font-size-secondary);
  font-weight: var(--pb-font-weight-medium);
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.pb-header__product-trigger::-webkit-details-marker {
  display: none;
}

.pb-header__product-trigger::marker {
  content: "";
}

.pb-header__product-trigger-icon {
  display: inline-block;
  color: var(--pb-color-ink-muted);
  font-size: 1.05em;
  line-height: 1;
  transition: transform 160ms ease;
}

.pb-header__product-menu[open] .pb-header__product-trigger-icon {
  transform: rotate(180deg);
}

.pb-header__product-trigger:hover,
.pb-header__product-menu--current .pb-header__product-trigger {
  background: var(--pb-color-primary-soft);
  color: var(--pb-color-primary);
}

.pb-header__product-menu--current .pb-header__product-trigger-icon {
  color: currentColor;
}

.pb-header__product-panel {
  min-width: 16.75rem;
  box-sizing: border-box;
  position: absolute;
  inset-block-start: calc(100% + var(--pb-space-2));
  inset-inline-start: 0;
  z-index: 20;
  display: none;
  flex-direction: column;
  gap: var(--pb-space-1);
  padding: var(--pb-space-2);
  border: 1px solid var(--pb-color-border);
  border-radius: var(--pb-radius-md);
  background: var(--pb-color-surface);
  box-shadow: var(--pb-shadow-menu);
}

.pb-header__product-menu[open] .pb-header__product-panel {
  display: flex;
}

.pb-header__product-link {
  width: 100%;
}

.pb-header__link {
  min-height: var(--pb-target-min);
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  padding: var(--pb-space-2) var(--pb-space-3);
  border-radius: var(--pb-radius-sm);
  color: var(--pb-color-ink);
  font-size: var(--pb-font-size-secondary);
  font-weight: var(--pb-font-weight-medium);
  text-decoration: none;
  white-space: nowrap;
}

.pb-header__link:hover {
  background: var(--pb-color-primary-soft);
  color: var(--pb-color-primary);
}

.pb-header__link[aria-current="page"] {
  background: var(--pb-color-primary-soft);
  color: var(--pb-color-primary);
  box-shadow: inset 0 -3px 0 var(--pb-color-primary);
}

.pb-header__link--primary {
  background: var(--pb-color-primary);
  color: #ffffff;
}

.pb-header__link--primary:visited {
  color: #ffffff;
}

.pb-header__link--primary:hover {
  background: var(--pb-color-primary-hover);
  color: #ffffff;
}

.pb-header__link--primary[aria-current="page"] {
  background: var(--pb-color-primary);
  color: #ffffff;
  box-shadow: inset 0 -3px 0 var(--pb-color-primary-hover);
}

.pb-header__link--dashboard,
.pb-header__link--dashboard:visited {
  background: var(--pb-color-primary);
  color: #ffffff;
}

.pb-header__link--dashboard:hover,
.pb-header__link--dashboard[aria-current="page"] {
  background: var(--pb-color-primary-hover);
  color: #ffffff;
  box-shadow: inset 0 -3px 0 var(--pb-color-primary-hover);
}

.pb-header__link--cart,
.pb-header__link--cart:visited {
  border: 1px solid rgba(15, 95, 171, 0.22);
  background: var(--pb-color-primary-soft);
  color: var(--pb-color-primary);
}

.pb-header__link--cart {
  gap: var(--pb-space-1);
}

.pb-header__link--cart:hover,
.pb-header__link--cart[aria-current="page"] {
  border-color: var(--pb-color-primary);
  background: var(--pb-color-primary);
  color: #ffffff;
  box-shadow: inset 0 -3px 0 var(--pb-color-primary-hover);
}

.pb-header__cart-count {
  min-width: 1.2rem;
  min-height: 1.2rem;
  box-sizing: border-box;
  display: inline-grid;
  place-items: center;
  padding-inline: 0.25rem;
  border-radius: 999px;
  background: var(--pb-color-primary);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: var(--pb-font-weight-semibold);
  line-height: 1;
}

.pb-header__link--cart:hover .pb-header__cart-count,
.pb-header__link--cart[aria-current="page"] .pb-header__cart-count {
  background: #ffffff;
  color: var(--pb-color-primary);
}

.pb-header__link--utility {
  color: var(--pb-color-ink-muted);
  font-weight: var(--pb-font-weight-regular);
}

.pb-header__logout-form {
  margin: 0;
}

.pb-header__logout-button {
  width: 100%;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.pb-header__account {
  min-width: var(--pb-target-min);
  min-height: var(--pb-target-min);
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: var(--pb-space-2);
  padding: 0;
  border: 1px solid var(--pb-color-border);
  border-radius: 999px;
  color: var(--pb-color-ink);
  background: var(--pb-color-surface);
  font-size: var(--pb-font-size-secondary);
  font-weight: var(--pb-font-weight-medium);
  text-decoration: none;
}

.pb-header__account:hover,
.pb-header__account[aria-current="page"] {
  border-color: var(--pb-color-primary);
  color: var(--pb-color-primary);
  background: var(--pb-color-primary-soft);
}

.pb-header__account-avatar {
  width: var(--pb-target-min);
  height: var(--pb-target-min);
  display: grid;
  flex: 0 0 var(--pb-target-min);
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--pb-color-primary);
}

.pb-header__account-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pb-header__account-label--full,
.pb-header__account-label--short {
  display: none;
}

.pb-primary-nav {
  width: min(100%, var(--pb-header-content-max));
  min-height: 3.5rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: var(--pb-space-1);
  padding: var(--pb-space-1) var(--pb-space-3);
  border-block-start: 1px solid var(--pb-color-border);
  background: var(--pb-color-surface);
}

.pb-primary-nav__link {
  min-width: 0;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--pb-space-2);
  padding: var(--pb-space-2) var(--pb-space-3);
  border: 1px solid transparent;
  border-radius: var(--pb-radius-sm);
  color: var(--pb-color-ink-muted);
  font-size: var(--pb-font-size-secondary);
  font-weight: var(--pb-font-weight-medium);
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.pb-primary-nav__link:hover {
  color: var(--pb-color-primary);
  background: var(--pb-color-primary-soft);
}

.pb-primary-nav__link[aria-current] {
  border-color: rgba(15, 95, 171, 0.24);
  color: var(--pb-color-primary);
  background: var(--pb-color-primary-soft);
  box-shadow: inset 0 -3px 0 var(--pb-color-primary);
}

.pb-primary-nav__link--emergency {
  border-color: rgba(180, 35, 24, 0.38);
  color: var(--pb-color-emergency);
  background: var(--pb-color-emergency-soft);
}

.pb-primary-nav__link--emergency:hover,
.pb-primary-nav__link--emergency[aria-current] {
  border-color: var(--pb-color-emergency);
  color: var(--pb-color-on-emergency);
  background: var(--pb-color-emergency);
  box-shadow: inset 0 -3px 0 var(--pb-color-emergency-active);
}

.pb-primary-nav__icon {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  flex: 0 0 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pb-primary-nav__icon--filled {
  fill: currentColor;
  stroke: none;
}

.pb-page-path {
  min-width: 0;
  max-width: 100%;
  width: max-content;
  overflow: hidden;
  border: 1px solid var(--pb-color-border);
  border-radius: 999px;
  color: var(--pb-color-ink-muted);
  background: var(--pb-color-surface);
  box-shadow: 0 0.25rem 0.75rem rgba(23, 39, 67, 0.06);
  font-size: var(--pb-font-size-secondary);
  line-height: 1.2;
}

.pb-page-path ol {
  min-width: 0;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 var(--pb-space-3);
  list-style: none;
}

.pb-page-path li {
  min-width: 0;
  display: flex;
  align-items: center;
}

.pb-page-path li:not(:last-child) {
  flex: 0 0 auto;
}

.pb-page-path li:last-child {
  flex: 1 1 auto;
}

.pb-page-path li:not(:last-child)::after {
  content: "›";
  flex: 0 0 auto;
  margin-inline: var(--pb-space-2);
  color: var(--pb-color-border);
  font-weight: var(--pb-font-weight-semibold);
}

.pb-page-path a,
.pb-page-path span[aria-current="page"] {
  min-width: 0;
  min-height: var(--pb-target-min);
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pb-page-path a {
  border-radius: var(--pb-radius-sm);
  color: var(--pb-color-primary);
  font-weight: var(--pb-font-weight-medium);
  text-decoration: none;
}

.pb-page-path a:hover {
  color: var(--pb-color-primary-hover);
  text-decoration: underline;
  text-underline-offset: var(--pb-space-1);
}

.pb-page-path span[aria-current="page"] {
  color: var(--pb-color-ink);
  font-weight: var(--pb-font-weight-semibold);
}

@media (max-width: 63.99rem) {
  .pb-page:has(.pb-primary-nav) {
    padding-block-end: calc(var(--pb-primary-nav-height) + env(safe-area-inset-bottom));
  }

  .pb-primary-nav {
    position: fixed;
    z-index: 1800;
    inset-inline: 0;
    inset-block-end: 0;
    width: 100%;
    min-height: var(--pb-primary-nav-height);
    padding: var(--pb-space-1) max(var(--pb-space-1), env(safe-area-inset-right))
      max(var(--pb-space-1), env(safe-area-inset-bottom))
      max(var(--pb-space-1), env(safe-area-inset-left));
    border-block-start: 1px solid var(--pb-color-border);
    box-shadow: 0 -0.5rem 1.5rem rgba(23, 39, 67, 0.12);
  }

  .pb-primary-nav__link {
    min-height: 3.75rem;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.35rem 0.15rem;
    border-radius: 0.7rem;
    font-size: var(--pb-font-size-metadata);
  }

  .pb-primary-nav__icon {
    width: 1.35rem;
    height: 1.35rem;
    flex-basis: 1.35rem;
  }

  .pb-page:has(.pb-primary-nav) .vol-sticky-actions {
    bottom: calc(var(--pb-primary-nav-height) + env(safe-area-inset-bottom));
  }

  .pb-page:has(.pb-primary-nav) .map-card.map-is-expanded {
    inset-block-end: calc(
      var(--pb-primary-nav-height) + env(safe-area-inset-bottom) + var(--pb-space-2)
    );
  }
}

/* Shared footer used by every full-page surface. */
.pb-public-footer {
  border-block-start: 1px solid var(--pb-color-border);
  background: var(--pb-color-surface);
  color: var(--pb-color-ink-muted);
}

.pb-public-footer__inner {
  display: grid;
  justify-items: start;
  gap: var(--pb-space-4);
  padding-block: var(--pb-space-6) max(var(--pb-space-6), env(safe-area-inset-bottom));
}

.pb-public-footer__brand {
  min-height: var(--pb-target-min);
  display: inline-flex;
  align-items: center;
  border-radius: var(--pb-radius-sm);
}

.pb-public-footer__brand img {
  width: 7.5rem;
  height: auto;
  display: block;
}

.pb-public-footer p {
  margin: 0;
  font-size: var(--pb-font-size-secondary);
}

.pb-public-footer__copyright {
  min-width: 0;
}

.pb-public-footer__meta {
  display: grid;
  justify-items: start;
  gap: var(--pb-space-3);
}

.pb-public-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--pb-space-2) var(--pb-space-4);
}

.pb-public-footer nav a {
  min-height: var(--pb-target-min);
  display: inline-flex;
  align-items: center;
  color: var(--pb-color-ink-muted);
  font-size: var(--pb-font-size-secondary);
  text-decoration: none;
}

.pb-public-footer nav a:hover {
  color: var(--pb-color-primary);
  text-decoration: underline;
}

/* Shared confirmation dialog created by site-ui.js. */
.pb-scope.patimi-message-open {
  overflow: hidden;
}

.pb-scope .patimi-message-layer {
  position: fixed;
  z-index: 20000;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100dvh;
  max-height: none;
  box-sizing: border-box;
  visibility: hidden;
  display: grid;
  margin: 0;
  padding: max(1.125rem, env(safe-area-inset-top)) max(1.125rem, env(safe-area-inset-right)) max(1.125rem, env(safe-area-inset-bottom)) max(1.125rem, env(safe-area-inset-left));
  place-items: center;
  border: 0;
  color: inherit;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.pb-scope .patimi-message-layer::backdrop {
  background: transparent;
}

.pb-scope .patimi-message-layer.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.pb-scope .patimi-message-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 39, 67, 0.58);
  backdrop-filter: blur(8px);
}

.pb-scope .patimi-message-card {
  position: relative;
  width: min(100%, 27.5rem);
  overflow: hidden;
  padding: clamp(1.5rem, 5vw, 2rem);
  border: 1px solid var(--pb-color-border);
  border-radius: var(--pb-radius-lg);
  color: var(--pb-color-ink);
  background: var(--pb-color-surface);
  box-shadow: var(--pb-shadow-menu);
  font-family: var(--pb-font-family);
  text-align: center;
  transform: translateY(1rem);
  transition: transform 180ms ease;
}

.pb-scope .patimi-message-layer.is-open .patimi-message-card {
  transform: translateY(0);
}

.pb-scope .patimi-message-close {
  position: absolute;
  top: var(--pb-space-3);
  right: var(--pb-space-3);
  width: var(--pb-target-min);
  height: var(--pb-target-min);
  display: grid;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--pb-color-ink-muted);
  background: var(--pb-color-primary-soft);
  cursor: pointer;
  font: inherit;
  font-size: 1.25rem;
}

.pb-scope .patimi-message-logo {
  width: min(11.875rem, 62%);
  margin: 0 auto var(--pb-space-6);
}

.pb-scope .patimi-message-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pb-scope .patimi-message-card h2 {
  margin: 0;
  color: var(--pb-color-ink);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: var(--pb-font-weight-medium);
  line-height: 1.12;
}

.pb-scope .patimi-message-card > #patimi-message-copy {
  margin: var(--pb-space-3) auto 0;
  color: var(--pb-color-ink-muted);
  line-height: var(--pb-line-height-body);
}

.pb-scope .patimi-message-actions {
  display: grid;
  margin-top: var(--pb-space-6);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--pb-space-3);
}

.pb-scope .patimi-message-card:not(.is-confirm) .patimi-message-actions {
  grid-template-columns: minmax(0, 1fr);
}

.pb-scope .patimi-message-button {
  min-height: var(--pb-control-height);
  padding: var(--pb-space-3) var(--pb-space-4);
  border-radius: var(--pb-radius-sm);
  cursor: pointer;
  font: inherit;
  font-weight: var(--pb-font-weight-medium);
}

.pb-scope .patimi-message-cancel {
  border: 1px solid var(--pb-color-control-border);
  color: var(--pb-color-ink);
  background: var(--pb-color-surface);
}

.pb-scope .patimi-message-confirm {
  border: 1px solid var(--pb-color-primary);
  color: #ffffff;
  background: var(--pb-color-primary);
}

.pb-scope .patimi-message-button:focus-visible,
.pb-scope .patimi-message-close:focus-visible {
  outline: 3px solid var(--pb-color-focus);
  outline-offset: 3px;
}

.pb-scope .patimi-message-cancel[hidden] {
  display: none;
}

.pb-header__emergency {
  min-height: var(--pb-control-height);
  box-sizing: border-box;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--pb-space-2);
  padding: var(--pb-space-2) var(--pb-space-3);
  border: 1px solid var(--pb-color-emergency);
  border-radius: var(--pb-radius-sm);
  background: var(--pb-color-emergency);
  color: var(--pb-color-on-emergency);
  font-size: var(--pb-font-size-secondary);
  font-weight: var(--pb-font-weight-medium);
  line-height: var(--pb-line-height-compact);
  text-decoration: none;
  white-space: nowrap;
}

.pb-header__emergency:visited {
  color: var(--pb-color-on-emergency);
}

.pb-header__emergency:hover {
  border-color: var(--pb-color-emergency-hover);
  background: var(--pb-color-emergency-hover);
}

.pb-header__emergency:active {
  border-color: var(--pb-color-emergency-active);
  background: var(--pb-color-emergency-active);
}

/*
 * The legacy class is not emitted by the shared header any more, but keeping it
 * on the same semantic token set prevents an older page fragment from reviving
 * a second red/gradient for the Acil Veteriner entry action.
 */
.pb-scope .emergency-header-action {
  border-color: var(--pb-color-emergency);
  background: var(--pb-color-emergency);
  color: var(--pb-color-on-emergency);
  box-shadow: none;
}

.pb-scope .emergency-header-action:hover {
  border-color: var(--pb-color-emergency-hover);
  background: var(--pb-color-emergency-hover);
}

.pb-scope .emergency-header-action:active {
  border-color: var(--pb-color-emergency-active);
  background: var(--pb-color-emergency-active);
}

.pb-scope .emergency-header-action[aria-disabled="true"],
.pb-scope .animal-emergency-link[aria-disabled="true"] {
  border-color: var(--pb-color-border);
  color: var(--pb-color-ink-muted);
  background: var(--pb-color-surface-muted);
  cursor: not-allowed;
  opacity: 0.72;
  pointer-events: none;
}

.pb-header__emergency-icon {
  font-size: 1.25rem;
  font-weight: var(--pb-font-weight-medium);
  line-height: 1;
}

.pb-header__emergency-label--short {
  display: none;
}

@media (max-width: 27rem) {
  .pb-header--with-account .pb-brand__wordmark-capsule {
    display: none;
  }

  .pb-header__emergency-label--full {
    display: none;
  }

  .pb-header__emergency-label--short {
    display: inline;
  }
}

@media (min-width: 43.8125rem) {
  .pb-header__account {
    max-width: 9rem;
    padding-inline-end: var(--pb-space-3);
  }

  .pb-header__account-label--short {
    display: inline;
  }
}

.pb-scope :where(a[href], button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--pb-color-focus);
  outline-offset: 3px;
}

/* Legacy form rules use a more specific `outline: none`; keep the shared
   keyboard indicator authoritative on every scoped form control. */
.pb-scope .field-group :is(input, select, textarea):focus-visible,
.pb-scope .filter-field :is(input, select, textarea):focus-visible {
  outline: 3px solid var(--pb-color-focus);
  outline-offset: 3px;
}

.pb-button:focus-visible,
.pb-brand:focus-visible,
.pb-header__menu-trigger:focus-visible,
.pb-header__login-shortcut:focus-visible,
.pb-header__product-trigger:focus-visible,
.pb-header__link:focus-visible,
.pb-header__logout-button:focus-visible,
.pb-header__account:focus-visible,
.pb-header__emergency:focus-visible,
.pb-primary-nav__link:focus-visible,
.pb-scope .emergency-header-action:focus-visible,
.pb-scope .animal-emergency-link:focus-visible,
.pb-control:focus-visible {
  outline: 3px solid var(--pb-color-focus);
  outline-offset: 3px;
}

@media (max-width: 21.875rem) {
  .pb-header__login-shortcut {
    padding-inline: var(--pb-space-2);
    font-size: var(--pb-font-size-metadata);
  }

  .pb-header__emergency {
    padding-inline: var(--pb-space-2);
  }

  .pb-header__emergency-label--full {
    display: none;
  }

  .pb-header__emergency-label--short {
    display: inline;
  }
}

@media (max-width: 89.99rem) {
  .pb-header__link--login {
    display: none;
  }

  .pb-header__product-menu {
    width: 100%;
  }

  .pb-header__product-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .pb-header__product-panel {
    min-width: 0;
    position: static;
    width: 100%;
    margin-block-start: var(--pb-space-1);
    border-color: var(--pb-color-border);
    background: var(--pb-color-surface-muted);
    box-shadow: none;
  }

  .pb-header__nav {
    max-height: calc(100dvh - var(--pb-header-height) - var(--pb-space-4));
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .pb-header--with-primary-nav .pb-header__nav {
    max-height: calc(
      100dvh - var(--pb-header-height) - var(--pb-primary-nav-height) -
        env(safe-area-inset-bottom) - var(--pb-space-4)
    );
  }
}

@media (min-width: 90rem) {
  .pb-scope {
    --pb-header-height: 4.25rem;
  }

  .pb-header {
    --pb-header-brand-width: 8.25rem;
    /* The primary navigation has two branded destinations plus cart controls. */
    --pb-header-content-max: 82rem;
  }

  .pb-container {
    width: min(100% - (2 * var(--pb-space-8)), var(--pb-content-max));
  }

  .pb-header__inner {
    width: min(100% - (2 * var(--pb-space-6)), var(--pb-header-content-max));
    gap: var(--pb-space-3);
  }

  .pb-brand__wordmark {
    height: auto;
    max-width: 100%;
  }

  .pb-header__menu {
    min-width: 0;
    display: block;
    flex: 1 1 auto;
    margin-inline-start: auto;
  }

  .pb-header__login-shortcut {
    display: none;
  }

  .pb-header__login-shortcut + .pb-header__menu {
    margin-inline-start: auto;
  }

  .pb-header__menu-trigger {
    display: none;
  }

  .pb-header__nav {
    width: 100%;
    min-width: 0;
    max-width: none;
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: var(--pb-space-1);
    margin-inline-start: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .pb-header__menu--static .pb-header__link {
    width: auto;
  }

  .pb-header__account {
    max-width: 15rem;
  }

  .pb-header__account-label--short {
    display: none;
  }

  .pb-header__account-label--full {
    display: inline;
  }

  .pb-primary-nav {
    padding-inline: var(--pb-space-6);
  }

  .pb-primary-nav__link {
    max-width: 9rem;
    justify-self: center;
    width: 100%;
  }
}

@media (min-width: 90rem) and (max-width: 99.99rem) {
  .pb-header {
    --pb-header-brand-width: 6.25rem;
    --pb-header-brand-label-size: 0.56rem;
  }

  .pb-header__nav {
    gap: 0;
  }

  .pb-header__link {
    padding-inline: var(--pb-space-2);
    font-size: var(--pb-font-size-metadata);
  }

  .pb-store-brand--header {
    --pb-store-brand-width: var(--pb-header-brand-width);
    --pb-store-brand-label-size: var(--pb-header-brand-label-size);
  }

  .pb-discover-brand--header {
    --pb-discover-brand-width: var(--pb-header-brand-width);
    --pb-discover-brand-label-size: var(--pb-header-brand-label-size);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pb-skip-link,
  .pb-button,
  .pb-header__link,
  .pb-header__product-trigger,
  .pb-control {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
  }
}

@media (min-width: 48rem) {
  .pb-public-footer__inner {
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
  }

  .pb-public-footer__meta {
    width: 100%;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }

  .pb-public-footer__copyright {
    white-space: nowrap;
    text-align: end;
  }

  .pb-public-footer__inner > nav {
    width: 100%;
  }
}

@media (min-width: 75rem) {
  .pb-public-footer__inner > nav {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}

@media (forced-colors: active) {
  .pb-button,
  .pb-card,
  .pb-alert,
  .pb-control,
  .pb-header,
  .pb-header__menu-trigger,
  .pb-header__product-trigger,
  .pb-header__nav,
  .pb-header__link,
  .pb-header__logout-button,
  .pb-header__emergency,
  .pb-discover-brand {
    border-color: CanvasText;
    forced-color-adjust: auto;
  }

  .pb-brand[aria-current="page"],
  .pb-discover-brand[aria-current="page"],
  .pb-header__link[aria-current="page"] {
    border-block-end: 3px solid Highlight;
  }

  .pb-button:focus-visible,
  .pb-skip-link:focus-visible,
  .pb-brand:focus-visible,
  .pb-discover-brand:focus-visible,
  .pb-header__menu-trigger:focus-visible,
  .pb-header__link:focus-visible,
  .pb-header__logout-button:focus-visible,
  .pb-header__emergency:focus-visible,
  .pb-control:focus-visible {
    outline: 3px solid Highlight;
    outline-offset: 3px;
    box-shadow: none;
  }
}
