:root {
  --zoofix-accent: #f2bd72;
  --zoofix-accent-dark: #98571c;
  --zoofix-brand-green: #4dbd38;
  --zoofix-green-light: #a9df78;
  --zoofix-black: #111210;
  --zoofix-white: #ffffff;
  --zoofix-line: #d9ddd5;
  --page-gutter: clamp(14px, 2.2vw, 32px);
  --section-space: clamp(44px, 5vw, 76px);
  --section-space-compact: clamp(32px, 3.5vw, 52px);
  --radius-small: 18px;
  --radius-medium: 28px;
  --radius-large: 36px;
  --control-height: 48px;
  --hairline: 1px solid var(--zoofix-black);
  --display-font: "Luckiest Guy", "Arial Black", sans-serif;
  --wordmark-font: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body-font: "Nunito", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  color: var(--zoofix-black);
  background: var(--zoofix-white);
  font-family: var(--body-font);
  font-synthesis: none;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--zoofix-white);
}

body[data-drawer-open="true"] {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--zoofix-black);
  outline-offset: 3px;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  font-size: 14px;
}

.skip-link:focus {
  z-index: 100;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 16px;
  clip: auto;
  background: var(--zoofix-white);
  border: 2px solid var(--zoofix-black);
  font-weight: 700;
}

.wp-site-blocks > header.wp-block-template-part {
	position: sticky;
	z-index: 1000;
	top: 0;
	margin: 0;
}

.header-shell {
	position: relative;
	z-index: auto;
	top: auto;
	display: block;
	width: 100%;
	margin: 0;
}

.zoofix-sourced-icon {
	display: inline-block;
	object-fit: contain;
	filter: brightness(0);
	transition: filter 160ms ease;
}

a:hover .zoofix-sourced-icon,
a:focus-visible .zoofix-sourced-icon {
	filter: brightness(0) invert(1);
}

.utility-bar {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(340px, 1.2fr) minmax(250px, 1fr);
  align-items: center;
  min-height: 44px;
  padding: 0 var(--page-gutter);
  color: var(--zoofix-white);
  background: var(--zoofix-black);
  border-bottom: 1px solid #2d302b;
  font-size: 14px;
  font-weight: 650;
}

.utility-bar svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.utility-bar__hours,
.utility-bar__quiz {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.utility-bar__hours {
  justify-self: start;
}

.utility-bar__quiz {
  justify-self: end;
  min-height: 44px;
  color: var(--zoofix-white);
  font-weight: 800;
  text-decoration: none;
  transition: color 220ms ease;
}

.utility-bar__quiz-label--mobile {
  display: none;
}

.utility-bar__quiz svg {
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.utility-bar__quiz:hover svg {
  transform: translateX(4px);
}

.utility-bar__quiz:hover {
  color: var(--zoofix-green-light);
}

.announcement {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  justify-self: stretch;
}

.announcement__viewport {
  position: relative;
  min-width: 0;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}

.announcement__viewport span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: announcement-in 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.announcement__viewport span[hidden] {
  display: none;
}

.announcement__control {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--zoofix-white);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  place-items: center;
  transition: background-color 200ms ease;
}

.announcement__control:hover {
  background: rgb(169 223 120 / 22%);
}

@keyframes announcement-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(22px, 4vw, 68px);
  min-height: 96px;
  padding: 0 var(--page-gutter);
  border-bottom: 1px solid var(--zoofix-line);
  background: rgb(255 255 255 / 82%);
  box-shadow: 0 12px 34px rgb(17 18 16 / 7%);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--zoofix-black);
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 48px;
  height: 48px;
  overflow: hidden;
  place-items: center;
  background: #000;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--zoofix-brand-green);
}

.brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.04);
}

.brand__word {
  /* Temporary text lockup. Replace with the official logo asset when supplied. */
  font-family: var(--wordmark-font);
  font-size: 31px;
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 1;
}

.brand__word span {
  color: var(--zoofix-brand-green);
}

.primary-nav,
.site-header > .wp-block-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
}

.primary-nav {
  gap: clamp(20px, 2.35vw, 42px);
}

.site-header > .wp-block-navigation > .wp-block-navigation__container {
  gap: clamp(20px, 2.35vw, 42px);
}

.primary-nav a,
.site-header > .wp-block-navigation a {
  position: relative;
  padding: 37px 0 34px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-decoration: none;
}

.primary-nav a::after,
.site-header > .wp-block-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  height: 2px;
  background: var(--zoofix-accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after,
.site-header > .wp-block-navigation a:hover::after,
.site-header > .wp-block-navigation a:focus-visible::after,
.site-header > .wp-block-navigation a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button,
.cart-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  color: var(--zoofix-black);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  overflow: hidden;
  text-decoration: none;
  transition:
    border-color 260ms ease,
    color 260ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.icon-button::before,
.cart-button::before {
  position: absolute;
  z-index: 0;
  inset: -2px;
  background: var(--zoofix-accent);
  clip-path: circle(0% at 16% 120%);
  content: "";
  transition: clip-path 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.icon-button > svg,
.cart-button > * {
  position: relative;
  z-index: 1;
}

.icon-button:hover,
.icon-button[aria-expanded="true"],
.cart-button:hover {
  color: var(--zoofix-black);
  border-color: var(--zoofix-accent);
  transform: translateY(-2px);
}

.icon-button:hover::before,
.icon-button[aria-expanded="true"]::before,
.cart-button:hover::before {
  clip-path: circle(165% at 16% 120%);
}

.icon-button svg,
.cart-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-action-count {
	position: relative;
	z-index: 1;
	display: grid;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	place-items: center;
	color: var(--zoofix-black);
	background: var(--zoofix-action);
	border-radius: 50%;
	font-size: 12px;
	font-weight: 900;
	font-variant-numeric: tabular-nums;
	line-height: 1;
}

.header-action-count[hidden] {
	display: none;
}

.cart-button.has-header-count > svg {
	display: none;
}

.favorites-button [data-header-count="favorites"] {
	display: none !important;
}

.favorites-button.has-favorites {
	color: var(--zoofix-action);
}

.favorites-button.has-favorites > svg {
	fill: currentColor;
}

.cart-button {
  gap: 9px;
  min-width: 46px;
  padding: 0 8px 0 13px;
  border-color: var(--zoofix-black);
  font-size: 16px;
  font-weight: 700;
}

.cart-button strong {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--zoofix-white);
  background: #000;
  border-radius: 50%;
  font-size: 14px;
  transition:
    color 260ms ease,
    background-color 260ms ease;
}

.cart-button:hover strong {
  color: var(--zoofix-black);
  background: var(--zoofix-white);
}

.menu-toggle {
  display: none;
  font-size: 14px;
}

.search-panel {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  padding: 22px var(--page-gutter) 24px;
  color: var(--zoofix-white);
  background: var(--zoofix-black);
  border-bottom: 1px solid #363a34;
  box-shadow: 0 20px 40px rgb(0 0 0 / 35%);
}

.search-form {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.search-form__field {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  min-height: 56px;
  border-bottom: 2px solid #646b5f;
}

.search-form__field:focus-within {
  border-color: var(--zoofix-action);
}

.search-form__icon,
.search-form__close svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.search-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 4px 0 0;
  color: var(--zoofix-white);
  caret-color: var(--zoofix-action);
  background: transparent;
  border: 0;
  border-radius: 0;
  font: 600 18px/1.2 var(--body-font);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.search-form input::-webkit-search-cancel-button {
  display: none;
}

.search-form input::placeholder {
  color: #bbc1b7;
  opacity: 1;
}

.search-form__submit,
.search-form__close {
  min-height: 46px;
  color: var(--zoofix-black);
  background: var(--zoofix-action);
  border: 2px solid var(--zoofix-action);
  border-radius: 0;
  cursor: pointer;
  font: 800 16px/1 var(--body-font);
}

.search-form__submit {
  padding: 0 24px;
}

.search-form__submit:hover {
  color: var(--zoofix-white);
  background: var(--zoofix-action-dark);
  border-color: var(--zoofix-action-dark);
}

.search-form__close {
  display: grid;
  width: 46px;
  padding: 0;
  place-items: center;
  color: var(--zoofix-black);
  background: var(--zoofix-action);
  border-color: var(--zoofix-action);
  border-radius: 50%;
}

.search-form__close:hover {
  color: var(--zoofix-black);
  background: var(--zoofix-action);
  border-color: var(--zoofix-action);
}

.search-live-results {
  position: absolute;
  z-index: 3;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  grid-column: 1 / -1;
  max-height: min(52vh, 420px);
  overflow-y: auto;
  background: #151714;
  border: 2px solid var(--zoofix-action);
}

.search-live-results__item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 9px 12px;
  color: var(--zoofix-white);
  text-decoration: none;
  border-bottom: 1px solid #363a34;
}

.search-live-results__item:last-child {
  border-bottom: 0;
}

.search-live-results__item:hover,
.search-live-results__item:focus-visible {
  background: #242b22;
  outline: none;
}

.search-live-results__item img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: var(--zoofix-white);
}

.search-live-results__copy {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.search-live-results__copy strong {
  overflow: hidden;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-live-results__copy small {
  overflow: hidden;
  color: #bbc1b7;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-live-results__price {
  color: var(--zoofix-action);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.search-live-results__message {
  margin: 0;
  padding: 16px;
  color: #d9ded6;
  font-size: 14px;
  font-weight: 700;
}

.drawer-backdrop {
  position: fixed;
  z-index: 80;
  inset: 0;
  padding: 0;
  visibility: hidden;
  background: rgb(17 18 16 / 46%);
  border: 0;
  cursor: default;
  opacity: 0;
  backdrop-filter: blur(3px);
  transition:
    opacity 360ms ease,
    visibility 360ms ease;
}

.drawer-backdrop[data-open="true"] {
  visibility: visible;
  opacity: 1;
}

.drawer {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100%, 470px);
  height: 100dvh;
  color: var(--zoofix-black);
  background: var(--zoofix-white);
  box-shadow: -24px 0 60px rgb(17 18 16 / 16%);
  visibility: hidden;
  transform: translateX(104%);
  transition:
    transform 460ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 460ms ease;
}

.drawer[data-open="true"] {
  visibility: visible;
  transform: translateX(0);
}

.drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px 30px 24px;
  border-bottom: 1px solid var(--zoofix-line);
}

.drawer__eyebrow {
  margin: 0 0 5px;
  color: #686d65;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.drawer h2,
.drawer h3 {
  margin: 0;
}

.drawer h2 {
  font-family: var(--display-font);
  font-size: 34px;
  letter-spacing: normal;
  line-height: 1;
  text-transform: uppercase;
}

.drawer h3 {
  font-size: 24px;
  letter-spacing: normal;
}

.drawer__close {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--zoofix-black);
  background: #f2f3f0;
  border: 1px solid var(--zoofix-line);
  border-radius: 50%;
  cursor: pointer;
  place-items: center;
  transition:
    background-color 220ms ease,
    transform 220ms ease;
}

.drawer__close:hover {
  background: var(--zoofix-green-light);
  transform: rotate(5deg);
}

.drawer__close svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.drawer__body {
  min-height: 0;
  padding: 30px;
  overflow-y: auto;
}

.drawer__body--empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.drawer__body--empty > p {
  max-width: 32ch;
  margin: 12px 0 24px;
  color: #5d625a;
  font-size: 16px;
  line-height: 1.5;
}

.drawer__empty-icon {
  display: grid;
  width: 94px;
  height: 94px;
  margin-bottom: 22px;
  background: var(--zoofix-green-light);
  border-radius: 50%;
  place-items: center;
}

.drawer__empty-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: var(--zoofix-black);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.drawer__primary,
.drawer__secondary {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid var(--zoofix-black);
  border-radius: 999px;
  background-image: linear-gradient(var(--zoofix-accent), var(--zoofix-accent));
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%;
  font: 800 16px/1 var(--body-font);
  text-decoration: none;
  transition:
    color 260ms ease,
    border-color 260ms ease,
    background-size 480ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.drawer__primary {
  color: var(--zoofix-white);
  background-color: var(--zoofix-black);
  cursor: pointer;
}

.drawer__primary:hover {
  color: var(--zoofix-black);
  border-color: var(--zoofix-accent);
  background-size: 100% 100%;
  transform: translateY(-2px);
}

.drawer__secondary {
  color: var(--zoofix-black);
  background-color: transparent;
}

.drawer__secondary:hover {
  border-color: var(--zoofix-accent);
  background-size: 100% 100%;
  transform: translateY(-2px);
}

.drawer__primary:focus-visible,
.drawer__secondary:focus-visible {
  background-size: 100% 100%;
}

.drawer__note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  margin: 0;
  padding: 18px 30px;
  color: var(--zoofix-white);
  background: var(--zoofix-black);
  border-top: 1px solid #2d302b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.drawer__note::before {
  width: 9px;
  height: 9px;
  background: var(--zoofix-accent);
  border-radius: 50%;
  content: "";
}

.account-form {
  display: grid;
  gap: 20px;
}

.account-form h3 {
  margin-bottom: 4px;
}

.account-form > label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 750;
}

.account-form input[type="email"],
.account-form input[type="password"] {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  color: var(--zoofix-black);
  background: #f7f8f6;
  border: 1px solid #cbd0c7;
  border-radius: 12px;
  font: 500 16px/1 var(--body-font);
}

.account-form input:focus {
  border-color: var(--zoofix-accent-dark);
  outline: 2px solid rgb(242 189 114 / 28%);
}

.account-form__options {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.account-form__options > a {
  font-weight: 750;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition:
    color 220ms ease,
    text-decoration-color 220ms ease;
}

.account-form__options > a:hover {
  color: var(--zoofix-accent-dark);
  text-decoration-color: currentColor;
}

.account-form__remember {
  display: flex;
  gap: 8px;
  align-items: center;
}

.account-form__remember input {
  width: 18px;
  height: 18px;
  accent-color: var(--zoofix-accent);
}

.account-form .drawer__primary {
  width: 100%;
}

.drawer__register {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--zoofix-line);
}

.drawer__register p {
  margin: 0;
  font-size: 16px;
  font-weight: 750;
}

main {
  padding: var(--page-gutter);
}

main.wp-block-group.site-main > * {
  margin-block-start: 0;
}

/* Redesign 2026-07-26: black ecommerce masthead */
.site-header {
  min-height: 80px;
  gap: clamp(22px, 3vw, 52px);
  color: var(--zoofix-white);
  background: #000;
  border-bottom: 1px solid #343731;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.brand {
  color: var(--zoofix-white);
}

.brand__mark {
  width: 44px;
  height: 44px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.brand__word span {
  color: var(--zoofix-action, #63d543);
}

.brand__lockup {
  display: block;
  width: clamp(136px, 13vw, 174px);
  height: auto;
  aspect-ratio: 1110 / 330;
  object-fit: contain;
  clip-path: inset(0 3px 0 0);
}

.header-shell .site-header {
  position: relative;
  top: auto;
  z-index: 1001;
}

.site-header > .wp-block-navigation > .wp-block-navigation__container {
  gap: clamp(18px, 2vw, 34px);
}

.site-header > .wp-block-navigation a {
  color: var(--zoofix-white);
  padding-block: 29px 27px;
  font-size: 15px;
}

.site-header > .wp-block-navigation a::after {
  bottom: 20px;
  background: var(--zoofix-action, #63d543);
}

.header-actions {
  gap: 6px;
}

/* WordPress can retain this WooCommerce block in a database-customized header. */
.site-header > .wp-block-woocommerce-customer-account {
  display: none;
}

.icon-button,
.cart-button {
  min-height: 46px;
  gap: 8px;
  padding: 0 12px;
  color: var(--zoofix-action, #63d543);
  background: transparent;
  border: 1px solid #4b4f47;
  border-radius: 0;
  overflow: visible;
  font-weight: 800;
}

.icon-button {
  min-width: auto;
}

.search-button {
  width: 46px;
  min-width: 46px;
  padding: 0;
  border-radius: 0;
}

.search-button > span {
  display: none;
}

.icon-button::before,
.cart-button::before {
  display: none;
}

.icon-button > span,
.cart-button > span {
  position: relative;
  z-index: 1;
  color: var(--zoofix-white);
}

.icon-button:hover,
.icon-button[aria-expanded="true"],
.cart-button:hover {
  color: var(--zoofix-black);
  background: var(--zoofix-action, #63d543);
  border-color: var(--zoofix-action, #63d543);
  transform: none;
}

.icon-button:hover > span,
.icon-button[aria-expanded="true"] > span,
.cart-button:hover > span {
  color: var(--zoofix-black);
}

.site-header button:focus-visible,
.site-header a:focus-visible {
  outline-color: var(--zoofix-action, #63d543);
}

.search-panel {
  color: var(--zoofix-white);
  background: var(--zoofix-black);
  border-bottom-color: #363a34;
  box-shadow: 0 20px 40px rgb(0 0 0 / 35%);
}

.search-form__field:focus-within {
  border-color: var(--zoofix-action, #63d543);
}

.search-form__submit:hover,
.search-form__submit:focus-visible {
  color: var(--zoofix-black);
  background: var(--zoofix-action, #63d543);
  border-color: var(--zoofix-black);
}

@media (max-width: 1120px) {
  .site-header {
    gap: 18px;
  }

  .site-header > .wp-block-navigation > .wp-block-navigation__container {
    gap: 17px;
  }

  .site-header > .wp-block-navigation a {
    font-size: 14px;
  }

  .icon-button > span {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto 44px minmax(0, 1fr);
    gap: 6px;
    min-height: 68px;
    padding-inline: var(--page-gutter);
  }

  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--zoofix-action, #63d543);
    background: transparent;
    border: 1px solid #4b4f47;
    border-radius: 0;
  }

  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] {
    color: var(--zoofix-black);
    background: var(--zoofix-action, #63d543);
    border-color: var(--zoofix-action, #63d543);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-header > .wp-block-navigation {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    z-index: 1000;
    display: none;
    align-content: start;
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
    padding: 14px var(--page-gutter) 22px;
    color: var(--zoofix-white);
    background: #000;
    border-bottom: 1px solid #4b4f47;
  }

  .site-header > .wp-block-navigation[data-open="true"] {
    display: flex;
  }

  .site-header > .wp-block-navigation > .wp-block-navigation__container {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .site-header > .wp-block-navigation a {
    display: flex;
    min-height: 50px;
    align-items: center;
    padding: 0;
    color: var(--zoofix-white);
    background: transparent;
    border: 0;
    border-bottom: 1px solid #3f423c;
    font: 700 16px/1.2 var(--body-font);
  }

  .site-header > .wp-block-navigation a::after {
    display: none;
  }

  .header-actions {
    grid-column: 3;
    justify-self: end;
  }

  .icon-button,
  .cart-button {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
  }

  .cart-button span {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: auto 44px minmax(0, 1fr);
    grid-template-rows: 1fr;
    gap: 6px;
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    gap: 7px;
  }

  .menu-toggle {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    margin-left: 0;
  }

  .site-header > .wp-block-navigation {
    top: 68px;
    max-height: calc(100dvh - 68px);
  }

  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .brand__word {
    font-size: 23px;
  }

  .brand__lockup {
    width: clamp(72px, 25vw, 108px);
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    gap: 0;
  }

  .search-panel {
    padding: 14px 12px 16px;
  }

  .search-form {
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 9px;
  }

  .search-form__field {
    grid-column: 1;
    grid-row: 1;
    min-height: 48px;
  }

  .search-form__icon {
    grid-column: 1;
  }

  .search-form input {
    min-height: 48px;
    font-size: 16px;
  }

  .search-form__submit {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-height: 52px;
  }

  .search-form__close {
    grid-column: 2;
    grid-row: 1;
    width: 48px;
    min-height: 48px;
  }

  .search-live-results {
    position: static;
    grid-column: 1 / -1;
    grid-row: 3;
    max-height: min(42vh, 320px);
    margin-top: 0;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding-inline: 4px;
  }

  .brand__lockup {
    width: 72px;
  }
}

/* Count replaces the pictogram, but not the adjacent action label. */
.icon-button > .header-action-count,
.cart-button > .header-action-count {
	display: grid;
	color: var(--zoofix-black);
}

.icon-button > .header-action-count[hidden],
.cart-button > .header-action-count[hidden] {
	display: none;
}
