/* Cat landing page — section layout scaffold */

:root {
  --cat-section-gap: 80px;
}

@media (max-width: 959px) {
  :root {
    --cat-section-gap: 40px;
  }

  html {
    overflow-x: clip;
  }

  .site-shell {
    overflow-x: clip;
    max-width: 100%;
  }

  main .recipe-reviews--full {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

.cat-intro,
.cat-hero,
.cat-section,
.cat-made-for {
  background: #f5f1e6;
}

.site-shell > main {
  display: flex;
  flex-direction: column;
  gap: var(--cat-section-gap);
}

.cat-intro {
  display: block;
}

.cat-section {
  padding: 0;
}

.cat-section--cream,
.cat-section--white {
  background: #f5f1e6;
}

.cat-eyebrow {
  margin: 0 0 12px;
  font-size: var(--font-size-min);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pawy-blue-soft);
}

.cat-eyebrow--center {
  text-align: center;
}

.cat-section__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: var(--font-weight-bold);
  line-height: 1.08;
  color: var(--pawy-ink);
}

.cat-section__title--center {
  text-align: center;
}

.cat-section__title--center:not(:has(+ .cat-section__lead)) {
  margin-bottom: var(--cat-section-gap);
}

.cat-section__lead {
  margin: 0 0 var(--cat-section-gap);
  max-width: 42rem;
  font-size: var(--font-size-body);
  line-height: 1.5;
  color: var(--pawy-text);
}

.cat-section__lead--center {
  margin-inline: auto;
  text-align: center;
}

/* Hero */

.cat-eyebrow--hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 32px;
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 16px;
  color: #102c7d;
}

.cat-hero__swiss-flag {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
}

.cat-hero__highlight {
  background: #edd071;
  color: #102c7d;
  border-radius: 8px;
  padding: 0 10px 4px;
  font-style: normal;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.cat-hero__cta-block {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
}

.cat-hero__social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.cat-hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  margin-block: 0;
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  color: #102c7d;
  text-align: center;
}

.cat-hero__trust-text {
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-hero__trust-text > .cat-hero__trust-line {
  display: inline-block;
  white-space: nowrap;
  line-height: 1.35;
  transform-origin: center center;
}

.cat-hero__trust-text > .cat-hero__trust-line--mobile {
  display: none;
}

.cat-hero__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  color: #102c7d;
}

.cat-hero__rating strong {
  font-weight: var(--font-weight-bold);
}

.cat-hero__star {
  color: #f5b731;
  font-size: 20px;
  line-height: 1;
}

.cat-hero__shield {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.btn-cta--lg {
  width: 100%;
  min-height: 55px;
  height: 55px;
  padding: 0 36px 0 44px;
  font-size: clamp(17px, 2vw, 20px);
  gap: 40px;
  justify-content: space-between;
  color: #102c7d;
}

.btn-cta--lg .btn-arrow {
  width: 10px;
  height: 17px;
  flex-shrink: 0;
  object-fit: contain;
}

.cat-hero {
  position: relative;
  overflow: hidden;
  --cat-hero-chrome-offset: 124px; /* site-promo + site-header on desktop */
  --cat-hero-content-width: min(var(--max-width-wide), 100vw - 2rem);
  --cat-hero-copy-width: calc(var(--cat-hero-content-width) * 0.52);
  min-height: calc(100dvh - var(--cat-hero-chrome-offset));
  min-height: calc(100vh - var(--cat-hero-chrome-offset));
}

.cat-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  min-height: inherit;
}

.cat-hero__copy {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 5vw, 56px) max(1rem, calc((100vw - var(--cat-hero-content-width)) / 2))
    clamp(32px, 5vw, 48px) max(1rem, calc((100vw - var(--cat-hero-content-width)) / 2));
}

.cat-hero__media {
  position: relative;
  margin: 0;
  flex: 1;
  min-height: clamp(200px, 30vh, 360px);
  overflow: hidden;
}

.cat-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 0;
  box-shadow: none;
}

.cat-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #f5f1e6 0%,
    color-mix(in srgb, #f5f1e6 70%, transparent) 18%,
    transparent 42%
  );
  pointer-events: none;
}

@media (max-width: 959px) {
  .cat-hero {
    --cat-hero-chrome-offset: 102px; /* site-promo + site-header on mobile */
    --cat-hero-viewport: calc(100dvh - var(--cat-hero-chrome-offset));
    --cat-hero-viewport: calc(100svh - var(--cat-hero-chrome-offset));
    overflow: visible;
    min-height: var(--cat-hero-viewport);
    height: auto;
  }

  .cat-hero__grid {
    display: flex;
    flex-direction: column;
    min-height: var(--cat-hero-viewport);
    height: auto;
  }

  .cat-hero__copy {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding-top: clamp(12px, 2.5svh, 24px);
    padding-bottom: clamp(16px, 3svh, 28px);
  }

  .cat-eyebrow--hero {
    justify-content: center;
    margin-bottom: clamp(10px, 1.8svh, 16px);
  }

  .cat-hero__actions {
    justify-content: center;
  }

  .cat-hero__cta-block {
    align-items: center;
  }

  .cat-hero__media {
    order: -1;
    flex: 1 1 0;
    width: 100%;
    min-height: clamp(72px, 16svh, 120px);
    height: 0;
    position: relative;
    overflow: hidden;
  }

  .cat-hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center 90%;
  }

  .cat-hero__media::after {
    z-index: 1;
    background: linear-gradient(
      180deg,
      transparent 0%,
      transparent 58%,
      color-mix(in srgb, #f5f1e6 45%, transparent) 78%,
      color-mix(in srgb, #f5f1e6 88%, transparent) 92%,
      #f5f1e6 100%
    );
  }

  .cat-hero__social-proof {
    width: 100%;
  }

  .cat-hero__trust {
    width: fit-content;
    max-width: 100%;
    font-size: 12px;
    gap: 6px;
  }

  .cat-hero__trust-text > .cat-hero__trust-line--desktop {
    display: none;
  }

  .cat-hero__trust-text {
    width: auto;
    max-width: calc(100% - 24px);
  }

  .cat-hero__trust-text > .cat-hero__trust-line--mobile {
    display: inline-block;
  }

  .cat-hero__trust-text > .cat-hero__trust-line {
    line-height: 1.2;
  }

  .cat-hero__shield {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 959px) and (max-height: 740px) {
  .cat-hero__title {
    margin-bottom: 10px;
  }

  .cat-hero__subtitle {
    margin-bottom: 20px;
  }

  .cat-hero__social-proof {
    margin-top: 14px;
  }
}

@media (min-width: 960px) {
  .cat-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    width: var(--cat-hero-copy-width);
    max-width: var(--cat-hero-copy-width);
    min-height: inherit;
    margin-left: max(1rem, calc((100vw - var(--cat-hero-content-width)) / 2));
    padding: clamp(40px, 5vw, 72px) clamp(1.5rem, 3vw, 3rem) clamp(40px, 5vw, 72px) 0;
  }

  .cat-hero__media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: max(40%, calc((100vw - var(--cat-hero-content-width)) / 2 + var(--cat-hero-copy-width)));
    min-height: 100%;
  }

  .cat-hero__media::after {
    background: linear-gradient(
      90deg,
      #f5f1e6 0%,
      color-mix(in srgb, #f5f1e6 96%, transparent) 6%,
      color-mix(in srgb, #f5f1e6 78%, transparent) 14%,
      color-mix(in srgb, #f5f1e6 48%, transparent) 24%,
      color-mix(in srgb, #f5f1e6 18%, transparent) 36%,
      transparent 52%
    );
  }
}

@media (min-width: 1200px) {
  .cat-hero {
    --cat-hero-copy-width: calc(var(--cat-hero-content-width) * 0.58);
  }
}

.cat-hero__title {
  margin: 0 0 36px;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 70px);
  font-weight: var(--font-weight-bold);
  line-height: 1.05;
  color: #102c7d;
}

.cat-hero__subtitle {
  margin: 0 0 56px;
  font-size: var(--font-size-body);
  line-height: 1.5;
  color: #102c7d;
}

@media (max-width: 959px) {
  .cat-hero__title {
    margin-bottom: clamp(10px, 2svh, 14px);
    font-size: 35px;
  }

  .cat-hero__subtitle {
    margin-bottom: clamp(20px, 3.5svh, 30px);
    font-size: 17px;
  }
}

.cat-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
}

/* Hero highlights band */

.cat-hero-highlights {
  padding: 0;
  margin-top: var(--cat-section-gap);
}

.cat-hero-highlights__panel {
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(24px, 3vw, 40px) clamp(16px, 2.5vw, 32px);
  border-radius: 40px;
  background: #e8eef8;
  color: #102b7d;
}

.cat-hero-highlights__eyebrow {
  margin: 0 0 clamp(16px, 2.5vw, 24px);
  color: #102b7d;
  font-size: 13px;
  line-height: 1;
}

.cat-hero-highlights__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .cat-hero-highlights__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
}

.cat-hero-highlights__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 120px;
  padding: 18px 14px;
  border-radius: 16px;
  background: var(--pawy-white);
  box-shadow: 0 4px 16px rgba(16, 43, 125, 0.06);
  text-align: center;
}

.cat-hero-highlights__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.cat-hero-highlights__label {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: #102c7d;
}

@media (max-width: 767px) {
  .cat-hero-highlights__icon {
    width: 45px;
    height: 45px;
  }

  .cat-hero-highlights__icon--humidity {
    width: 40px;
    height: 40px;
  }

  .cat-hero-highlights__label {
    font-size: 15px;
  }
}

.cat-hero-highlights__trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: clamp(20px, 3vw, 28px);
}

.cat-hero-highlights__stars {
  width: auto;
  height: 19px;
}

.cat-hero-highlights__trust-text {
  margin: 0;
  font-size: var(--font-size-min);
  font-weight: var(--font-weight-regular);
  line-height: 1.4;
  color: #102c7d;
  text-align: center;
}

.cat-hero-highlights__trust-text strong {
  font-weight: var(--font-weight-bold);
  color: #102c7d;
}

.cat-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-min);
  font-weight: var(--font-weight-semibold);
  color: var(--pawy-blue);
}

.cat-badge img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Two-column sections */

.cat-split {
  display: grid;
  gap: var(--cat-section-gap);
  align-items: center;
}

@media (min-width: 960px) {
  .cat-split {
    grid-template-columns: 1fr 1fr;
  }

  .cat-split--reverse .cat-split__media {
    order: -1;
  }
}

.cat-split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
}

/* Feature grids */

.cat-feature-grid {
  display: grid;
  gap: var(--cat-section-gap);
}

@media (min-width: 640px) {
  .cat-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cat-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cat-feature-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--pawy-white);
  box-shadow: var(--shadow-card);
}

.cat-feature-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  object-fit: contain;
}

.cat-feature-card__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--pawy-ink);
}

.cat-feature-card__text {
  margin: 0;
  font-size: var(--font-size-min);
  line-height: 1.5;
  color: var(--pawy-muted);
}

/* Made for cats */

.cat-made-for {
  overflow: visible;
  padding: 0;
  color: #102b7d;
}

.cat-made-for__inner {
  width: min(100% - 2rem, var(--max-width-wide));
  text-align: center;
}

.cat-made-for__title {
  margin: 0 auto 14px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.15vw, 43px);
  font-weight: var(--font-weight-bold);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.cat-made-for__title span {
  display: inline-block;
  padding: 0 8px 3px;
  border-radius: 8px;
  background: var(--pawy-yellow);
}

.cat-made-for__lead {
  max-width: 660px;
  margin: 0 auto 4px;
  font-size: clamp(17px, 1.9vw, 20px);
  line-height: 1.28;
}

.cat-made-for__lead strong {
  font-weight: var(--font-weight-bold);
}

.cat-made-for__stage {
  position: relative;
  width: 100%;
  min-height: 580px;
  margin: calc(var(--cat-section-gap) / 2) auto 0;
}

.cat-made-for__image {
  width: min(100%, 940px);
  margin: 0 auto;
}

.cat-made-for__cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cat-made-for-card {
  position: absolute;
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 22px;
  align-items: center;
  width: 276px;
  min-height: 74px;
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: var(--pawy-white);
  box-shadow: 0 4px 16px rgba(16, 43, 125, 0.1), 0 16px 40px rgba(16, 43, 125, 0.12);
  text-align: left;
}

.cat-made-for-card:nth-child(1) {
  top: 64px;
  left: 72px;
}

.cat-made-for-card:nth-child(2) {
  top: 108px;
  right: 72px;
}

.cat-made-for-card:nth-child(3) {
  top: 310px;
  left: 56px;
}

.cat-made-for-card:nth-child(4) {
  top: 362px;
  right: 48px;
}

.cat-made-for-card__icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  justify-self: center;
}

.cat-made-for-card__title {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  line-height: 1.15;
}

.cat-made-for-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.28;
}

.cat-made-for__cta {
  margin: 0 0 17px;
}

.cat-made-for__button {
  min-width: 258px;
  min-height: 43px;
  gap: 26px;
  padding: 0 18px 0 28px;
  font-size: 16px;
}

.cat-made-for__button-arrow {
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.cat-made-for__note {
  margin: -8px 0 14px;
  font-size: 14px;
  line-height: 1.3;
}

.cat-made-for__guarantee {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
}

.cat-made-for__guarantee img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

/* Local ingredients carousel */

.cat-ingredients {
  --cat-ing-card-width: 200px;
  --cat-ing-image-size: 96px;
  --cat-ing-image-overhang: 48px;
  --cat-ing-card-radius: 18px;
  --cat-ing-card-gap: 6px;

  overflow-x: clip;
  overflow-y: visible;
  padding: var(--cat-section-gap) 0;
  background: #e8eef8;
  color: #102b7d;
}

.cat-ingredients__inner {
  text-align: center;
}

.cat-ingredients__title {
  margin: 0 auto 10px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.15vw, 43px);
  font-weight: var(--font-weight-bold);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.cat-ingredients__title span {
  display: inline-block;
  padding: 0 8px 3px;
  border-radius: 8px;
  background: var(--pawy-yellow);
}

.cat-ingredients__lead {
  max-width: 660px;
  margin: 0 auto;
  font-size: clamp(17px, 1.9vw, 20px);
  line-height: 1.28;
}

.cat-ingredients__lead strong {
  font-weight: var(--font-weight-bold);
}

.cat-ingredients__carousel-wrap {
  margin: 20px calc(-1 * max(1rem, calc((100vw - min(var(--max-width-wide), 100vw - 2rem)) / 2))) 0;
  padding-top: calc(var(--cat-ing-image-overhang) + 6px);
  overflow-x: clip;
  overflow-y: visible;
}

.cat-ingredients__carousel .splide__track {
  overflow: visible;
}

.cat-ingredients__carousel .splide__list {
  align-items: stretch;
}

.cat-ingredients__carousel .splide__slide {
  display: flex;
  height: auto;
  align-items: stretch;
}

.cat-ingredients-card {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
  height: 100%;
  box-sizing: border-box;
  padding:
    calc(var(--cat-ing-image-size) - var(--cat-ing-image-overhang) + 6px)
    12px
    12px;
  border-radius: var(--cat-ing-card-radius);
  background: var(--pawy-white);
  box-shadow: 0 4px 16px rgba(16, 43, 125, 0.06);
  text-align: center;
}

.cat-ingredients-card__image-wrap {
  position: absolute;
  top: calc(-1 * var(--cat-ing-image-overhang));
  left: 50%;
  transform: translateX(-50%);
  width: var(--cat-ing-image-size);
  height: var(--cat-ing-image-size);
  overflow: visible;
}

.cat-ingredients-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cat-ingredients-card__name {
  margin: 0 0 3px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: var(--pawy-blue);
}

.cat-ingredients-card__desc {
  flex: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
  color: var(--pawy-blue);
}

.cat-ingredients__cta {
  margin: clamp(36px, 5vw, 48px) 0 0;
}

.cat-ingredients__button {
  min-width: 220px;
  min-height: 48px;
  font-size: 16px;
}

@media (min-width: 768px) {
  .cat-ingredients {
    --cat-ing-card-width: 232px;
    --cat-ing-image-size: 150px;
    --cat-ing-image-overhang: 75px;
    --cat-ing-card-radius: 24px;
    --cat-ing-card-gap: 8px;
  }

  .cat-ingredients-card {
    padding:
      calc(var(--cat-ing-image-size) - var(--cat-ing-image-overhang) + 8px)
      16px
      14px;
  }

  .cat-ingredients-card__name {
    font-size: 17px;
    margin-bottom: 4px;
  }

  .cat-ingredients-card__desc {
    font-size: 13px;
  }
}

/* Exceptional nutrition / Pawy Vet */

.cat-vet-nutrition {
  overflow: visible;
  padding: 0 0 0;
  background: #f5f1e6;
  color: #102b7d;
}

/* Recipe-derived blocks (plan promo + reviews) */

.cat-page .hl,
main .recipe-section .hl {
  position: relative;
  display: inline-block;
  z-index: 0;
  padding: 0.06em 0.28em;
  border-radius: 0.28em;
  color: inherit;
  white-space: nowrap;
}

.cat-page .hl::before,
main .recipe-section .hl::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: var(--pawy-yellow);
}

main .recipe-section--plan {
  background: #f5f1e6;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (max-width: 959px) {
  .cat-vet-nutrition + .recipe-section--plan {
    margin-top: calc(-1 * var(--cat-section-gap) / 2);
    padding-top: 1.25rem;
  }
}

main .recipe-section--plan + .recipe-section--reviews {
  margin-top: calc(-1 * var(--cat-section-gap));
}

main .recipe-section--reviews {
  border-bottom-width: 0;
}

main .recipe-section--faq {
  background: #f5f1e6;
  padding-top: 0;
  padding-bottom: clamp(2rem, 3.5vw, 2.75rem);
}

.cat-faq-tabs {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.cat-faq-tabs__scroll {
  position: relative;
}

.cat-faq-tabs__scroll-hint {
  display: none;
}

@media (max-width: 959px) {
  .cat-faq-tabs__scroll.is-scrollable:not(.is-at-end) .cat-faq-tabs__scroll-hint {
    display: block;
    position: absolute;
    right: 0.35rem;
    top: 50%;
    z-index: 1;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--pawy-blue);
    border-right: 2px solid var(--pawy-blue);
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
  }

  .cat-faq-tabs__scroll.is-scrollable:not(.is-at-end)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0.15rem;
    width: 2.75rem;
    background: linear-gradient(to right, rgba(245, 241, 230, 0), #f5f1e6 65%);
    pointer-events: none;
  }
}

.cat-faq-tabs__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem 0.75rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.15rem;
}

.cat-faq-tabs__list::-webkit-scrollbar {
  display: none;
}

.cat-faq-tabs__btn {
  flex-shrink: 0;
  border: 0;
  background: transparent;
  color: var(--pawy-blue);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.35vw, 16px);
  font-weight: var(--font-weight-regular);
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.cat-faq-tabs__btn.is-active {
  background: var(--pawy-sky);
  color: var(--pawy-blue);
  font-weight: var(--font-weight-semibold);
}

.cat-faq-tabs__btn:hover:not(.is-active) {
  background: rgba(211, 218, 229, 0.45);
}

.cat-faq-tabs__btn:focus-visible {
  outline: 2px solid var(--pawy-blue);
  outline-offset: 2px;
}

main .recipe-section--learn-more {
  padding-top: 0;
}

main .recipe-plan-promo__title,
main .recipe-reviews__title {
  font-family: var(--font-display);
}

main .recipe-reviews__verified {
  font-size: 16px;
}

@media (max-width: 767px) {
  main .recipe-reviews__verified {
    flex-wrap: nowrap;
    white-space: nowrap;
    font-size: 14px;
    max-width: 100%;
  }

  main .recipe-reviews__trust {
    width: 100%;
    max-width: 100%;
    padding-inline: 1rem;
    box-sizing: border-box;
    overflow-x: clip;
  }

  main .recipe-reviews__verified img {
    flex-shrink: 0;
  }
}

.cat-vet-nutrition__outer {
  width: min(100% - 2rem, 980px);
  margin-inline: auto;
}

.cat-vet-nutrition__panel {
  position: relative;
  padding-bottom: 0;
  border-radius: 24px;
  overflow: visible;
}

.cat-vet-nutrition__grid {
  display: grid;
  align-items: stretch;
  overflow: hidden;
  border-radius: 24px;
  background: #dce4f0;
  min-height: 0;
}

.cat-vet-nutrition__media {
  margin: 0;
  min-height: 0;
  height: auto;
}

.cat-vet-nutrition__media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center top;
}

.cat-vet-nutrition__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding: 33px 18px 16px;
  text-align: center;
}

.cat-vet-nutrition__title {
  margin: 0 auto 8px;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(22px, 4.5vw, 28px);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.cat-vet-nutrition__lead {
  max-width: 28rem;
  margin: 0 auto 8px;
  font-size: 14px;
  line-height: 1.45;
}

.cat-vet-nutrition__lead strong {
  font-weight: var(--font-weight-bold);
}

.cat-vet-nutrition__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
}

.cat-vet-nutrition__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: min(100%, 96px);
}

.cat-vet-nutrition__feature-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.cat-vet-nutrition__feature-label {
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  line-height: 1.25;
  text-align: center;
}

.cat-vet-nutrition__about {
  margin: 0;
}

.cat-vet-nutrition__link {
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  color: #102b7d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cat-vet-nutrition__link:hover,
.cat-vet-nutrition__link:focus {
  color: #0c2b89;
}

.cat-vet-nutrition__cta {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  margin: 0;
  z-index: 1;
}

.cat-vet-nutrition__cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: min(100%, 640px);
  height: auto;
  min-height: 0;
  padding: 32px 28px;
  border: none;
  border-radius: 14px;
  background: var(--pawy-yellow);
  color: #102b7d;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(16, 43, 125, 0.08);
  transition: background 0.15s ease, transform 0.15s ease;
}

.cat-vet-nutrition__cta-dog {
  position: absolute;
  bottom: 0;
  right: -24px;
  top: auto;
  z-index: 0;
  width: 92px;
  height: auto;
  margin: 0;
  transform-origin: center center;
  transform: rotate(-16deg) scale(-1, -1);
  object-fit: contain;
  object-position: bottom right;
  pointer-events: none;
}

.cat-vet-nutrition__cta-inner:hover,
.cat-vet-nutrition__cta-inner:focus-visible {
  background: #e8c85a;
  transform: translateY(-1px);
}

.cat-vet-nutrition__cta-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
  min-width: 0;
  padding-inline: 0 72px;
  text-align: left;
  overflow: hidden;
}

.cat-vet-nutrition__cta-kicker {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 27px);
  font-weight: var(--font-weight-bold);
  line-height: 1.15;
}

.cat-vet-nutrition__cta-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  text-wrap: pretty;
}

.cat-vet-nutrition__cta-text {
  margin: 4px 0 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.5;
  text-wrap: pretty;
}

@media (max-width: 639px) {
  .cat-vet-nutrition__grid {
    min-height: 0;
  }

  .cat-vet-nutrition__media {
    min-height: 0;
    height: auto;
  }

  .cat-vet-nutrition__media img {
    width: 100%;
    height: 260px;
    min-height: 0;
    object-fit: cover;
    object-position: center top;
    border-radius: 24px 24px 0 0;
  }

  .cat-vet-nutrition__copy {
    gap: 14px;
    padding: 32px 16px 18px;
  }

  .cat-vet-nutrition__title {
    max-width: none;
    margin-bottom: 0;
    line-height: 1.05;
  }

  .cat-vet-nutrition__lead {
    margin-bottom: 0;
    line-height: 1.35;
  }

  .cat-vet-nutrition__features {
    gap: 12px 16px;
    margin-bottom: 0;
  }

  .cat-vet-nutrition__feature {
    gap: 8px;
  }

  .cat-vet-nutrition__about {
    margin-top: 8px;
    margin-bottom: 10px;
  }

  .cat-vet-nutrition__cta {
    padding: 0;
    margin-top: 16px;
  }

  .cat-vet-nutrition__cta-inner {
    padding: 20px;
  }

  .cat-vet-nutrition__cta-dog {
    bottom: -3px;
    right: -14px;
    width: 72px;
  }

  .cat-vet-nutrition__cta-copy {
    gap: 6px;
    padding-inline: 0 56px;
  }

  .cat-vet-nutrition__cta-kicker {
    font-size: 22px;
    line-height: 1.05;
  }

  .cat-vet-nutrition__cta-title {
    line-height: 1.2;
  }

  .cat-vet-nutrition__cta-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
  }
}

/* Pawy Vets about modal */

.cat-vet-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.cat-vet-modal[hidden] {
  display: none;
}

.cat-vet-modal__backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  border: none;
  background: rgba(16, 43, 125, 0.45);
  cursor: pointer;
}

.cat-vet-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: min(90vh, 640px);
  overflow-y: auto;
  padding: clamp(32px, 6vw, 48px);
  border-radius: 28px;
  background: #fff;
  color: #102b7d;
  box-shadow: 0 24px 64px rgba(16, 43, 125, 0.18);
}

.cat-vet-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #102b7d;
  cursor: pointer;
  transition: background 0.15s ease;
}

.cat-vet-modal__close:hover,
.cat-vet-modal__close:focus-visible {
  background: rgba(16, 43, 125, 0.08);
  outline: none;
}

.cat-vet-modal__title {
  margin: 0 0 14px;
  padding-right: 2rem;
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: var(--font-weight-bold);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #102b7d;
  text-align: left;
}

.cat-vet-modal__body {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #102b7d;
  text-align: left;
}

@media (min-width: 640px) {
  .cat-vet-nutrition__panel {
    padding-bottom: 0;
  }

  .cat-vet-nutrition__grid {
    grid-template-columns: 44% minmax(0, 1fr);
    min-height: 440px;
  }

  .cat-vet-nutrition__media {
    min-height: 100%;
    height: 100%;
  }

  .cat-vet-nutrition__media img {
    height: 100%;
    min-height: 340px;
    max-height: none;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .cat-vet-nutrition__copy {
    padding: 46px 24px 72px;
  }

  .cat-vet-nutrition__cta {
    position: relative;
    bottom: auto;
    margin-top: -40px;
    padding: 0 28px;
  }

  .cat-vet-nutrition__cta-inner {
    padding: 32px 36px;
  }

  .cat-vet-nutrition__cta-dog {
    bottom: -3px;
    right: -1px;
    left: auto;
    top: auto;
    width: 118px;
    transform: rotate(-16deg) scale(-1, -1) rotate(16deg);
  }

  .cat-vet-nutrition__feature-label {
    font-size: 12px;
  }

  .cat-vet-nutrition__feature {
    width: min(100%, 110px);
  }

  .cat-vet-nutrition__feature-icon {
    width: 68px;
    height: 68px;
  }
}

@media (min-width: 1280px) {
  .cat-made-for__stage {
    min-height: 620px;
  }

  .cat-made-for__image {
    width: min(100%, 1020px);
  }

  .cat-made-for-card:nth-child(1) {
    left: 56px;
  }

  .cat-made-for-card:nth-child(2) {
    right: 56px;
  }

  .cat-made-for-card:nth-child(3) {
    left: 40px;
  }

  .cat-made-for-card:nth-child(4) {
    right: 32px;
  }
}

@media (max-width: 900px) {
  .cat-made-for {
    padding-top: 36px;
    overflow-x: clip;
  }

  .cat-made-for__stage {
    min-height: 0;
    overflow-x: clip;
  }

  .cat-made-for__image {
    display: block;
    width: 110%;
    max-width: 110%;
    height: auto;
    margin: 0 0 0 -5%;
    transform: none;
  }

  .cat-made-for__cards {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
    pointer-events: auto;
  }

  .cat-made-for-card {
    position: static;
    width: 100%;
    box-shadow: 0 2px 12px rgba(16, 43, 125, 0.08);
  }

  .cat-made-for__note {
    margin-top: 28px;
  }

  .cat-made-for__cta {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .cat-made-for__cards {
    grid-template-columns: 1fr;
  }

  .cat-made-for-card {
    min-height: 70px;
  }

  .cat-made-for__button {
    width: 100%;
    min-width: 0;
  }
}

/* How it works */

.cat-how {
  color: #102b7d;
}

.cat-how__inner {
  max-width: 1200px;
  margin-inline: auto;
  text-align: center;
}

.cat-how__title {
  margin: 0 auto 12px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.15vw, 43px);
  font-weight: var(--font-weight-bold);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.cat-how__lead {
  max-width: 660px;
  margin: 0 auto 48px;
  font-size: clamp(17px, 1.9vw, 20px);
  line-height: 1.28;
}

.cat-how__lead strong {
  font-weight: var(--font-weight-bold);
}

.cat-how__layout {
  display: grid;
  gap: 32px;
  align-items: center;
  text-align: left;
}

@media (min-width: 960px) {
  .cat-how__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 40px;
    align-items: stretch;
  }

  .cat-how__media {
    position: relative;
    min-height: 0;
    overflow: hidden;
    border-radius: 20px;
  }

  .cat-how__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
  }
}

.cat-how__steps {
  display: grid;
  gap: 14px;
}

@media (min-width: 960px) {
  .cat-how__steps {
    display: flex;
    flex-direction: column;
    gap: 34px;
    min-height: 100%;
  }

  .cat-how-step {
    flex: 1;
    min-height: 0;
  }
}

.cat-how-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  background: var(--pawy-white);
  box-shadow: 0 4px 16px rgba(16, 43, 125, 0.1), 0 16px 40px rgba(16, 43, 125, 0.12);
}

.cat-how-step__marker {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 16px;
  flex-shrink: 0;
}

.cat-how-step__num {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fcd273;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  color: #102b7d;
}

.cat-how-step__divider {
  flex: 0 0 auto;
  align-self: center;
  width: 1px;
  height: 52px;
  background: rgba(16, 43, 125, 0.14);
}

.cat-how-step__body {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex: 1;
  gap: 12px;
  min-width: 0;
}

.cat-how-step__icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.cat-how-step__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  min-width: 0;
  min-height: 100%;
}

.cat-how-step__title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: #102b7d;
}

.cat-how-step__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: #102b7d;
  opacity: 0.88;
}

.cat-how__media {
  margin: 0;
}

.cat-how__media img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

.cat-how__cta {
  margin: 40px 0 14px;
}

.cat-how__button {
  min-width: 280px;
  min-height: 48px;
  gap: 12px;
  padding: 0 28px;
  font-size: 16px;
}

.cat-how__button-heart {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.cat-how__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
}

@media (max-width: 959px) {
  .cat-how__lead {
    margin-bottom: 32px;
  }

  .cat-how__cta {
    margin-top: 32px;
  }
}

/* The cat diet */

.cat-diet {
  color: #102b7d;
}

.cat-diet__inner {
  max-width: 1200px;
  margin-inline: auto;
}

.cat-diet__layout {
  display: grid;
  gap: 32px;
  align-items: start;
}

@media (min-width: 960px) {
  .cat-diet__layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: stretch;
  }
}

.cat-diet__media {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
}

.cat-diet__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

@media (min-width: 960px) {
  .cat-diet__media {
    display: flex;
    min-height: 280px;
    height: 100%;
  }

  .cat-diet__media img {
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .cat-diet__copy {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}

.cat-diet .cat-eyebrow {
  margin-bottom: 12px;
  color: #102b7d;
  font-size: 13px;
  line-height: 1;
}

.cat-diet__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.15vw, 43px);
  font-weight: var(--font-weight-bold);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.cat-diet__highlight {
  display: inline-block;
  padding: 0 8px 3px;
  border-radius: 8px;
  background: var(--pawy-yellow);
}

.cat-diet__subtitle {
  margin: 0 0 10px;
  font-size: clamp(17px, 1.9vw, 20px);
  font-weight: var(--font-weight-bold);
  line-height: 1.28;
}

.cat-diet__lead {
  margin: 0 0 40px;
  max-width: 34rem;
  font-size: 16px;
  line-height: 1.35;
}

.cat-diet__needs {
  padding: 24px 20px 28px;
  border-radius: 16px;
  background: var(--pawy-white);
  box-shadow: 0 4px 16px rgba(16, 43, 125, 0.1), 0 16px 40px rgba(16, 43, 125, 0.12);
}

@media (max-width: 959px) {
  .cat-diet__needs {
    margin-top: 0;
  }
}

@media (min-width: 960px) {
  .cat-diet__needs {
    margin-top: auto;
  }
}

.cat-diet__needs-title {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: #102b7d;
}

.cat-diet__needs-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .cat-diet__needs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

.cat-diet-need {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .cat-diet-need {
    padding: 4px 18px;
  }

  .cat-diet-need:not(:last-child) {
    border-right: 1px solid rgba(16, 43, 125, 0.14);
  }
}

.cat-diet-need__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  object-fit: contain;
}

.cat-diet-need__title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: #102b7d;
}

.cat-diet-need__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: #102b7d;
}

.cat-diet__footer {
  margin-top: 64px;
  text-align: center;
}

.cat-diet__banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 36px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--pawy-white);
  box-shadow: 0 4px 16px rgba(16, 43, 125, 0.08);
  font-size: 16px;
  line-height: 1.2;
}

.cat-diet__banner img {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.cat-diet__cta {
  margin: 0;
}

.cat-diet__button {
  min-width: 258px;
  min-height: 48px;
  gap: 26px;
  padding: 0 18px 0 28px;
  font-size: 16px;
}

.cat-diet__button-arrow {
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

@media (max-width: 959px) {
  .cat-diet__footer {
    margin-top: 56px;
  }

  .cat-diet__banner {
    font-size: 14px;
  }
}

/* In that kibble */

@keyframes cat-kibble-card-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes cat-kibble-bar-grow {
  0% {
    transform: scaleY(0);
  }

  65% {
    transform: scaleY(1.1);
  }

  100% {
    transform: scaleY(1);
  }
}

@keyframes cat-kibble-bar-icon-pop {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }

  70% {
    transform: scale(1.12);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cat-kibble-bar-value-rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

@keyframes cat-kibble-bar-label-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes cat-kibble-bar-hover-pawy {
  0% {
    transform: scaleY(1);
  }

  45% {
    transform: scaleY(1.16);
  }

  100% {
    transform: scaleY(1.1);
  }
}

@keyframes cat-kibble-bar-hover-line {
  0% {
    transform: scaleX(1);
  }

  50% {
    transform: scaleX(1.2);
  }

  100% {
    transform: scaleX(1.12);
  }
}

.cat-kibble {
  color: #102b7d;
  background: #f6f1e5;
  padding: 48px 0 56px;
}

.cat-kibble__panel {
  max-width: 1200px;
  margin-inline: auto;
  padding: 36px 20px 40px;
  border-radius: 20px;
  background: #e8edf5;
  overflow: visible;
}

@media (min-width: 720px) {
  .cat-kibble {
    padding: 20px 0 64px;
  }

  .cat-kibble__panel {
    padding: 44px 32px 48px;
    border-radius: 24px;
  }
}

@media (min-width: 960px) {
  .cat-kibble {
    padding: 0 0 72px;
  }

  .cat-kibble__panel {
    padding: 48px 40px 52px;
  }
}

.cat-kibble__header {
  margin-bottom: 32px;
  text-align: center;
}

.cat-kibble__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a96ad;
}

.cat-kibble__warning {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.cat-kibble__header:hover .cat-kibble__warning {
  transform: scale(1.08) rotate(-4deg);
}

.cat-kibble__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 42px);
  font-weight: var(--font-weight-bold);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #102b7d;
}

.cat-kibble__highlight {
  background: #edd071;
  color: #102b7d;
  border-radius: 8px;
  padding: 0 10px 4px;
  font-style: normal;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  transition: background-color 0.25s ease;
}

.cat-kibble__title:hover .cat-kibble__highlight {
  background: #e8c85a;
}

.cat-kibble__lead {
  margin: 0 auto;
  max-width: 34rem;
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.45;
  color: #102b7d;
}

.cat-kibble__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, min(450px, 100%));
  grid-auto-rows: 1fr;
  align-items: stretch;
  justify-content: center;
  overflow: visible;
}

@media (max-width: 719px) {
  .cat-kibble__grid {
    grid-template-columns: min(450px, 100%);
  }
}

.cat-kibble-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 450px;
  height: 100%;
  margin: 0;
  padding: 20px 16px 16px;
  border-radius: 14px;
  background: #fcf7f3;
  border: 1px solid rgba(16, 43, 125, 0.08);
  box-shadow: 0 6px 20px rgba(16, 43, 125, 0.06);
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.cat-kibble--ready .cat-kibble-card {
  animation: cat-kibble-card-enter 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--card-index, 0) * 70ms);
}

.cat-kibble-card:hover,
.cat-kibble-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(74, 103, 196, 0.18);
  box-shadow: 0 14px 32px rgba(16, 43, 125, 0.12);
}

.cat-kibble--ready .cat-kibble-card:hover,
.cat-kibble--ready .cat-kibble-card:focus-within {
  transform: translateY(-5px);
}

.cat-kibble-card__badge {
  position: absolute;
  top: -18px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 999px;
  background: #edd071;
  color: #102b7d;
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.cat-kibble-card:hover .cat-kibble-card__badge,
.cat-kibble-card:focus-within .cat-kibble-card__badge {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 4px 12px rgba(237, 208, 113, 0.45);
}

.cat-kibble-card__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: #102b7d;
}

.cat-kibble-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 135px;
  aspect-ratio: 1;
  margin: 0 0 14px;
}

.cat-kibble-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.cat-kibble-card__media img.is-loaded {
  opacity: 1;
  transform: scale(1);
}

.cat-kibble-card:hover .cat-kibble-card__media img.is-loaded,
.cat-kibble-card:focus-within .cat-kibble-card__media img.is-loaded {
  transform: scale(1.05);
}

.cat-kibble-card__compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  column-gap: 10px;
  width: min(100%, 300px);
  flex: 1;
  margin-inline: auto;
  margin-bottom: 12px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.cat-kibble-card.is-inview .cat-kibble-card__compare {
  animation: cat-kibble-bar-value-rise 0.5s ease forwards;
}

.cat-kibble-card:hover .cat-kibble-card__compare,
.cat-kibble-card:focus-within .cat-kibble-card__compare {
  transform: translateY(-3px);
}

.cat-kibble-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 118px;
}

.cat-kibble-bar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-bottom: 6px;
  border-radius: 50%;
  color: #fff;
  opacity: 0;
  transform: scale(0.4);
  transition: filter 0.25s ease, box-shadow 0.25s ease;
}

.cat-kibble-card.is-inview .cat-kibble-bar__icon {
  animation: cat-kibble-bar-icon-pop 0.5s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}

.cat-kibble-card.is-inview .cat-kibble-bar--typical .cat-kibble-bar__icon {
  animation-delay: 0.05s;
}

.cat-kibble-card.is-inview .cat-kibble-bar--pawy .cat-kibble-bar__icon {
  animation-delay: 0.15s;
}

.cat-kibble-card--emphasis-pawy:hover .cat-kibble-bar--pawy .cat-kibble-bar__icon,
.cat-kibble-card--emphasis-pawy:focus-within .cat-kibble-bar--pawy .cat-kibble-bar__icon {
  filter: brightness(1.08);
  box-shadow: 0 0 0 3px rgba(74, 103, 196, 0.15);
}

.cat-kibble-card--emphasis-typical:hover .cat-kibble-bar--typical .cat-kibble-bar__icon,
.cat-kibble-card--emphasis-typical:focus-within .cat-kibble-bar--typical .cat-kibble-bar__icon {
  filter: brightness(1.08);
  box-shadow: 0 0 0 3px rgba(154, 165, 184, 0.25);
}

.cat-kibble-bar__icon--bad {
  background: #9aa5b8;
}

.cat-kibble-bar__icon--good {
  background: #4a67c4;
}

.cat-kibble-bar__value {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: #9aa5b8;
  opacity: 0;
  transform: translateY(8px);
}

.cat-kibble-bar--pawy .cat-kibble-bar__value {
  color: #102b7d;
}

.cat-kibble-card.is-inview .cat-kibble-bar__value {
  animation: cat-kibble-bar-value-rise 0.45s ease forwards;
}

.cat-kibble-card.is-inview .cat-kibble-bar--typical .cat-kibble-bar__value {
  animation-delay: 0.18s;
}

.cat-kibble-card.is-inview .cat-kibble-bar--pawy .cat-kibble-bar__value {
  animation-delay: 0.28s;
}

.cat-kibble-bar__track {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 56px;
  margin-top: auto;
}

.cat-kibble-bar__fill-shell {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform: scaleY(1);
  transform-origin: bottom center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cat-kibble-bar__fill-shell:has(.cat-kibble-bar__fill--line) {
  transform-origin: bottom center;
}

.cat-kibble-bar__fill {
  display: block;
  width: 80px;
  height: calc(var(--bar-height) * 0.56px);
  min-height: 3px;
  border-radius: 3px 3px 0 0;
  transform: scaleY(0);
  transform-origin: bottom center;
}

.cat-kibble-card.is-inview .cat-kibble-bar__fill {
  animation: cat-kibble-bar-grow 0.75s cubic-bezier(0.34, 1.35, 0.64, 1) forwards;
}

.cat-kibble-card.is-inview .cat-kibble-bar--typical .cat-kibble-bar__fill {
  animation-delay: 0.22s;
}

.cat-kibble-card.is-inview .cat-kibble-bar--pawy .cat-kibble-bar__fill {
  animation-delay: 0.38s;
}

.cat-kibble-card--emphasis-pawy:hover .cat-kibble-bar--typical .cat-kibble-bar__fill-shell,
.cat-kibble-card--emphasis-pawy:focus-within .cat-kibble-bar--typical .cat-kibble-bar__fill-shell {
  transform: scaleY(0.82);
}

.cat-kibble-card--emphasis-pawy:hover .cat-kibble-bar--pawy .cat-kibble-bar__fill-shell:not(:has(.cat-kibble-bar__fill--line)),
.cat-kibble-card--emphasis-pawy:focus-within .cat-kibble-bar--pawy .cat-kibble-bar__fill-shell:not(:has(.cat-kibble-bar__fill--line)) {
  animation: cat-kibble-bar-hover-pawy 0.55s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}

.cat-kibble-card--emphasis-pawy:hover .cat-kibble-bar--pawy .cat-kibble-bar__fill-shell:has(.cat-kibble-bar__fill--line),
.cat-kibble-card--emphasis-pawy:focus-within .cat-kibble-bar--pawy .cat-kibble-bar__fill-shell:has(.cat-kibble-bar__fill--line) {
  animation: cat-kibble-bar-hover-line 0.5s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}

.cat-kibble-card--emphasis-typical:hover .cat-kibble-bar--typical .cat-kibble-bar__fill-shell:not(:has(.cat-kibble-bar__fill--line)),
.cat-kibble-card--emphasis-typical:focus-within .cat-kibble-bar--typical .cat-kibble-bar__fill-shell:not(:has(.cat-kibble-bar__fill--line)) {
  animation: cat-kibble-bar-hover-pawy 0.55s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}

.cat-kibble-card--emphasis-typical:hover .cat-kibble-bar--pawy .cat-kibble-bar__fill-shell:not(:has(.cat-kibble-bar__fill--line)),
.cat-kibble-card--emphasis-typical:focus-within .cat-kibble-bar--pawy .cat-kibble-bar__fill-shell:not(:has(.cat-kibble-bar__fill--line)) {
  transform: scaleY(0.65);
}

.cat-kibble-card--emphasis-typical:hover .cat-kibble-bar--pawy .cat-kibble-bar__fill-shell:has(.cat-kibble-bar__fill--line),
.cat-kibble-card--emphasis-typical:focus-within .cat-kibble-bar--pawy .cat-kibble-bar__fill-shell:has(.cat-kibble-bar__fill--line) {
  transform: scaleX(0.7);
}

.cat-kibble-bar--typical .cat-kibble-bar__fill {
  background: #9aa5b8;
}

.cat-kibble-bar--pawy .cat-kibble-bar__fill {
  background: #4a67c4;
  transition: filter 0.25s ease, box-shadow 0.25s ease;
}

.cat-kibble-card--emphasis-pawy:hover .cat-kibble-bar--pawy .cat-kibble-bar__fill,
.cat-kibble-card--emphasis-pawy:focus-within .cat-kibble-bar--pawy .cat-kibble-bar__fill {
  filter: brightness(1.12);
  box-shadow: 0 0 12px rgba(74, 103, 196, 0.35);
}

.cat-kibble-card--emphasis-typical:hover .cat-kibble-bar--typical .cat-kibble-bar__fill,
.cat-kibble-card--emphasis-typical:focus-within .cat-kibble-bar--typical .cat-kibble-bar__fill {
  filter: brightness(1.12);
  box-shadow: 0 0 12px rgba(154, 165, 184, 0.35);
}

.cat-kibble-bar__fill--line {
  width: 80px;
  height: 3px;
  min-height: 3px;
  border-radius: 2px;
}

.cat-kibble-bar__label {
  margin-top: 8px;
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0;
}

.cat-kibble-card.is-inview .cat-kibble-bar__label {
  animation: cat-kibble-bar-label-fade 0.4s ease forwards;
}

.cat-kibble-card.is-inview .cat-kibble-bar--typical .cat-kibble-bar__label {
  animation-delay: 0.42s;
}

.cat-kibble-card.is-inview .cat-kibble-bar--pawy .cat-kibble-bar__label {
  animation-delay: 0.52s;
}

.cat-kibble-bar--typical .cat-kibble-bar__label {
  color: #9aa5b8;
  font-weight: var(--font-weight-semibold);
}

.cat-kibble-bar--pawy .cat-kibble-bar__label {
  color: #102b7d;
}

.cat-kibble-card__text {
  margin: auto 0 0;
  padding-top: 12px;
  border-top: 1px solid #e8e2d6;
  width: 100%;
  font-size: 14px;
  line-height: 1.4;
  color: #102b7d;
}

.cat-kibble-card__text strong {
  font-weight: var(--font-weight-bold);
}

@media (min-width: 960px) {
  .cat-kibble__header {
    margin-bottom: 36px;
  }

  .cat-kibble__grid {
    gap: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cat-kibble-card,
  .cat-kibble-card__media,
  .cat-kibble-card__media img,
  .cat-kibble-bar__fill,
  .cat-kibble-bar__fill-shell,
  .cat-kibble-bar__icon,
  .cat-kibble-bar__value,
  .cat-kibble-bar__label,
  .cat-kibble-card__compare,
  .cat-kibble-card__badge,
  .cat-kibble__warning,
  .cat-kibble__highlight {
    animation: none !important;
    transition: none !important;
  }

  .cat-kibble--ready .cat-kibble-card,
  .cat-kibble-card {
    opacity: 1;
    transform: none;
  }

  .cat-kibble-card__media img,
  .cat-kibble-card__media img.is-loaded {
    opacity: 1;
    transform: none;
  }

  .cat-kibble-bar__icon,
  .cat-kibble-bar__value,
  .cat-kibble-bar__label {
    opacity: 1;
    transform: none;
  }

  .cat-kibble-card.is-inview .cat-kibble-bar__fill {
    transform: scaleY(1);
  }

  .cat-kibble-card:hover .cat-kibble-card__compare,
  .cat-kibble-card:focus-within .cat-kibble-card__compare {
    transform: none;
  }
}

.cat-kibble:has(+ .cat-menu-builder) {
  padding-bottom: 32px;
}

@media (min-width: 720px) {
  .cat-kibble:has(+ .cat-menu-builder) {
    padding-bottom: 40px;
  }
}

@media (min-width: 960px) {
  .cat-kibble:has(+ .cat-menu-builder) {
    padding-bottom: 48px;
  }
}

.cat-kibble + .cat-menu-builder {
  margin-top: calc(-1 * var(--cat-section-gap) / 2);
}

/* Menu builder section */

.cat-menu-builder {
  background: #f5f1e6;
  color: #102c7d;
  padding-bottom: 0;
}

.cat-menu-builder + .cat-closing {
  margin-top: calc(-1 * var(--cat-section-gap) / 2);
}

.cat-menu-builder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.cat-menu-builder__header {
  max-width: 44rem;
  text-align: center;
}

.cat-menu-builder__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: var(--font-weight-bold);
  line-height: 1.08;
}

.cat-menu-builder__lead {
  margin: 0;
  font-size: var(--font-size-body);
  line-height: 1.5;
}

.cat-menu-builder__card {
  display: grid;
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--pawy-white);
  box-shadow: var(--shadow-card);
}

.cat-menu-builder__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: clamp(24px, 4vw, 40px);
}

.cat-menu-builder__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cat-menu-builder__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.cat-menu-builder__label {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

.cat-menu-builder__select {
  width: 100%;
  min-height: 48px;
  padding: 0 40px 0 16px;
  border: 1.5px solid rgba(16, 43, 125, 0.18);
  border-radius: 12px;
  background:
    var(--pawy-white)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M1 1.5 7 6.5 13 1.5' stroke='%23102c7d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat right 14px center;
  appearance: none;
  font: inherit;
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
}

.cat-menu-builder__select:focus {
  outline: 2px solid rgba(16, 43, 125, 0.25);
  outline-offset: 2px;
}

.cat-menu-builder__pricing-label {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
}

.cat-menu-builder__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}

.cat-menu-builder__price-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px 6px;
  border-radius: 8px;
  background: var(--pawy-yellow);
}

.cat-menu-builder__price {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 34px);
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.cat-menu-builder__price-unit {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
}

.cat-menu-builder__price-original {
  margin: 6px 0 0;
  font-size: 16px;
  line-height: 1.2;
}

.cat-menu-builder__cta {
  align-self: stretch;
  width: 100%;
  justify-content: center;
  min-height: 48px;
  gap: 12px;
  padding: 0 24px;
  font-size: 16px;
  color: #102c7d;
}

.cat-menu-builder__media {
  margin: 0;
  min-height: 0;
}

.cat-menu-builder__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cat-menu-builder__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 820px;
  margin-inline: auto;
}

.cat-menu-builder__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
  padding: 18px 19px;
  border-radius: 16px;
  background: var(--pawy-white);
  box-shadow: 0 4px 16px rgba(16, 43, 125, 0.06);
  text-align: center;
}

.cat-menu-builder__feature-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  flex-shrink: 0;
}

.cat-menu-builder__feature-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.cat-menu-builder__feature-icon--45 {
  width: 45px;
  height: 45px;
}

.cat-menu-builder__feature-icon--56 {
  width: 56px;
  height: 56px;
}

.cat-menu-builder__feature-icon--offset-right {
  margin-left: 5px;
}

.cat-menu-builder__feature-copy {
  min-width: 0;
}

.cat-menu-builder__feature-title {
  margin: 0;
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: #102b7d;
}

.cat-menu-builder__feature-text {
  margin: 0;
  font-size: 14px;
  font-weight: var(--font-weight-regular);
  line-height: 1.3;
  color: #102b7d;
}

.cat-menu-builder__footer-cta {
  margin: 8px 0 0;
}

.cat-menu-builder__box-cta {
  min-width: 280px;
  min-height: 48px;
  gap: 12px;
  padding: 0 28px;
  font-size: 16px;
  color: var(--pawy-white);
}

.cat-menu-builder__box-heart {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@media (min-width: 960px) {
  .cat-menu-builder__inner {
    gap: 40px;
  }

  .cat-menu-builder__card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .cat-menu-builder__form {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  }

  .cat-menu-builder__media {
    position: relative;
    align-self: stretch;
  }

  .cat-menu-builder__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  }
}

@media (min-width: 768px) {
  .cat-menu-builder__features {
    grid-template-columns: repeat(4, 220px);
    gap: 16px;
    justify-content: center;
    max-width: none;
  }

  .cat-menu-builder__feature {
    width: 220px;
  }
}

@media (max-width: 959px) {
  .cat-menu-builder__card {
    border-radius: var(--radius-lg);
  }

  .cat-menu-builder__form {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .cat-menu-builder__media img {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
}

@media (max-width: 639px) {
  .cat-menu-builder__fields {
    grid-template-columns: 1fr;
  }
}

/* Shared CTAs — cat page overrides recipe-detail.css (loaded later) via main scope */

main .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  background: var(--pawy-blue);
  color: var(--pawy-white);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

main .btn-cta:hover,
main .btn-cta:focus,
main .btn-cta:focus-visible {
  background: var(--pawy-blue-dark);
  color: var(--pawy-white);
  transform: translateY(-1px);
  text-decoration: none;
  filter: none;
}

main .cat-hero .btn-cta,
main .cat-menu-builder__cta.btn-cta {
  background: var(--pawy-yellow);
  color: var(--pawy-blue);
  box-shadow: 0 10px 24px rgba(239, 213, 115, 0.35);
}

main .cat-hero .btn-cta:hover,
main .cat-hero .btn-cta:focus,
main .cat-hero .btn-cta:focus-visible,
main .cat-menu-builder__cta.btn-cta:hover,
main .cat-menu-builder__cta.btn-cta:focus,
main .cat-menu-builder__cta.btn-cta:focus-visible {
  background: #e8c85a;
  color: var(--pawy-blue);
  transform: translateY(-1px);
  filter: none;
}

main .btn-cta--outline {
  background: transparent;
  border-color: var(--pawy-blue);
  color: var(--pawy-blue);
  box-shadow: none;
}

main .btn-cta--outline:hover,
main .btn-cta--outline:focus,
main .btn-cta--outline:focus-visible {
  background: var(--pawy-blue);
  color: var(--pawy-white);
  transform: translateY(-1px);
}

main .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  background: var(--pawy-blue);
  color: var(--pawy-white);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  box-shadow: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

main .btn-primary:hover,
main .btn-primary:focus,
main .btn-primary:focus-visible {
  background: var(--pawy-blue-dark);
  color: var(--pawy-white);
  transform: translateY(-1px);
  text-decoration: none;
  filter: none;
}

main .recipe-learn-card__btn {
  transition: background 0.15s ease, transform 0.15s ease;
}

main .recipe-learn-card:hover .recipe-learn-card__btn,
main .recipe-learn-card:focus-within .recipe-learn-card__btn {
  background: var(--pawy-blue-dark);
  transform: translateY(-1px);
}

/* Press & commitment closing section */

.cat-closing {
  background: var(--pawy-cream);
  padding-bottom: var(--cat-section-gap);
}

.cat-closing__press {
  padding: 30px 0 40px;
  text-align: center;
}

.cat-closing__eyebrow {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.4;
  color: var(--pawy-ink);
}

.cat-closing__quote {
  margin: 0 auto 40px;
  max-width: 920px;
  min-height: 2.3em;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.25vw, 40px);
  font-weight: var(--font-weight-bold);
  line-height: 1.15;
  color: var(--pawy-blue);
  transition: opacity 0.25s ease;
}

.cat-closing__quote.is-fading {
  opacity: 0;
}

.cat-closing__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px clamp(32px, 4vw, 56px);
}

.cat-closing__logo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  line-height: 0;
}

.cat-closing__logo-btn:focus-visible {
  outline: 2px solid var(--pawy-yellow);
  outline-offset: 4px;
  border-radius: 4px;
}

.cat-closing__logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  transition:
    filter 0.35s ease,
    opacity 0.35s ease;
}

.cat-closing__logo-btn:not(.is-active) .cat-closing__logo {
  filter: grayscale(1);
  opacity: 0.55;
}

.cat-closing__logo-btn.is-active .cat-closing__logo {
  filter: none;
  opacity: 1;
}

.cat-closing__logo--tribune {
  width: 116px;
  height: 46px;
}

.cat-closing__logo--google {
  width: 109px;
  height: 62px;
}

.cat-closing__logo--24heures {
  width: 146px;
  height: 29px;
}

.cat-closing__commitment {
  background: var(--pawy-sky);
  border-radius: 60px;
  padding: clamp(40px, 7vw, 90px) clamp(24px, 5vw, 90px);
  overflow: visible;
}

.cat-closing__commitment-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 4.5vw, 56px);
}

.cat-closing__commitment-title {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  color: var(--pawy-blue);
}

.cat-closing__commitment-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 205px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 30px;
  background: var(--pawy-blue);
  color: var(--pawy-white);
  font-size: 15px;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.cat-closing__commitment-cta:hover,
.cat-closing__commitment-cta:focus {
  background: var(--pawy-blue-dark);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--pawy-white);
}

.cat-closing__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  overflow: visible;
}

.cat-closing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: clamp(24px, 2.8vw, 36px);
  background: var(--pawy-white);
  border-radius: 28px;
  overflow: visible;
}

.cat-closing-card__sparkle {
  position: absolute;
  pointer-events: none;
  transform-origin: center center;
}

.cat-closing-card__sparkle--bl {
  bottom: -25px;
  left: -21px;
  width: 33px;
  height: 61px;
  transform: rotate(309deg);
}

.cat-closing-card__sparkle--tr {
  top: -29px;
  right: -21px;
  width: 34px;
  height: 55px;
  transform: rotate(138deg);
}

.cat-closing-card__icon {
  display: block;
  width: auto;
  height: auto;
  max-width: 91px;
  margin-bottom: clamp(16px, 2vw, 24px);
  object-fit: contain;
}

.cat-closing-card__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: var(--font-weight-bold);
  line-height: 1.15;
  color: var(--pawy-blue);
}

.cat-closing-card__text {
  margin: 0;
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.4;
  color: var(--pawy-blue);
}

@media (prefers-reduced-motion: reduce) {
  .cat-closing__quote {
    transition: none;
  }

  .cat-closing__logo {
    transition: none;
  }
}

@media (max-width: 959px) {
  .cat-closing__press {
    padding: 40px 0 49px;
  }

  .cat-closing__commitment {
    display: flex;
    flex-direction: column;
  }

  .cat-closing__commitment-head {
    display: contents;
  }

  .cat-closing__commitment-title {
    flex: none;
    order: 1;
    margin-bottom: clamp(24px, 4vw, 32px);
    text-align: center;
  }

  .cat-closing__cards {
    order: 2;
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
    margin-bottom: clamp(24px, 4vw, 32px);
  }

  .cat-closing__commitment-cta {
    order: 3;
    align-self: center;
    width: min(100%, 420px);
  }
}

@media (max-width: 639px) {
  .cat-closing__press {
    padding: 28px 0 33px;
  }

  .cat-closing__quote {
    margin-bottom: 32px;
  }

  .cat-closing__commitment {
    border-radius: 34px;
    padding: 28px 20px 32px;
  }

  .cat-closing__commitment-cta {
    width: 100%;
    min-width: 0;
  }

  .cat-closing__logo--tribune {
    width: 85px;
    height: 34px;
  }

  .cat-closing__logo--google {
    width: 80px;
    height: 45px;
  }

  .cat-closing__logo--24heures {
    width: 100px;
    height: 20px;
  }
}
