:root {
  --blue: #0f618f;
  --blue-deep: #074f7a;
  --blue-soft: #dbf2ff;
  --blue-pale: #eef9ff;
  --green-soft: #e6ffe9;
  --green: #4eaa21;
  --green-deep: #176c18;
  --orange: #ff5900;
  --yellow: #ffc400;
  --ink: #171717;
  --muted: #617580;
  --white: #ffffff;
  --border: #2c82b0;
  --shadow: 0 16px 40px rgb(8 76 113 / 9%);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--blue-soft);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue-deep);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: min(calc(100% - 32px), 1320px);
  margin: 16px auto;
  overflow: hidden;
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.container {
  width: min(calc(100% - 72px), 1180px);
  margin-inline: auto;
}

.site-header {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  min-height: 112px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: var(--blue);
}

.brand-dog {
  width: 68px;
  height: 50px;
  margin-right: -5px;
  object-fit: contain;
}

.brand-name {
  font-family: "Mochiy Pop One", sans-serif;
  font-size: 21px;
  line-height: 1.08;
  letter-spacing: -1.2px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(34px, 7vw, 88px);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 2px 9px 31px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 500;
}

.nav-link::before {
  position: absolute;
  left: 0;
  width: 23px;
  height: 16px;
  background: url("assets/ChatGPT Image 2 de ago. de 2026, 02_29_10 (1).png") center / contain no-repeat;
  content: "";
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 31px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--blue);
}

.icon-button {
  position: relative;
  display: grid;
  width: 33px;
  height: 38px;
  place-items: center;
  transition: color 160ms ease, transform 160ms ease;
}

.icon-button:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

.icon-button svg {
  width: 29px;
  height: 29px;
  overflow: visible;
  fill: currentColor;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon-button:first-child svg,
.cart-button svg {
  fill: none;
}

.cart-count {
  position: absolute;
  top: -1px;
  right: -4px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 10px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: flex;
  min-height: 268px;
  align-items: center;
  overflow: hidden;
  border-radius: 50px;
  color: var(--white);
  background: var(--blue);
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: 43%;
  padding: 34px 0 34px 72px;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -1.4px;
  white-space: nowrap;
}

.hero p {
  margin: 0 0 20px 5px;
  font-size: clamp(13px, 1.35vw, 17px);
  font-weight: 500;
  line-height: 1.35;
}

.pill-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 27px;
  border-radius: 999px;
  font-weight: 600;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.pill-button:hover {
  box-shadow: 0 10px 20px rgb(3 42 65 / 18%);
  transform: translateY(-2px);
}

.pill-button.light {
  gap: 9px;
  color: var(--blue);
  background: var(--white);
}

.pill-button.blue {
  min-width: 230px;
  color: var(--white);
  background: var(--blue);
}

.paw-glyph {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url("assets/output-smallpngtools (4).png") center / contain no-repeat;
  color: transparent;
  font-size: 0;
}

.promo-badge {
  position: absolute;
  z-index: 4;
  top: 21px;
  left: 45.5%;
  display: grid;
  width: 155px;
  aspect-ratio: 1;
  place-items: center;
}

.promo-badge::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: url("assets/output-smallpngtools (8).png") center / contain no-repeat;
  content: "";
}

.promo-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.promo-shape-outer {
  inset: 7%;
  width: 86%;
  height: 86%;
}

.promo-shape-inner {
  inset: 15%;
  width: 70%;
  height: 70%;
}

.promo-badge strong {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 18px;
  line-height: 1.35;
  text-align: center;
}

.hero-cat {
  position: absolute;
  z-index: 3;
  right: 53%;
  bottom: -12px;
  width: 105px;
  height: 170px;
  object-fit: contain;
}

.hero-pets {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 0;
  width: 46%;
  max-height: 245px;
  object-fit: contain;
  object-position: right bottom;
}

.hero-deco {
  position: absolute;
  z-index: 1;
  display: block;
  opacity: 0.38;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero-deco.paw {
  width: 45px;
  height: 45px;
  background-image: url("assets/output-smallpngtools (5).png");
}

.hero-deco.bone {
  width: 62px;
  height: 35px;
  background-image: url("assets/output-onlinepngtools (1).png");
}

.paw-one {
  top: 12px;
  left: 59%;
  transform: rotate(-17deg);
}

.paw-two {
  top: 85px;
  left: 64%;
  transform: rotate(20deg);
}

.paw-three {
  right: 9px;
  bottom: 80px;
  transform: rotate(-18deg);
}

.bone-one {
  top: 51px;
  left: 70%;
  transform: rotate(-10deg);
}

.bone-two {
  bottom: 12px;
  left: 54%;
  transform: rotate(14deg);
}

.categories {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 2.8vw, 45px);
  padding-block: 62px 28px;
}

.category-card {
  display: flex;
  min-width: 0;
  aspect-ratio: 1 / 1.02;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  padding: 12px 10px 8px;
  border: 1.8px solid var(--border);
  border-radius: 27px;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.category-card:hover {
  border-color: var(--orange);
  box-shadow: 0 12px 24px rgb(15 97 143 / 12%);
  transform: translateY(-5px);
}

.category-card img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.category-card h2 {
  margin: -4px 0 0;
  color: var(--blue);
  font-size: clamp(15px, 1.4vw, 21px);
  font-weight: 700;
  line-height: 1.1;
}

.content-section {
  padding-top: 40px;
  scroll-margin-top: 24px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 27px 8px;
  color: var(--blue);
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 700;
}

.section-title > span:last-child {
  min-width: 0;
}

.bone-mark {
  flex: 0 0 auto;
  width: 50px;
  height: 30px;
  background: url("assets/ChatGPT Image 2 de ago. de 2026, 02_29_10 (1).png") center / contain no-repeat;
}

.products-wrap,
.testimonials-wrap {
  position: relative;
  padding-right: 58px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3.7vw, 54px);
}

.product-card {
  position: relative;
  display: grid;
  min-height: 310px;
  grid-template-rows: 165px 1fr;
  overflow: visible;
  border: 1.8px solid var(--border);
  border-radius: 27px;
  background: var(--white);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  box-shadow: 0 15px 32px rgb(15 97 143 / 12%);
  transform: translateY(-5px);
}

.sale-tag {
  position: absolute;
  z-index: 2;
  top: -12px;
  left: -13px;
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--white);
  background: var(--green);
  font-size: 14px;
  font-weight: 500;
}

.product-image {
  width: 100%;
  height: 165px;
  padding: 15px 22px 0;
  object-fit: contain;
}

.product-image.wide-product {
  padding-inline: 10px;
}

.product-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 0 16px 12px;
}

.product-info h3 {
  min-height: 42px;
  margin: 0 0 1px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.18;
}

.rating {
  color: var(--yellow);
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -2px;
}

.price-row {
  display: flex;
  min-height: 25px;
  align-items: center;
  gap: 15px;
  margin-bottom: 6px;
  white-space: nowrap;
}

.price-row strong {
  color: var(--blue);
  font-size: 13px;
}

.price-row del {
  color: #a4aaad;
  font-size: 10px;
}

.add-button {
  display: grid;
  width: 75%;
  min-height: 35px;
  margin-top: auto;
  margin-inline: auto;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  transition: background 160ms ease, transform 160ms ease;
}

.add-button:hover {
  background: var(--orange);
  transform: scale(1.03);
}

.add-button img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.next-button {
  position: absolute;
  top: 50%;
  right: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.next-button:hover {
  box-shadow: 0 9px 18px rgb(15 97 143 / 22%);
  transform: translateY(-50%) scale(1.06);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 76px);
  padding-inline: 70px;
}

.service-card {
  display: flex;
  min-height: 278px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 15px 20px 12px;
  border: 1.8px solid var(--border);
  border-radius: 28px;
  background: var(--white);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  box-shadow: 0 15px 32px rgb(15 97 143 / 12%);
  transform: translateY(-5px);
}

.service-card img {
  width: 89%;
  height: 220px;
  object-fit: contain;
}

.service-card h3 {
  margin: -3px 0 0;
  color: var(--blue);
  font-size: 21px;
  font-weight: 700;
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: stretch;
  gap: 62px;
  padding-inline: 65px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 44px;
}

.benefit-card {
  display: flex;
  min-height: 114px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 13px 8px 8px;
  border: 1.8px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  text-align: center;
  transition: border-color 160ms ease, transform 160ms ease;
}

.benefit-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

.benefit-card img {
  width: 29px;
  height: 29px;
  margin-bottom: 2px;
  object-fit: contain;
}

.benefit-card h3 {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
}

.benefit-card a {
  margin-top: 7px;
  color: var(--blue);
  font-size: 8px;
  text-transform: lowercase;
}

.club-card {
  display: flex;
  min-height: 256px;
  flex-direction: column;
  justify-content: center;
  padding: 25px 34px 17px;
  border-radius: 62px;
  color: var(--blue);
  background: var(--blue-soft);
  text-align: center;
}

.club-card h3 {
  margin: 0 0 13px;
  font-size: clamp(25px, 2.7vw, 35px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}

.club-card p {
  margin: 0;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.35;
}

.club-action-row {
  display: grid;
  grid-template-columns: 95px 1fr 92px;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
}

.club-dog {
  width: 100px;
  height: 62px;
  object-fit: contain;
}

.club-seal {
  width: 78px;
  height: 78px;
  justify-self: end;
  object-fit: contain;
}

.testimonials {
  padding-top: 50px;
  padding-bottom: 58px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(35px, 7.2vw, 98px);
  padding-inline: 64px 20px;
}

.testimonial-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 20px 18px 13px;
  border: 1.8px solid var(--border);
  border-radius: 28px;
  color: var(--blue);
  background: var(--white);
  text-align: center;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.testimonial-card:hover {
  box-shadow: 0 15px 32px rgb(15 97 143 / 12%);
  transform: translateY(-5px);
}

.testimonial-card > img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card blockquote {
  display: flex;
  min-height: 76px;
  align-items: center;
  margin: 7px 0 4px;
  font-size: 11px;
  line-height: 1.33;
}

.testimonial-card figcaption {
  font-size: 13px;
  font-weight: 700;
}

.testimonial-card .rating {
  margin-top: 2px;
  font-size: 20px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-radius: 34px 34px 0 0;
  background: var(--green-soft);
}

.footer-content {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 260px;
  grid-template-columns: 160px 1fr 1.55fr 0.8fr;
  align-items: start;
  gap: 48px;
  padding-block: 55px 42px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 5px;
}

.footer-brand .brand-dog {
  width: 90px;
  height: 68px;
  margin: 0 0 -5px -5px;
}

.footer-brand .brand-name {
  font-size: 29px;
  line-height: 1.08;
}

.footer-column {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--ink);
}

.footer-column h2 {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 700;
}

.footer-column > a {
  margin: 2px 0;
  font-size: 14px;
}

.footer-column > a:hover,
.contact-column a:hover {
  color: var(--blue);
}

.contact-column p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 3px 0;
  font-size: 14px;
}

.contact-column p img {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  object-fit: contain;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links a {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  transition: transform 160ms ease;
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.06);
}

.social-links img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-paw,
.footer-bone {
  position: absolute;
  z-index: 0;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-paw {
  width: 39px;
  height: 39px;
  background-image: url("assets/output-smallpngtools (4).png");
}

.footer-paw.paw-a {
  top: 15px;
  left: 18%;
  transform: rotate(-14deg);
}

.footer-paw.paw-b {
  right: 29%;
  bottom: 30px;
  transform: rotate(15deg);
}

.footer-paw.paw-c {
  right: 2%;
  bottom: 70px;
  opacity: 0.7;
  transform: rotate(28deg);
}

.footer-bone {
  top: 20px;
  right: -4px;
  width: 85px;
  height: 58px;
  background-image: url("assets/ChatGPT Image 2 de ago. de 2026, 02_29_10 (1).png");
  opacity: 0.75;
  transform: rotate(25deg);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 135px 1fr auto;
    gap: 18px;
  }

  .main-nav {
    gap: 25px;
  }

  .nav-link {
    padding-left: 0;
  }

  .nav-link::before {
    display: none;
  }

  .nav-link::after {
    left: 0;
  }

  .hero-copy {
    padding-left: 45px;
  }

  .promo-badge {
    left: 43%;
    width: 135px;
  }

  .hero-cat {
    right: 51%;
    width: 85px;
  }

  .product-grid {
    gap: 22px;
  }

  .services-grid {
    padding-inline: 30px;
  }

  .benefits-layout {
    gap: 32px;
    padding-left: 20px;
  }

  .benefits-grid {
    gap: 20px;
  }

  .club-action-row {
    grid-template-columns: 70px 1fr 70px;
  }

  .pill-button.blue {
    min-width: 180px;
  }

  .testimonials-grid {
    gap: 35px;
    padding-left: 30px;
  }

  .footer-content {
    grid-template-columns: 120px 1fr 1.5fr 0.7fr;
    gap: 30px;
  }
}

@media (max-width: 850px) {
  .site-shell {
    width: min(calc(100% - 20px), 1320px);
    margin-block: 10px;
    border-radius: 26px;
  }

  .container {
    width: min(calc(100% - 40px), 1180px);
  }

  .site-header {
    grid-template-columns: auto 1fr;
    min-height: 138px;
    padding-block: 16px 10px;
  }

  .brand {
    grid-column: 1;
  }

  .header-actions {
    grid-column: 2;
    justify-content: flex-end;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: space-around;
  }

  .hero {
    min-height: 450px;
    align-items: flex-start;
    border-radius: 38px;
  }

  .hero-copy {
    width: 70%;
    padding: 40px 0 0 42px;
  }

  .hero h1 {
    font-size: 36px;
    white-space: normal;
  }

  .hero p {
    font-size: 15px;
  }

  .promo-badge {
    top: 26px;
    right: 25px;
    left: auto;
    width: 130px;
  }

  .hero-cat {
    right: auto;
    bottom: -8px;
    left: 20px;
    width: 115px;
  }

  .hero-pets {
    right: 10px;
    width: 79%;
    max-height: 250px;
  }

  .categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .category-card:nth-last-child(-n + 2) {
    transform: translateX(54%);
  }

  .category-card:nth-last-child(-n + 2):hover {
    transform: translate(54%, -5px);
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px;
  }

  .product-card {
    min-height: 340px;
    grid-template-rows: 190px 1fr;
  }

  .product-image {
    height: 190px;
  }

  .product-info h3 {
    font-size: 15px;
  }

  .services-grid {
    gap: 20px;
    padding-inline: 0;
  }

  .service-card {
    min-height: 235px;
  }

  .service-card img {
    height: 185px;
  }

  .service-card h3 {
    font-size: 17px;
  }

  .benefits-layout {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .benefits-grid {
    gap: 24px;
  }

  .benefit-card {
    min-height: 135px;
  }

  .benefit-card h3 {
    font-size: 14px;
  }

  .club-card {
    min-height: 285px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 20px;
  }

  .testimonial-card {
    min-height: 220px;
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-template-rows: 1fr auto auto;
    column-gap: 20px;
    padding: 22px 30px;
    text-align: left;
  }

  .testimonial-card > img {
    grid-row: 1 / 4;
    align-self: center;
  }

  .testimonial-card blockquote {
    min-height: auto;
    margin: 0;
    font-size: 13px;
  }

  .testimonial-card .rating {
    justify-self: start;
  }

  .footer-content {
    grid-template-columns: 130px 1fr 1.4fr;
  }

  .social-column {
    grid-column: 2 / -1;
  }
}

@media (max-width: 620px) {
  .site-shell {
    width: calc(100% - 12px);
    margin-block: 6px;
    border-radius: 22px;
  }

  .container {
    width: calc(100% - 28px);
  }

  .site-header {
    min-height: 126px;
    gap: 8px 12px;
  }

  .brand-dog {
    width: 56px;
  }

  .brand-name {
    font-size: 17px;
  }

  .header-actions {
    gap: 6px;
  }

  .icon-button {
    width: 30px;
  }

  .icon-button svg {
    width: 25px;
    height: 25px;
  }

  .main-nav {
    gap: 4px;
  }

  .nav-link {
    padding: 8px 2px;
    font-size: 14px;
  }

  .nav-link::after {
    bottom: 3px;
  }

  .hero {
    min-height: 490px;
    border-radius: 30px;
  }

  .hero-copy {
    width: 100%;
    padding: 29px 24px 0;
  }

  .hero h1 {
    padding-right: 15px;
    font-size: clamp(27px, 8.3vw, 34px);
  }

  .hero p {
    margin-left: 0;
    font-size: 13px;
  }

  .promo-badge {
    top: 193px;
    right: auto;
    left: 26px;
    width: 112px;
  }

  .promo-badge strong {
    font-size: 14px;
  }

  .hero-cat {
    bottom: -18px;
    left: 0;
    width: 88px;
  }

  .hero-pets {
    right: -10px;
    width: 91%;
    max-height: 230px;
  }

  .categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding-top: 36px;
  }

  .category-card:nth-last-child(-n + 2),
  .category-card:nth-last-child(-n + 2):hover {
    transform: none;
  }

  .category-card:last-child {
    transform: translateX(55%);
  }

  .category-card:last-child:hover {
    transform: translate(55%, -5px);
  }

  .category-card h2 {
    font-size: 16px;
  }

  .content-section {
    padding-top: 30px;
  }

  .section-title {
    align-items: flex-start;
    gap: 8px;
    margin-left: 0;
    font-size: 18px;
    line-height: 1.25;
  }

  .bone-mark {
    width: 42px;
    height: 25px;
  }

  .products-wrap,
  .testimonials-wrap {
    padding-right: 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-inline: 18px;
  }

  .product-card {
    min-height: 385px;
    grid-template-rows: 225px 1fr;
  }

  .product-image {
    height: 225px;
  }

  .product-info {
    padding-inline: 22px;
  }

  .product-info h3 {
    min-height: 42px;
    font-size: 16px;
  }

  .price-row strong {
    font-size: 15px;
  }

  .next-button {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-inline: 18px;
  }

  .service-card {
    min-height: 310px;
  }

  .service-card img {
    height: 250px;
  }

  .service-card h3 {
    font-size: 21px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }

  .benefit-card {
    min-height: 125px;
  }

  .club-card {
    min-height: 345px;
    padding: 28px 20px 18px;
    border-radius: 40px;
  }

  .club-card h3 {
    font-size: 27px;
  }

  .club-card p {
    font-size: 14px;
  }

  .club-action-row {
    grid-template-columns: 64px 1fr 64px;
    gap: 5px;
    margin-top: 28px;
  }

  .pill-button.blue {
    min-width: 0;
    padding-inline: 14px;
    font-size: 13px;
  }

  .club-dog {
    width: 70px;
  }

  .club-seal {
    width: 62px;
    height: 62px;
  }

  .testimonials {
    padding-bottom: 38px;
  }

  .testimonials-grid {
    padding-inline: 12px;
  }

  .testimonial-card {
    display: flex;
    min-height: 285px;
    padding: 20px;
    text-align: center;
  }

  .testimonial-card blockquote {
    min-height: 70px;
    font-size: 12px;
  }

  .testimonial-card .rating {
    align-self: center;
  }

  .site-footer {
    border-radius: 25px 25px 0 0;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 34px 20px;
    padding-block: 38px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column h2 {
    font-size: 17px;
  }

  .footer-column > a,
  .contact-column p {
    font-size: 12px;
  }

  .contact-column {
    grid-column: 1 / -1;
  }

  .social-column {
    grid-column: 1 / -1;
  }
}

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

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