/* Shared landing-page system */
.breadcrumbs {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 8px;
  padding: 0 var(--page-gutter);
  border-bottom: var(--hairline);
  color: #62675f;
  font-size: 14px;
  font-weight: 700;
}

.breadcrumbs a {
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: text-decoration-color 220ms ease;
}

.breadcrumbs a:hover {
  text-decoration-color: currentColor;
}

.breadcrumbs svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.animal-landing {
  overflow: clip;
  background: var(--zoofix-white);
}

.animal-landing > section + section {
  margin-top: clamp(16px, 1.8vw, 28px);
}

.animal-landing > .breadcrumbs + section {
  margin-top: clamp(16px, 1.8vw, 28px);
}

.animal-hero,
.cat-hero,
.dog-offer,
.reference-products,
.cat-series,
.product-check,
.landing-help {
  overflow: hidden;
  border-radius: var(--radius-large);
}

.animal-landing--dog > .animal-hero {
  border-radius: 0;
}

.animal-landing--cat > .cat-hero {
  border-top: 0;
}

.animal-hero {
  position: relative;
  display: grid;
  min-height: min(720px, calc(100svh - 116px));
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  overflow: hidden;
  border: var(--hairline);
}

.animal-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-space) clamp(32px, 5vw, 82px) calc(var(--section-space) + 64px) var(--page-gutter);
  background: var(--zoofix-white);
}

.animal-hero__copy h1 {
  max-width: 900px;
  margin: 20px 0 26px;
  font-family: var(--display-font);
  font-size: clamp(58px, 7.2vw, 118px);
  letter-spacing: normal;
  line-height: 0.86;
  text-transform: uppercase;
}

.animal-hero__copy > p:not(.section-eyebrow) {
  max-width: 620px;
  margin: 0 0 34px;
  color: #565b53;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 650;
  line-height: 1.48;
}

.action-pill {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: var(--control-height);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  padding: 0 17px 0 22px;
  border: 2px solid var(--zoofix-black);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.action-pill:hover {
  transform: translateY(-2px);
}

.action-pill:hover::before,
.action-pill:focus-visible::before {
  clip-path: circle(170% at 12% 120%);
}

.action-pill--dark {
  color: var(--zoofix-white);
  background: var(--zoofix-black);
}

.action-pill--dark::before {
  background: var(--zoofix-brand-green);
}

.action-pill--light {
  color: var(--zoofix-black);
  background: var(--zoofix-white);
  border-color: var(--zoofix-white);
}

.action-pill svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 220ms ease;
}

.action-pill:hover svg {
  transform: translateX(3px);
}

.animal-hero__product {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  align-content: center;
  padding: clamp(36px, 5vw, 74px);
  background: var(--zoofix-accent);
  border-left: var(--hairline);
}

.animal-hero__product::before {
  position: absolute;
  z-index: 0;
  right: -0.04em;
  bottom: -0.08em;
  color: rgb(255 255 255 / 42%);
  font-family: var(--display-font);
  font-size: clamp(150px, 17vw, 270px);
  letter-spacing: normal;
  line-height: 0.75;
  content: "PIES";
  pointer-events: none;
}

.animal-hero__product > p {
  position: absolute;
  top: 32px;
  left: 32px;
  margin: 0;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.animal-hero__product img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: var(--hairline);
}

.animal-hero__product > div {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  padding: 20px 0 0;
  font-size: 14px;
  font-weight: 800;
}

.animal-hero__product strong {
  text-align: center;
}

.choice-table,
.dog-offer,
.reference-products {
  padding: var(--section-space) var(--page-gutter);
}

.choice-table__heading,
.dog-offer__heading,
.reference-products__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(36px, 7vw, 120px);
  align-items: end;
  margin-bottom: clamp(42px, 5vw, 72px);
}

.choice-table__heading h2,
.dog-offer__heading h2,
.reference-products__heading h2,
.product-check h2,
.landing-help h2 {
  max-width: 940px;
  margin: 18px 0 0;
  font-family: var(--display-font);
  font-size: clamp(48px, 6vw, 94px);
  letter-spacing: normal;
  line-height: 0.9;
  text-transform: uppercase;
}

.choice-table__heading > p,
.dog-offer__heading > p,
.reference-products__heading > p {
  margin: 0;
  color: #565b53;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 650;
  line-height: 1.5;
}

.choice-table__grid {
  display: grid;
  min-height: 600px;
  grid-template-columns: 1.05fr 1.05fr 0.72fr;
  overflow: hidden;
  border: var(--hairline);
  border-radius: var(--radius-large);
}

.choice-table__item {
  position: relative;
  isolation: isolate;
  display: flex;
  min-width: 0;
  align-items: flex-start;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(28px, 3.2vw, 52px);
  color: var(--zoofix-black);
  text-decoration: none;
}

.choice-table__item + .choice-table__item {
  border-left: var(--hairline);
}

.choice-table__item::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--zoofix-accent);
  clip-path: circle(0% at 16% 112%);
  content: "";
  transition: clip-path 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.choice-table__item:hover::before,
.choice-table__item:focus-visible::before {
  clip-path: circle(155% at 16% 112%);
}

.choice-table__item--dry {
  color: var(--zoofix-white);
  background: var(--zoofix-black);
}

.choice-table__item--dry::before {
  background: var(--zoofix-brand-green);
}

.choice-table__item--wet {
  background: var(--zoofix-green-light);
}

.choice-table__item--wet::before {
  background: var(--zoofix-white);
}

.choice-table__item--treats {
  background: var(--zoofix-white);
}

.choice-table__number {
  margin-bottom: 22px;
  color: var(--zoofix-accent);
  font-family: var(--display-font);
  font-size: clamp(28px, 3vw, 46px);
}

.choice-table__item--wet .choice-table__number,
.choice-table__item--treats .choice-table__number {
  color: var(--zoofix-accent-dark);
}

.choice-table__label {
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.choice-table__item > strong {
  margin: auto 0 24px;
  font-family: var(--display-font);
  font-size: clamp(52px, 5.7vw, 92px);
  letter-spacing: normal;
  line-height: 0.82;
  text-transform: uppercase;
}

.choice-table__item--treats > strong {
  font-size: clamp(42px, 4.3vw, 68px);
  overflow-wrap: anywhere;
}

.choice-table__details {
  min-height: 48px;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.45;
}

.choice-table__link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid currentColor;
  font-size: 15px;
  font-weight: 850;
}

.choice-table__link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 220ms ease;
}

.choice-table__item:hover .choice-table__link svg {
  transform: translateX(4px);
}

.dog-offer {
  color: var(--zoofix-white);
  background: var(--zoofix-black);
}

.dog-offer .section-eyebrow {
  color: var(--zoofix-accent);
}

.dog-offer__heading > p {
  color: #c6cbc2;
}

.dog-offer__board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  color: var(--zoofix-black);
  background: var(--zoofix-white);
  border-radius: var(--radius-large);
}

.dog-offer__column {
  display: grid;
  grid-template-rows: auto repeat(2, minmax(190px, auto));
}

.dog-offer__column + .dog-offer__column {
  border-left: var(--hairline);
}

.dog-offer__column > p {
  margin: 0;
  padding: 24px 30px;
  background: var(--zoofix-white);
  border-bottom: var(--hairline);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dog-offer__column--wet > p {
  background: var(--zoofix-accent);
}

.dog-offer__column a {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 34px 30px;
  color: var(--zoofix-black);
  background: var(--zoofix-white);
  border-bottom: var(--hairline);
  text-decoration: none;
  transition: background 320ms ease;
}

.dog-offer__column a:last-child {
  border-bottom: 0;
}

.dog-offer__column a:hover {
  background: var(--zoofix-green-light);
}

.dog-offer__column--wet a:hover {
  background: var(--zoofix-accent);
}

.dog-offer__column a > span {
  color: var(--zoofix-accent-dark);
  font-family: var(--display-font);
  font-size: 28px;
}

.dog-offer__column a strong {
  font-family: var(--display-font);
  font-size: clamp(30px, 3vw, 48px);
  letter-spacing: normal;
  line-height: 0.96;
  text-transform: uppercase;
}

.dog-offer__column a em {
  grid-column: 2;
  font-size: 14px;
  font-style: normal;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
  margin-top: -6px;
  transition: text-decoration-color 220ms ease;
}

.dog-offer__column a:hover em {
  text-decoration-color: currentColor;
}

.reference-products {
  background: var(--zoofix-green-light);
}

.reference-products__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
}

.catalog-product-card {
  display: grid;
  min-width: 0;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--zoofix-white);
  border: var(--hairline);
  border-radius: var(--radius-medium);
}

.catalog-product-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  padding: clamp(14px, 2vw, 24px);
  background: #f7f8f5;
  border-bottom: var(--hairline);
}

.catalog-product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-product-card:hover .catalog-product-card__media img {
  transform: scale(1.035);
}

.catalog-product-card__media > span {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  color: var(--zoofix-white);
  background: var(--zoofix-black);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
}

.catalog-product-card__body {
  display: grid;
  grid-template-rows: auto minmax(2em, auto) auto;
  padding: clamp(24px, 3vw, 42px);
}

.catalog-product-card__body > p {
  margin: 0 0 12px;
  color: var(--zoofix-accent-dark);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-product-card__body h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(34px, 4vw, 62px);
  letter-spacing: normal;
  line-height: 0.95;
  text-transform: uppercase;
}

.catalog-product-card__body h3 a {
  text-decoration: none;
}

.catalog-product-card__body > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  align-self: end;
  margin-top: 34px;
  padding-top: 20px;
  border-top: var(--hairline);
}

.catalog-product-card__body strong {
  font-size: 20px;
}

.catalog-product-card__body > div > a {
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--zoofix-white);
  background: var(--zoofix-black);
  border-radius: 50%;
  transition:
    color 260ms ease,
    background 260ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-product-card__body > div > a:hover {
  color: var(--zoofix-black);
  background: var(--zoofix-accent);
  transform: translateX(3px);
}

.catalog-product-card__body svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.product-check {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  color: var(--zoofix-white);
  background: var(--zoofix-black);
  border-top: 1px solid #555952;
  border-bottom: 1px solid #555952;
}

.product-check__lead {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-space) clamp(32px, 6vw, 92px) var(--section-space) var(--page-gutter);
  border-right: 1px solid #555952;
}

.product-check__lead .section-eyebrow {
  color: var(--zoofix-accent);
}

.product-check__lead > p:not(.section-eyebrow) {
  max-width: 650px;
  margin: 28px 0 34px;
  color: #c6cbc2;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.55;
}

.product-check__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-check__list li {
  display: grid;
  min-height: 220px;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 38px clamp(28px, 5vw, 72px);
  border-bottom: 1px solid #555952;
}

.product-check__list li:last-child {
  border-bottom: 0;
}

.product-check__list li > span {
  color: var(--zoofix-accent);
  font-family: var(--display-font);
  font-size: 30px;
}

.product-check__list h3 {
  margin: 0 0 10px;
  font-family: var(--display-font);
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: normal;
  line-height: 1;
  text-transform: uppercase;
}

.product-check__list p {
  max-width: 680px;
  margin: 0;
  color: #c6cbc2;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.5;
}

.landing-help {
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1.1fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
  padding: var(--section-space) var(--page-gutter);
  background: var(--zoofix-accent);
}

.landing-help h2 {
  margin-top: 0;
}

.landing-help > div > p {
  margin: 0 0 32px;
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 650;
  line-height: 1.52;
}

/* Cat landing page */
.cat-hero {
  display: grid;
  min-height: min(760px, calc(100svh - 116px));
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  overflow: hidden;
  color: var(--zoofix-white);
  background: var(--zoofix-black);
  border: var(--hairline);
}

.cat-hero__copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-space) clamp(34px, 5vw, 82px) var(--section-space) var(--page-gutter);
}

.cat-hero__copy .section-eyebrow {
  color: var(--zoofix-accent);
}

.cat-hero__copy h1 {
  margin: 20px 0 28px;
  font-family: var(--display-font);
  font-size: clamp(60px, 7.2vw, 116px);
  letter-spacing: normal;
  line-height: 0.86;
  text-transform: uppercase;
}

.cat-hero__copy > p:not(.section-eyebrow) {
  max-width: 610px;
  margin: 0 0 34px;
  color: #c6cbc2;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 650;
  line-height: 1.5;
}

.cat-hero__products {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 30px);
  align-items: center;
  overflow: hidden;
  padding: clamp(56px, 7vw, 104px) clamp(26px, 4vw, 64px);
  color: var(--zoofix-black);
  background: var(--zoofix-green-light);
  border-left: var(--hairline);
}

.cat-hero__products::before {
  position: absolute;
  right: -0.04em;
  bottom: -0.12em;
  color: rgb(255 255 255 / 50%);
  font-family: var(--display-font);
  font-size: clamp(180px, 23vw, 360px);
  letter-spacing: normal;
  line-height: 0.72;
  content: "KOT";
}

.cat-hero__products figure {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  background: var(--zoofix-white);
  border: var(--hairline);
  border-radius: var(--radius-small);
}

.cat-hero__products figure:nth-child(2) {
  transform: translateY(72px);
}

.cat-hero__products img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: var(--hairline);
}

.cat-hero__products figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  font-size: 14px;
  font-weight: 850;
}

.cat-choice,
.reference-products--cat {
  padding: var(--section-space) var(--page-gutter);
}

.cat-choice__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(36px, 7vw, 120px);
  align-items: end;
  margin-bottom: clamp(42px, 5vw, 72px);
}

.cat-choice__heading h2,
.cat-series h2 {
  margin: 18px 0 0;
  font-family: var(--display-font);
  font-size: clamp(52px, 7vw, 108px);
  letter-spacing: normal;
  line-height: 0.86;
  text-transform: uppercase;
}

.cat-choice__heading > p {
  margin: 0;
  color: #565b53;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 650;
  line-height: 1.5;
}

.cat-choice__list {
  overflow: hidden;
  border: var(--hairline);
  border-radius: var(--radius-large);
}

.cat-choice__row {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 180px;
  grid-template-columns: 76px minmax(260px, 0.95fr) minmax(280px, 1fr) auto;
  gap: clamp(20px, 3vw, 54px);
  align-items: center;
  padding: 30px clamp(24px, 3vw, 44px);
  color: var(--zoofix-black);
  text-decoration: none;
}

.cat-choice__row + .cat-choice__row {
  border-top: var(--hairline);
}

.cat-choice__row::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--zoofix-white);
  clip-path: inset(0 100% 0 0);
  content: "";
  transition: clip-path 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cat-choice__row:hover::before,
.cat-choice__row:focus-visible::before {
  clip-path: inset(0);
}

.cat-choice__row--dark {
  color: var(--zoofix-white);
  background: var(--zoofix-black);
}

.cat-choice__row--dark::before {
  background: var(--zoofix-brand-green);
}

.cat-choice__row--orange {
  background: var(--zoofix-accent);
}

.cat-choice__row--green {
  background: var(--zoofix-green-light);
}

.cat-choice__number {
  color: var(--zoofix-accent);
  font-family: var(--display-font);
  font-size: 30px;
}

.cat-choice__row:not(.cat-choice__row--dark) .cat-choice__number {
  color: var(--zoofix-accent-dark);
}

.cat-choice__row > strong {
  font-family: var(--display-font);
  font-size: clamp(34px, 4vw, 62px);
  letter-spacing: normal;
  line-height: 0.95;
  text-transform: uppercase;
}

.cat-choice__detail {
  max-width: 420px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.cat-choice__action {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.cat-choice__action svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 220ms ease;
}

.cat-choice__row:hover .cat-choice__action svg {
  transform: translateX(4px);
}

.cat-series {
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(140px, 0.28fr) minmax(0, 1.12fr) minmax(300px, 0.6fr);
  min-width: 0;
  color: var(--zoofix-white);
  background: var(--zoofix-black);
  border-top: 1px solid #555952;
  border-bottom: 1px solid #555952;
}

.cat-series__index {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px, 4vw, 58px) var(--page-gutter);
  border-right: 1px solid #555952;
}

.cat-series__index span {
  color: var(--zoofix-accent);
  font-family: var(--display-font);
  font-size: clamp(46px, 5vw, 76px);
}

.cat-series__index p {
  margin: 0;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.07em;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  transform: rotate(180deg);
}

.cat-series__main {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-space) clamp(34px, 6vw, 96px);
}

.cat-series__main .section-eyebrow {
  color: var(--zoofix-accent);
}

.cat-series__main > p:not(.section-eyebrow) {
  max-width: 730px;
  margin: 30px 0 36px;
  color: #c6cbc2;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.55;
}

.cat-series__note {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(32px, 4vw, 56px);
  color: var(--zoofix-black);
  background: var(--zoofix-accent);
  border-left: var(--hairline);
}

.cat-series__note p {
  margin: 0;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cat-series__note strong {
  max-width: 100%;
  font-family: var(--display-font);
  font-size: clamp(26px, 2vw, 32px);
  letter-spacing: normal;
  line-height: 0.98;
  overflow-wrap: normal;
  text-transform: uppercase;
}

.reference-products--cat {
  background: var(--zoofix-white);
}

.reference-products--cat .reference-products__grid {
  padding: clamp(18px, 2vw, 30px);
  background: var(--zoofix-green-light);
  border-radius: var(--radius-large);
}

.product-check--cat .product-check__lead {
  color: var(--zoofix-black);
  background: var(--zoofix-green-light);
}

.product-check--cat .product-check__lead .section-eyebrow {
  color: var(--zoofix-accent-dark);
}

.product-check--cat .product-check__lead > p:not(.section-eyebrow) {
  color: #3f433d;
}

.product-check--cat .product-check__lead .action-pill--light {
  color: var(--zoofix-white);
  background: var(--zoofix-black);
  border-color: var(--zoofix-black);
}

.landing-help--cat {
  background: var(--zoofix-green-light);
}

@media (max-width: 1000px) {
  .animal-hero {
    min-height: 0;
    grid-template-columns: 1fr 0.9fr;
  }

  .choice-table__grid {
    min-height: 520px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .choice-table__item {
    padding: 28px 24px;
  }

  .dog-offer__column a {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .dog-offer__column a em {
    grid-column: 2;
  }

  .landing-help {
    grid-template-columns: 0.45fr 1.2fr;
  }

  .landing-help > div {
    grid-column: 2;
  }

  .cat-hero {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .cat-choice__row {
    grid-template-columns: 58px minmax(220px, 0.9fr) minmax(220px, 1fr);
  }

  .cat-choice__action {
    grid-column: 2 / -1;
  }

  .cat-series {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .cat-series__note {
    min-height: 280px;
    grid-column: 1 / -1;
    border-top: var(--hairline);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .animal-hero,
  .cat-hero,
  .dog-offer,
  .reference-products,
  .cat-series,
  .product-check,
  .landing-help {
    border-radius: var(--radius-medium);
  }

  .breadcrumbs {
    min-height: 46px;
  }

  .breadcrumbs a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .animal-hero {
    grid-template-columns: 1fr;
  }

  .animal-hero__copy {
    min-height: 560px;
    padding: 72px 18px 110px;
  }

  .animal-hero__copy h1 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .animal-hero__product {
    padding: 64px 18px 28px;
    border-top: var(--hairline);
    border-left: 0;
  }

  .animal-hero__product > p {
    top: 22px;
    left: 18px;
  }

  .animal-hero__product > div {
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
  }

  .animal-hero__product strong {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: left;
  }

  .animal-hero__product::before {
    font-size: 39vw;
  }

  .choice-table,
  .dog-offer,
  .reference-products {
    padding: 72px 18px;
  }

  .choice-table__heading,
  .dog-offer__heading,
  .reference-products__heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 38px;
  }

  .choice-table__heading h2,
  .dog-offer__heading h2,
  .reference-products__heading h2,
  .product-check h2,
  .landing-help h2 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .choice-table__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: var(--radius-medium);
  }

  .choice-table__item {
    min-height: 410px;
    padding: 28px 24px;
  }

  .choice-table__item + .choice-table__item {
    border-top: var(--hairline);
    border-left: 0;
  }

  .choice-table__item > strong,
  .choice-table__item--treats > strong {
    font-size: clamp(58px, 18vw, 78px);
  }

  .dog-offer__board {
    grid-template-columns: 1fr;
    border-radius: var(--radius-medium);
  }

  .dog-offer__column + .dog-offer__column {
    border-top: var(--hairline);
    border-left: 0;
  }

  .dog-offer__column {
    grid-template-rows: auto;
  }

  .dog-offer__column a {
    min-height: 150px;
    padding: 28px 22px;
  }

  .reference-products__grid {
    grid-template-columns: 1fr;
  }

  .catalog-product-card__media {
    aspect-ratio: 4 / 3;
  }

  .product-check {
    grid-template-columns: 1fr;
  }

  .product-check__lead {
    padding: 72px 18px;
    border-right: 0;
    border-bottom: 1px solid #555952;
  }

  .product-check__list li {
    min-height: 0;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 34px 18px;
  }

  .product-check__list h3 {
    font-size: 28px;
  }

  .landing-help {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 72px 18px;
  }

  .landing-help > * {
    min-width: 0;
  }

  .landing-help h2 {
    overflow-wrap: anywhere;
    font-size: clamp(34px, 9.8vw, 40px);
  }

  .landing-help > div {
    grid-column: auto;
  }

  .cat-hero {
    grid-template-columns: 1fr;
  }

  .cat-hero__copy {
    min-height: 600px;
    padding: 72px 18px;
  }

  .cat-hero__copy h1 {
    font-size: clamp(54px, 16vw, 78px);
  }

  .cat-hero__products {
    min-height: 560px;
    gap: 12px;
    padding: 54px 18px 86px;
    border-top: var(--hairline);
    border-left: 0;
  }

  .cat-hero__products figure:nth-child(2) {
    transform: translateY(50px);
  }

  .cat-hero__products figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
  }

  .cat-choice,
  .reference-products--cat {
    padding: 72px 18px;
  }

  .cat-choice__heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 38px;
  }

  .cat-choice__heading h2,
  .cat-series h2 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .cat-choice__list {
    border-radius: var(--radius-medium);
  }

  .cat-choice__row {
    min-height: 320px;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 18px;
    align-content: center;
    padding: 30px 22px;
  }

  .cat-choice__row > strong,
  .cat-choice__detail,
  .cat-choice__action {
    grid-column: 2;
  }

  .cat-choice__row > strong {
    font-size: clamp(38px, 12vw, 54px);
  }

  .cat-choice__action {
    width: 100%;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid currentColor;
  }

  .cat-series {
    grid-template-columns: 1fr;
  }

  .cat-series__index {
    min-height: 100px;
    align-items: center;
    flex-direction: row;
    padding: 24px 18px;
    border-right: 0;
    border-bottom: 1px solid #555952;
  }

  .cat-series__index p {
    writing-mode: initial;
    transform: none;
  }

  .cat-series__main {
    padding: 72px 18px;
  }

  .cat-series__note {
    min-height: 330px;
    padding: 36px 22px;
  }

  .reference-products--cat .reference-products__grid {
    padding: 12px;
    border-radius: var(--radius-medium);
  }
}

@media (max-width: 360px) {
  .cat-series__note strong {
    font-size: 24px;
  }

  .animal-hero__copy {
    min-height: 540px;
  }

  .animal-hero__copy h1 {
    font-size: 49px;
  }

  .choice-table__item {
    min-height: 390px;
    padding-inline: 20px;
  }

  .dog-offer__column a {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .dog-offer__column a strong {
    font-size: 28px;
    overflow-wrap: anywhere;
  }

  .catalog-product-card__body h3 {
    font-size: 34px;
  }

  .product-check__list li {
    grid-template-columns: 40px minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .product-film__viewport {
    overflow-x: auto;
  }

  .product-film__track {
    animation: none;
  }

  .product-film__group[aria-hidden="true"] {
    display: none;
  }
}

/* Compact category entry requested for the primary animal pages. */
.animal-landing > .choice-table,
.animal-landing > .cat-choice {
  margin: 0;
  padding: clamp(12px, 2vw, 20px) var(--page-gutter);
  border-radius: 0;
}

.choice-table__grid,
.cat-choice__list {
  display: grid;
  min-height: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: visible;
  border: 0;
  border-radius: 0;
  gap: 8px;
}

.choice-table__item,
.cat-choice__row {
  display: flex;
  min-width: 0;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: var(--zoofix-black);
  background: var(--zoofix-action, #63d543);
  border: 2px solid var(--zoofix-black);
  text-align: center;
}

.choice-table__item + .choice-table__item,
.cat-choice__row + .cat-choice__row {
  border: 2px solid var(--zoofix-black);
}

.choice-table__item::before,
.cat-choice__row::before,
.choice-table__number,
.choice-table__label,
.choice-table__details,
.choice-table__link,
.cat-choice__number,
.cat-choice__detail,
.cat-choice__action {
  display: none;
}

.choice-table__item > strong,
.choice-table__item--treats > strong,
.cat-choice__row > strong {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(17px, 2vw, 25px);
  letter-spacing: normal;
  line-height: 1;
  overflow-wrap: normal;
  text-transform: uppercase;
}

.choice-table__item br {
  display: none;
}

.choice-table__item:hover,
.choice-table__item:focus-visible,
.cat-choice__row:hover,
.cat-choice__row:focus-visible {
  color: var(--zoofix-white);
  background: var(--zoofix-black);
}

@media (max-width: 560px) {
  .animal-landing > .choice-table,
  .animal-landing > .cat-choice {
    padding: 10px;
  }

  .choice-table__grid,
  .cat-choice__list {
    gap: 5px;
  }

  .choice-table__item,
  .cat-choice__row {
    min-height: 66px;
    padding: 8px 5px;
  }

  .choice-table__item > strong,
  .choice-table__item--treats > strong,
  .cat-choice__row > strong {
    font-size: clamp(13px, 4vw, 17px);
  }
}
