:root {
  --forest-950: #0d2d27;
  --forest-900: #12382f;
  --forest-800: #17483d;
  --forest-700: #236153;
  --sage: #aac1a0;
  --linen: #f4eddf;
  --linen-deep: #e8dcc8;
  --cream: #fffaf0;
  --gold: #c59a48;
  --gold-soft: #e8c976;
  --coral: #dd755d;
  --peach: #efb892;
  --ink: #17342d;
  --muted: #65726c;
  --white: #fffdf8;
  --line: rgba(23, 52, 45, 0.16);
  --shadow: 0 24px 70px rgba(22, 55, 46, 0.13);
  --radius-lg: 38px;
  --radius-md: 26px;
  --radius-sm: 18px;
  --page: min(1240px, calc(100vw - 48px));
  --mx: 0;
  --my: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 7% 9%, rgba(197, 154, 72, 0.11), transparent 19rem),
    var(--linen);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.42;
  content: "";
  background-image:
    radial-gradient(circle, rgba(23, 52, 45, 0.11) 0 0.55px, transparent 0.8px),
    radial-gradient(circle, rgba(197, 154, 72, 0.12) 0 0.5px, transparent 0.75px);
  background-position: 0 0, 7px 9px;
  background-size: 13px 13px, 17px 17px;
}

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

button,
[href] {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 16px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 100px;
  color: var(--white);
  background: var(--forest-950);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.section-shell {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0 0;
}

.site-header.is-sticky .header-inner {
  box-shadow: 0 20px 50px rgba(13, 45, 39, 0.24);
}

.header-inner {
  display: flex;
  align-items: center;
  width: var(--page);
  min-height: 68px;
  margin-inline: auto;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  color: var(--white);
  background: rgba(13, 45, 39, 0.96);
  box-shadow: 0 18px 45px rgba(13, 45, 39, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 15px;
  color: var(--forest-950);
  background: var(--gold-soft);
  transform: rotate(-4deg);
}

.brand-mark svg {
  width: 27px;
  fill: currentColor;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 16px;
  letter-spacing: 0.03em;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 9px;
  letter-spacing: 0.09em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  position: relative;
  padding: 11px 15px;
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.active::after {
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-soft);
  content: "";
  transform: translateX(-50%);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  color: var(--forest-950);
  background: var(--gold-soft);
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  background: #f2d783;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 9px 12px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-icon {
  display: grid;
  gap: 4px;
}

.menu-icon i {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-label {
  font-size: 13px;
  font-weight: 700;
}

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

.menu-toggle[aria-expanded="true"] .menu-icon i:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon i:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  gap: clamp(38px, 5vw, 78px);
  min-height: 710px;
  padding-block: clamp(70px, 8vw, 110px) 85px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  top: 52px;
  left: -6vw;
  z-index: -1;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(197, 154, 72, 0.21);
  border-radius: 50%;
  content: "";
}

.hero-grain {
  position: absolute;
  top: 17%;
  left: 41%;
  z-index: -1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: -22px 28px 0 -2px var(--coral), 26px 55px 0 -2px var(--forest-700), -10px 90px 0 -3px var(--gold);
  opacity: 0.6;
}

.layer {
  --tx: calc(var(--mx) * var(--depth, 1) * 1px);
  --ty: calc(var(--my) * var(--depth, 1) * 1px);
}

.hero-copy {
  align-self: center;
  transform: translate3d(calc(var(--mx) * -0.35px), calc(var(--my) * -0.35px), 0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 19px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.eyebrow-dark {
  color: var(--forest-700);
}

.hero h1,
.section-heading h2,
.guide h2,
.closing h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 720px;
  color: var(--forest-950);
  font-size: clamp(58px, 6.6vw, 97px);
}

.hero h1 em,
.guide h2 em {
  color: var(--coral);
  font-family: "STKaiti", "KaiTi", serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.hero-intro {
  max-width: 510px;
  margin: 30px 0 0;
  color: #4f625c;
  font-size: clamp(16px, 1.4vw, 18px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 13px 21px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--white);
  background: var(--forest-900);
  box-shadow: 0 14px 32px rgba(18, 56, 47, 0.19);
}

.button-primary:hover {
  background: var(--forest-700);
  box-shadow: 0 18px 36px rgba(18, 56, 47, 0.25);
}

.text-link {
  position: relative;
  color: var(--forest-900);
  font-size: 14px;
  font-weight: 800;
}

.text-link::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 75%;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: width 180ms ease;
}

.text-link:hover::after {
  width: 100%;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 42px;
}

.mini-faces {
  display: flex;
  padding-left: 8px;
}

.mini-face {
  position: relative;
  display: block;
  width: 37px;
  height: 37px;
  margin-left: -8px;
  border: 3px solid var(--linen);
  border-radius: 50%;
  background: var(--gold-soft);
}

.mini-face::before,
.mini-face::after {
  position: absolute;
  top: 14px;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  background: var(--forest-950);
  content: "";
}

.mini-face::before { left: 9px; }
.mini-face::after { right: 9px; }

.mini-face i {
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid var(--forest-950);
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%);
}

.dog-face { background: var(--peach); }
.rabbit-face { background: var(--sage); }

.cat-face::before,
.cat-face::after {
  box-shadow: 0 -16px 0 5px var(--gold-soft);
}

.hero-note p {
  display: grid;
  margin: 0;
  line-height: 1.3;
}

.hero-note strong {
  font-size: 13px;
}

.hero-note p span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.hero-poster {
  position: relative;
  align-self: center;
  min-height: 550px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 46% 46% 34px 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.04)),
    #dbc176;
  box-shadow: var(--shadow);
  isolation: isolate;
  transform: rotate(1.2deg);
}

.hero-poster::before {
  position: absolute;
  inset: 15px;
  z-index: -1;
  border: 1px dashed rgba(23, 52, 45, 0.22);
  border-radius: 45% 45% 24px 24px;
  content: "";
}

.poster-sun {
  position: absolute;
  top: 46px;
  right: 40px;
  z-index: -1;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 245, 209, 0.85);
  box-shadow: 0 0 0 22px rgba(255, 245, 209, 0.13);
  transform: translate3d(var(--tx), var(--ty), 0);
}

.poster-leaf {
  position: absolute;
  z-index: 2;
  width: 41px;
  height: 105px;
  border-radius: 100% 0 100% 0;
  background: var(--forest-700);
  transform: translate3d(var(--tx), var(--ty), 0) rotate(var(--rotate));
}

.poster-leaf::before {
  position: absolute;
  bottom: -35px;
  left: 50%;
  width: 2px;
  height: 80px;
  background: var(--forest-700);
  content: "";
  transform: rotate(-27deg);
  transform-origin: top;
}

.poster-leaf-one {
  --rotate: -24deg;
  top: 120px;
  left: -19px;
}

.poster-leaf-two {
  --rotate: 151deg;
  right: -8px;
  bottom: 55px;
  width: 31px;
  height: 82px;
  background: var(--coral);
}

.poster-doodle {
  position: absolute;
  top: 77px;
  left: 50px;
  width: 116px;
  transform: translate3d(var(--tx), var(--ty), 0) rotate(-10deg);
}

.poster-doodle svg {
  fill: none;
  stroke: var(--forest-700);
  stroke-dasharray: 4 8;
  stroke-linecap: round;
  stroke-width: 3;
}

.pet-illustration {
  position: absolute;
  right: -6%;
  bottom: 10px;
  left: -3%;
  z-index: 1;
  transform: translate3d(var(--tx), var(--ty), 0) rotate(-1.2deg);
}

.pet-illustration svg {
  display: block;
  width: 100%;
  overflow: visible;
}

.shadow-shape { fill: rgba(21, 53, 45, 0.17); }
.dog-body, .dog-head, .dog-leg { fill: #e6a878; stroke: var(--forest-950); stroke-width: 5; stroke-linejoin: round; }
.dog-ear-back { fill: #9c6548; stroke: var(--forest-950); stroke-width: 5; stroke-linejoin: round; }
.dog-patch { fill: #fff2d7; }
.dog-muzzle { fill: #f8d6ae; stroke: var(--forest-950); stroke-width: 4; }
.feature-dark { fill: var(--forest-950); }
.face-line { fill: none; stroke: var(--forest-950); stroke-linecap: round; stroke-width: 4; }
.bandana { fill: var(--coral); stroke: var(--forest-950); stroke-linejoin: round; stroke-width: 5; }
.tag { fill: var(--gold-soft); stroke: var(--forest-950); stroke-width: 4; }
.cat-tail { fill: none; stroke: var(--forest-950); stroke-linecap: round; stroke-width: 31; }
.cat-body, .cat-head, .cat-paw, .cat-ear { fill: #f6e9cd; stroke: var(--forest-950); stroke-linejoin: round; stroke-width: 5; }
.cat-patch { fill: var(--sage); }
.cat-chest { fill: #fff9ea; }
.cat-eye { fill: var(--forest-950); }

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 157px;
  padding: 11px 15px 11px 11px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(255, 252, 242, 0.82);
  box-shadow: 0 15px 38px rgba(37, 62, 49, 0.15);
  backdrop-filter: blur(10px);
  transform: translate3d(var(--tx), var(--ty), 0) rotate(-1.2deg);
}

.floating-card-top {
  top: 136px;
  left: -40px;
}

.floating-card-bottom {
  right: -34px;
  bottom: 65px;
}

.float-icon {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--forest-800);
}

.bowl-icon::before {
  position: absolute;
  top: 18px;
  left: 9px;
  width: 24px;
  height: 11px;
  border: 2px solid var(--white);
  border-radius: 3px 3px 12px 12px;
  content: "";
}

.bowl-icon i,
.bowl-icon i::before,
.bowl-icon i::after {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-soft);
  content: "";
}

.bowl-icon i { top: 13px; left: 19px; }
.bowl-icon i::before { left: -7px; }
.bowl-icon i::after { left: 7px; }

.ball-icon {
  border-radius: 50%;
  background: var(--coral);
  box-shadow: inset -7px -7px 0 rgba(130, 51, 40, 0.16);
}

.ball-icon::after {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  content: "";
}

.floating-card p {
  display: grid;
  margin: 0;
  line-height: 1.2;
}

.floating-card small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.floating-card strong {
  margin-top: 4px;
  font-size: 13px;
}

.poster-caption {
  position: absolute;
  right: 37px;
  bottom: 24px;
  z-index: 4;
  margin: 0;
  color: rgba(23, 52, 45, 0.72);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.hero-side-note {
  position: absolute;
  top: 50%;
  right: -66px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--forest-700);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.hero-side-note i {
  width: 1px;
  height: 42px;
  background: var(--gold);
}

.marquee {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--linen);
  background: var(--forest-900);
  transform: rotate(-1deg) scale(1.02);
}

.marquee-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  width: max-content;
  min-width: 100%;
  padding: 17px 20px;
  animation: marquee-move 26s linear infinite;
}

.marquee span {
  flex: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.marquee i {
  color: var(--gold-soft);
  font-style: normal;
}

@keyframes marquee-move {
  to { transform: translateX(-25%); }
}

.categories {
  padding-block: 130px 145px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 48px;
}

.section-heading h2,
.guide h2,
.closing h2 {
  color: var(--forest-950);
  font-size: clamp(44px, 5vw, 70px);
}

.heading-note {
  margin: 0 0 4px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  display: flex;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(23, 52, 45, 0.09);
  border-radius: var(--radius-md);
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), box-shadow 260ms ease;
  isolation: isolate;
}

.category-card:nth-child(1),
.category-card:nth-child(4) {
  grid-column: span 4;
}

.category-card:nth-child(2),
.category-card:nth-child(3) {
  grid-column: span 2;
}

.category-card:hover {
  z-index: 2;
  box-shadow: 0 25px 60px rgba(23, 52, 45, 0.16);
  transform: translateY(-8px) rotate(-1deg);
}

.category-card:hover .circle-arrow {
  color: var(--white);
  background: var(--forest-950);
  transform: rotate(10deg);
}

.category-food { color: var(--white); background: var(--forest-800); }
.category-snack { color: var(--forest-950); background: var(--peach); }
.category-toy { color: var(--forest-950); background: var(--gold-soft); }
.category-litter { color: var(--forest-950); background: #c6d2b6; }

.category-index {
  position: absolute;
  top: 20px;
  left: 22px;
  z-index: 2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  opacity: 0.7;
}

.category-art {
  position: absolute;
  inset: 0;
  transition: transform 300ms ease;
}

.category-card:hover .category-art {
  transform: scale(1.04) rotate(2deg);
}

.category-copy {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  width: 100%;
  margin-top: auto;
  padding: 26px 25px;
  background: linear-gradient(transparent, rgba(10, 35, 29, 0.28));
}

.category-snack .category-copy,
.category-toy .category-copy,
.category-litter .category-copy {
  background: linear-gradient(transparent, rgba(255, 250, 240, 0.18));
}

.category-copy p {
  position: absolute;
  bottom: 86px;
  left: 25px;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.72;
  writing-mode: vertical-rl;
}

.category-copy h3 {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 49px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.circle-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  margin-left: auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 17px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.kibble-bag {
  position: absolute;
  top: 65px;
  left: 50%;
  width: 164px;
  height: 218px;
  border: 4px solid var(--forest-950);
  border-radius: 20px 20px 29px 29px;
  background: #f5dfad;
  box-shadow: inset 0 -24px 0 rgba(197, 154, 72, 0.18);
  transform: translateX(-50%) rotate(-4deg);
}

.kibble-bag::before {
  position: absolute;
  top: 13px;
  right: 12px;
  left: 12px;
  height: 3px;
  border-radius: 4px;
  background: var(--forest-950);
  content: "";
}

.kibble-bag::after {
  position: absolute;
  top: 45px;
  left: 50%;
  width: 85px;
  height: 85px;
  border: 3px solid var(--forest-950);
  border-radius: 50%;
  background: var(--coral);
  content: "";
  transform: translateX(-50%);
}

.kibble-bag i,
.kibble-bag i::before {
  position: absolute;
  z-index: 1;
  top: 80px;
  width: 8px;
  height: 11px;
  border-radius: 50%;
  background: var(--forest-950);
  content: "";
}

.kibble-bag i { left: 56px; }
.kibble-bag i::before { top: 0; left: 39px; }

.kibble-bag b {
  position: absolute;
  z-index: 1;
  top: 97px;
  left: 50%;
  width: 28px;
  height: 15px;
  border-bottom: 3px solid var(--forest-950);
  border-radius: 50%;
  transform: translateX(-50%);
}

.grain {
  position: absolute;
  width: 28px;
  height: 16px;
  border: 3px solid var(--forest-950);
  border-radius: 50%;
  background: var(--gold-soft);
}

.grain-one { top: 79px; left: 18px; transform: rotate(30deg); }
.grain-two { top: 55px; right: 26px; transform: rotate(-34deg); }
.grain-three { top: 195px; right: 18px; transform: rotate(18deg); }

.treat {
  position: absolute;
  top: 90px;
  left: 50%;
  width: 70px;
  height: 32px;
  border: 4px solid var(--forest-950);
  border-radius: 14px;
  background: #f6dfb5;
  transform: translateX(-50%) rotate(16deg);
}

.treat::before,
.treat::after {
  position: absolute;
  top: 5px;
  width: 19px;
  height: 14px;
  border: 4px solid var(--forest-950);
  background: #f6dfb5;
  content: "";
  transform: rotate(45deg);
}

.treat::before { left: -14px; border-radius: 7px 3px; }
.treat::after { right: -14px; border-radius: 3px 7px; }
.treat-two { top: 168px; transform: translateX(-50%) rotate(-10deg); }
.treat-three { top: 245px; transform: translateX(-50%) rotate(8deg); }

.heart-shape {
  position: absolute;
  top: 44px;
  right: 18px;
  width: 22px;
  height: 22px;
  background: var(--coral);
  transform: rotate(45deg);
}

.heart-shape::before,
.heart-shape::after {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.heart-shape::before { left: -11px; }
.heart-shape::after { top: -11px; }

.toy-ball {
  position: absolute;
  top: 93px;
  left: 50%;
  width: 112px;
  height: 112px;
  border: 4px solid var(--forest-950);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: inset -14px -14px 0 rgba(113, 48, 36, 0.15);
  transform: translateX(-50%);
}

.toy-ball i,
.toy-ball b {
  position: absolute;
  top: 35px;
  width: 10px;
  height: 13px;
  border-radius: 50%;
  background: var(--forest-950);
}

.toy-ball i { left: 31px; }
.toy-ball b { right: 31px; }

.toy-ball::after {
  position: absolute;
  bottom: 28px;
  left: 50%;
  width: 25px;
  height: 13px;
  border-bottom: 4px solid var(--forest-950);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.toy-string {
  position: absolute;
  top: 188px;
  left: 50%;
  width: 5px;
  height: 90px;
  border-radius: 6px;
  background: var(--forest-950);
  transform: translateX(-50%) rotate(12deg);
}

.toy-star {
  position: absolute;
  top: 248px;
  left: 43%;
  color: var(--forest-950);
  font-size: 48px;
  transform: rotate(13deg);
}

.litter-box {
  position: absolute;
  top: 108px;
  left: 50%;
  width: 175px;
  height: 122px;
  border: 4px solid var(--forest-950);
  border-radius: 12px 12px 35px 35px;
  background: var(--cream);
  box-shadow: inset 0 -28px 0 #d7bd8e;
  transform: translateX(-50%) rotate(2deg);
}

.litter-box::before {
  position: absolute;
  top: -30px;
  left: 18px;
  width: 130px;
  height: 46px;
  border: 4px solid var(--forest-950);
  border-radius: 50%;
  background: #c6a875;
  content: "";
}

.litter-box i,
.litter-box i::before {
  position: absolute;
  z-index: 1;
  top: 45px;
  width: 8px;
  height: 11px;
  border-radius: 50%;
  background: var(--forest-950);
  content: "";
}

.litter-box i { left: 57px; }
.litter-box i::before { top: 0; left: 42px; }

.litter-box::after {
  position: absolute;
  top: 62px;
  left: 50%;
  width: 30px;
  height: 15px;
  border-bottom: 4px solid var(--forest-950);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.clean-spark {
  position: absolute;
  color: var(--forest-700);
  font-size: 36px;
}

.spark-one { top: 52px; left: 36px; }
.spark-two { top: 76px; right: 31px; font-size: 22px; }

.featured {
  padding-block: 120px 130px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(232, 201, 118, 0.13), transparent 28rem),
    var(--forest-950);
}

.featured .section-heading h2 {
  color: var(--white);
}

.featured-heading {
  align-items: flex-end;
  margin-bottom: 26px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.filter-button {
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.67);
  background: transparent;
  font-size: 13px;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.filter-button:hover,
.filter-button.active {
  color: var(--forest-950);
  background: var(--gold-soft);
}

.filter-status {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 220ms ease, border-color 220ms ease;
}

.product-card[hidden] {
  display: none;
}

.product-card:hover {
  border-color: rgba(232, 201, 118, 0.5);
  transform: translateY(-6px);
}

.product-visual {
  position: relative;
  height: 315px;
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 1px) calc(var(--radius-md) - 1px) 20px 20px;
}

.visual-food { background: #e5c673; }
.visual-snack { background: #eaa480; }
.visual-toy { background: #a9bfa0; }
.visual-litter { background: #e6dcc8; }

.product-visual::before {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(20, 50, 43, 0.22);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 6px 10px;
  border-radius: 100px;
  color: var(--forest-950);
  background: rgba(255, 253, 248, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  backdrop-filter: blur(7px);
}

.wish-button {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(23, 52, 45, 0.12);
  border-radius: 50%;
  color: var(--forest-950);
  background: rgba(255, 253, 248, 0.76);
  font-size: 22px;
  cursor: pointer;
  backdrop-filter: blur(7px);
  transition: transform 180ms ease, background 180ms ease;
}

.wish-button:hover { transform: scale(1.08) rotate(-8deg); }
.wish-button[aria-pressed="true"] { color: var(--white); background: var(--coral); }

.product-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -44%);
  transition: transform 250ms ease;
}

.product-card:hover .product-shape {
  transform: translate(-50%, -48%) rotate(-2deg) scale(1.04);
}

.bag-shape {
  width: 150px;
  height: 196px;
  border: 4px solid var(--forest-950);
  border-radius: 16px 16px 25px 25px;
  background: var(--forest-800);
  box-shadow: 10px 11px 0 rgba(23, 52, 45, 0.16);
}

.bag-seal {
  position: absolute;
  top: 12px;
  right: 11px;
  left: 11px;
  height: 3px;
  border-radius: 5px;
  background: var(--gold-soft);
}

.bag-face {
  position: absolute;
  top: 48px;
  left: 50%;
  width: 87px;
  height: 87px;
  border: 3px solid var(--forest-950);
  border-radius: 48% 48% 42% 42%;
  background: #f6ead0;
  transform: translateX(-50%);
}

.bag-face::before,
.bag-face::after {
  position: absolute;
  top: 33px;
  width: 7px;
  height: 9px;
  border-radius: 50%;
  background: var(--forest-950);
  content: "";
}

.bag-face::before { left: 24px; }
.bag-face::after { right: 24px; }

.bag-face i {
  position: absolute;
  top: -10px;
  left: 9px;
  width: 28px;
  height: 28px;
  border: 3px solid var(--forest-950);
  background: #f6ead0;
  transform: rotate(45deg);
}

.bag-face b {
  position: absolute;
  bottom: 19px;
  left: 50%;
  width: 22px;
  height: 11px;
  border-bottom: 3px solid var(--forest-950);
  border-radius: 50%;
  transform: translateX(-50%);
}

.bag-leaf {
  position: absolute;
  right: 13px;
  bottom: 13px;
  width: 31px;
  height: 53px;
  border-radius: 100% 0;
  background: var(--gold-soft);
  transform: rotate(18deg);
}

.jar-shape {
  width: 160px;
  height: 167px;
  margin-top: 23px;
  border: 4px solid var(--forest-950);
  border-radius: 23px 23px 34px 34px;
  background: rgba(255, 244, 221, 0.82);
  box-shadow: 10px 11px 0 rgba(23, 52, 45, 0.14);
}

.jar-lid {
  position: absolute;
  top: -28px;
  left: -8px;
  width: 168px;
  height: 38px;
  border: 4px solid var(--forest-950);
  border-radius: 12px;
  background: var(--forest-800);
}

.jar-label {
  position: absolute;
  top: 40px;
  right: 18px;
  left: 18px;
  height: 78px;
  border: 3px solid var(--forest-950);
  border-radius: 16px;
  background: var(--gold-soft);
}

.jar-label::before,
.jar-label::after {
  position: absolute;
  top: 25px;
  width: 8px;
  height: 10px;
  border-radius: 50%;
  background: var(--forest-950);
  content: "";
}

.jar-label::before { left: 31px; }
.jar-label::after { right: 31px; }

.jar-label i {
  position: absolute;
  bottom: 17px;
  left: 50%;
  width: 23px;
  height: 11px;
  border-bottom: 3px solid var(--forest-950);
  border-radius: 50%;
  transform: translateX(-50%);
}

.jar-treat {
  position: absolute;
  bottom: 16px;
  width: 19px;
  height: 19px;
  border: 2px solid var(--forest-950);
  border-radius: 6px;
  background: var(--coral);
  transform: rotate(18deg);
}

.jar-treat.one { left: 28px; }
.jar-treat.two { left: 67px; bottom: 10px; }
.jar-treat.three { right: 26px; transform: rotate(-14deg); }

.toy-shape {
  width: 205px;
  height: 154px;
}

.toy-center {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 122px;
  height: 122px;
  border: 4px solid var(--forest-950);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: inset -13px -12px 0 rgba(23, 52, 45, 0.13), 9px 10px 0 rgba(23, 52, 45, 0.14);
  transform: translateX(-50%);
}

.toy-center i,
.toy-center b {
  position: absolute;
  top: 43px;
  width: 9px;
  height: 12px;
  border-radius: 50%;
  background: var(--forest-950);
}

.toy-center i { left: 36px; }
.toy-center b { right: 36px; }

.toy-center::after {
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 29px;
  height: 15px;
  border-bottom: 4px solid var(--forest-950);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.rope-part {
  position: absolute;
  top: 56px;
  width: 78px;
  height: 24px;
  border: 4px solid var(--forest-950);
  border-radius: 16px;
  background: repeating-linear-gradient(90deg, var(--gold-soft) 0 10px, var(--forest-800) 10px 15px);
}

.rope-part.left { left: 0; transform: rotate(-18deg); }
.rope-part.right { right: 0; transform: rotate(18deg); }

.litter-shape {
  width: 166px;
  height: 198px;
}

.litter-handle {
  position: absolute;
  top: -17px;
  left: 50%;
  width: 72px;
  height: 41px;
  border: 5px solid var(--forest-950);
  border-bottom: 0;
  border-radius: 25px 25px 0 0;
  transform: translateX(-50%);
}

.litter-pack {
  position: absolute;
  inset: 0;
  border: 4px solid var(--forest-950);
  border-radius: 18px 18px 28px 28px;
  background: #f8f2e4;
  box-shadow: 10px 11px 0 rgba(23, 52, 45, 0.13);
}

.litter-pack::before {
  position: absolute;
  top: 31px;
  left: 50%;
  width: 97px;
  height: 97px;
  border: 3px solid var(--forest-950);
  border-radius: 50%;
  background: var(--sage);
  content: "";
  transform: translateX(-50%);
}

.litter-pack i,
.litter-pack b {
  position: absolute;
  z-index: 1;
  top: 68px;
  width: 8px;
  height: 11px;
  border-radius: 50%;
  background: var(--forest-950);
}

.litter-pack i { left: 57px; }
.litter-pack b { right: 57px; }

.litter-pack::after {
  position: absolute;
  z-index: 1;
  top: 87px;
  left: 50%;
  width: 28px;
  height: 14px;
  border-bottom: 4px solid var(--forest-950);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.litter-star {
  position: absolute;
  z-index: 2;
  color: var(--gold);
}

.litter-star.one { top: 8px; right: 7px; font-size: 27px; }
.litter-star.two { right: -17px; bottom: 34px; font-size: 19px; }

.visual-scribble {
  position: absolute;
  right: -16px;
  bottom: 26px;
  width: 88px;
  height: 24px;
  border-top: 3px dashed rgba(23, 52, 45, 0.32);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.product-info {
  padding: 21px 19px 19px;
}

.product-info p {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.product-info h3 {
  margin: 0;
  color: var(--white);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 22px;
}

.product-bottom strong {
  color: var(--gold-soft);
  font-size: 20px;
}

.add-button {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.77);
  background: transparent;
  font-size: 11px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.add-button:hover,
.add-button.added {
  color: var(--forest-950);
  background: var(--gold-soft);
}

.guide {
  padding-block: 140px 120px;
}

.guide-poster {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(23, 52, 45, 0.12);
  border-radius: var(--radius-lg);
  background: #d9c487;
  box-shadow: var(--shadow);
}

.guide-poster::before {
  position: absolute;
  top: -75px;
  left: -45px;
  width: 190px;
  height: 190px;
  border: 1px dashed rgba(23, 52, 45, 0.25);
  border-radius: 50%;
  content: "";
}

.guide-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: clamp(45px, 6vw, 80px);
}

.guide-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 28px 0 31px;
  color: #3d554e;
}

.button-dark {
  color: var(--white);
  background: var(--forest-900);
}

.guide-scene {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 49% 0 0 49%;
  background: var(--forest-800);
}

.guide-scene::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 39%;
  background: #d5b775;
  content: "";
}

.scene-window {
  position: absolute;
  top: 70px;
  right: 83px;
  z-index: 1;
  width: 210px;
  height: 220px;
  overflow: hidden;
  border: 13px solid var(--cream);
  border-radius: 110px 110px 8px 8px;
  background: var(--gold-soft);
}

.scene-window::before,
.scene-window::after {
  position: absolute;
  background: var(--cream);
  content: "";
}

.scene-window::before { top: 0; bottom: 0; left: 50%; width: 9px; transform: translateX(-50%); }
.scene-window::after { top: 53%; right: 0; left: 0; height: 9px; }

.scene-window i {
  position: absolute;
  top: 38px;
  left: 49px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #f5e3a1;
}

.scene-plant {
  position: absolute;
  right: 32px;
  bottom: 117px;
  z-index: 3;
  width: 80px;
  height: 133px;
  border-radius: 12px 12px 30px 30px;
  background: var(--coral);
}

.scene-plant::before,
.scene-plant::after,
.scene-plant i,
.scene-plant b {
  position: absolute;
  bottom: 103px;
  width: 39px;
  height: 92px;
  border-radius: 100% 0;
  background: var(--sage);
  content: "";
  transform-origin: bottom;
}

.scene-plant::before { left: 28px; transform: rotate(-29deg); }
.scene-plant::after { left: 30px; transform: rotate(22deg) scale(0.83); }
.scene-plant i { left: 14px; transform: rotate(-58deg) scale(0.75); }
.scene-plant b { left: 42px; transform: rotate(55deg) scale(0.69); }

.scene-rug {
  position: absolute;
  right: 45px;
  bottom: 45px;
  z-index: 2;
  width: 410px;
  height: 118px;
  border: 4px solid var(--forest-950);
  border-radius: 50%;
  background: var(--peach);
  transform: rotate(-4deg);
}

.sleeping-cat {
  position: absolute;
  right: 140px;
  bottom: 92px;
  z-index: 4;
  width: 270px;
  height: 170px;
}

.cat-body-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 208px;
  height: 130px;
  border: 5px solid var(--forest-950);
  border-radius: 55% 55% 48% 44%;
  background: #f5e6c9;
}

.cat-head-small {
  position: absolute;
  bottom: 4px;
  left: 0;
  z-index: 2;
  width: 110px;
  height: 105px;
  border: 5px solid var(--forest-950);
  border-radius: 46% 48% 45% 44%;
  background: #f5e6c9;
  transform: rotate(-7deg);
}

.cat-head-small::before,
.cat-head-small::after {
  position: absolute;
  top: 39px;
  width: 25px;
  height: 9px;
  border-top: 4px solid var(--forest-950);
  border-radius: 50%;
  content: "";
}

.cat-head-small::before { left: 18px; transform: rotate(8deg); }
.cat-head-small::after { right: 18px; transform: rotate(-8deg); }

.cat-tail-small {
  position: absolute;
  right: 3px;
  bottom: 15px;
  z-index: 3;
  width: 145px;
  height: 61px;
  border: 25px solid var(--forest-950);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(9deg);
}

.scene-bowl {
  position: absolute;
  bottom: 89px;
  left: 36px;
  z-index: 4;
  width: 86px;
  height: 42px;
  border: 4px solid var(--forest-950);
  border-radius: 5px 5px 30px 30px;
  background: var(--gold-soft);
}

.scene-bowl::before {
  position: absolute;
  top: -15px;
  left: -3px;
  width: 84px;
  height: 25px;
  border: 4px solid var(--forest-950);
  border-radius: 50%;
  background: #866044;
  content: "";
}

.scene-spark {
  position: absolute;
  z-index: 2;
  color: var(--gold-soft);
}

.scene-spark.one { top: 99px; left: 47px; font-size: 42px; }
.scene-spark.two { top: 157px; left: 110px; font-size: 22px; }

.care-tips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 42px;
  border-block: 1px solid var(--line);
}

.care-tips article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.care-tips article:first-child { padding-left: 0; }
.care-tips article:last-child { padding-right: 0; border-right: 0; }

.care-tips article > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
}

.care-tips h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.care-tips p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.closing {
  padding-block: 20px 110px;
}

.closing-card {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 9vw, 120px) 24px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 15% 25%, rgba(232, 201, 118, 0.16), transparent 16rem),
    var(--forest-900);
  text-align: center;
  isolation: isolate;
}

.closing .eyebrow {
  justify-content: center;
}

.closing h2 {
  color: var(--white);
}

.closing-card > p:not(.eyebrow) {
  margin: 25px 0 30px;
  color: rgba(255, 255, 255, 0.67);
}

.button-light {
  color: var(--forest-950);
  background: var(--gold-soft);
}

.closing-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.orbit-one {
  top: -120px;
  left: -90px;
  width: 430px;
  height: 430px;
}

.orbit-two {
  right: -140px;
  bottom: -230px;
  width: 550px;
  height: 550px;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
}

.closing-paw {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  color: rgba(255, 255, 255, 0.035);
  transform: translate(-50%, -50%) rotate(-14deg);
}

.closing-paw svg {
  width: min(62vw, 600px);
  fill: currentColor;
}

.pick-tray {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
}

.pick-tray-button {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 9px 12px 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  color: var(--white);
  background: var(--forest-950);
  box-shadow: 0 14px 35px rgba(13, 45, 39, 0.28);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.tray-icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 10px;
  color: var(--forest-950);
  background: var(--gold-soft);
  font-size: 19px;
}

.pick-count {
  display: grid;
  min-width: 24px;
  height: 24px;
  padding-inline: 5px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-950);
  background: var(--white);
  font-size: 10px;
}

.pick-panel {
  position: absolute;
  right: 0;
  bottom: 62px;
  width: min(330px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  color: var(--forest-950);
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 24px 70px rgba(13, 45, 39, 0.23);
  backdrop-filter: blur(16px);
}

.pick-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.pick-close {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 52, 45, 0.08);
  font-size: 20px;
  cursor: pointer;
}

.pick-empty {
  margin: 18px 0;
  color: var(--muted);
  font-size: 12px;
}

.pick-list {
  display: grid;
  gap: 8px;
  margin: 12px 0;
  padding: 0;
  list-style: none;
}

.pick-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 11px;
  border-radius: 11px;
  background: rgba(23, 52, 45, 0.06);
  font-size: 12px;
  font-weight: 700;
}

.pick-list button {
  padding: 3px 7px;
  border: 0;
  border-radius: 7px;
  color: #6b3d35;
  background: #f4d9d1;
  font-size: 10px;
  cursor: pointer;
}

.pick-browse {
  display: block;
  padding: 10px;
  border-radius: 10px;
  color: var(--white);
  background: var(--forest-900);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    gap: 35px;
  }

  .hero-side-note { display: none; }
  .nav-link { padding-inline: 10px; }
  .category-card:nth-child(1),
  .category-card:nth-child(2),
  .category-card:nth-child(3),
  .category-card:nth-child(4) { grid-column: span 3; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-visual { height: 350px; }
  .care-tips { grid-template-columns: repeat(2, 1fr); }
  .care-tips article:nth-child(2) { border-right: 0; }
  .care-tips article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .care-tips article:first-child,
  .care-tips article:nth-child(3) { padding-left: 0; }
}

@media (max-width: 860px) {
  :root { --page: min(100% - 32px, 720px); }
  .site-header { padding-top: 12px; }
  .header-inner { min-height: 62px; border-radius: 18px; }
  .brand-mark { width: 39px; height: 39px; }
  .brand-copy small { display: none; }
  .menu-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute;
    top: calc(100% + 9px);
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 3px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    color: var(--white);
    background: rgba(13, 45, 39, 0.98);
    box-shadow: 0 20px 45px rgba(13, 45, 39, 0.25);
  }

  .primary-nav.open { display: flex; }
  .nav-link { padding: 12px 14px; }
  .nav-link.active::after { display: none; }
  .nav-cta { justify-content: space-between; margin: 4px 0 0; }

  .hero {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-block: 75px 90px;
  }

  .hero-copy { text-align: center; }
  .eyebrow,
  .hero-actions,
  .hero-note { justify-content: center; }
  .hero-intro { margin-inline: auto; }
  .hero-poster { width: min(100%, 590px); margin-inline: auto; }
  .categories { padding-block: 110px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .heading-note { display: none; }
  .category-card:nth-child(1),
  .category-card:nth-child(2),
  .category-card:nth-child(3),
  .category-card:nth-child(4) { grid-column: span 6; min-height: 340px; }
  .featured { padding-block: 100px; }
  .featured-heading { align-items: flex-start; }
  .filter-tabs { justify-content: flex-start; }
  .guide { padding-block: 100px; }
  .guide-poster { grid-template-columns: 1fr; }
  .guide-copy { text-align: center; }
  .guide-copy .eyebrow { justify-content: center; }
  .guide-copy > p:not(.eyebrow) { margin-inline: auto; }
  .guide-scene { min-height: 480px; border-radius: 45% 45% 0 0; }
  .closing { padding-bottom: 90px; }
}

@media (max-width: 580px) {
  :root { --page: calc(100% - 24px); --radius-lg: 28px; }
  body { font-size: 15px; }
  .header-inner { padding-left: 11px; }
  .brand-copy strong { font-size: 14px; }
  .menu-label { display: none; }
  .hero { padding-top: 62px; gap: 36px; }
  .hero::before { width: 200px; height: 200px; }
  .hero h1 { font-size: clamp(50px, 16vw, 72px); }
  .hero-intro { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .button { width: 100%; }
  .text-link { align-self: center; }
  .hero-note { margin-top: 34px; }
  .hero-poster { min-height: 405px; border-radius: 43% 43% 27px 27px; }
  .poster-sun { top: 40px; right: 26px; width: 112px; height: 112px; }
  .poster-doodle { top: 45px; left: 24px; width: 74px; }
  .poster-leaf-one { top: 75px; width: 30px; height: 78px; }
  .pet-illustration { right: -9%; bottom: -10px; left: -7%; }
  .floating-card { min-width: 132px; padding: 8px; }
  .floating-card-top { top: 115px; left: -3px; }
  .floating-card-bottom { right: -4px; bottom: 43px; }
  .float-icon { width: 35px; height: 35px; }
  .floating-card strong { font-size: 11px; }
  .poster-caption { display: none; }
  .marquee-track { gap: 24px; }
  .categories { padding-block: 90px; }
  .section-heading { gap: 23px; margin-bottom: 34px; }
  .section-heading h2,
  .guide h2,
  .closing h2 { font-size: clamp(39px, 12vw, 56px); }
  .category-grid { gap: 12px; }
  .category-card:nth-child(1),
  .category-card:nth-child(2),
  .category-card:nth-child(3),
  .category-card:nth-child(4) { grid-column: span 12; min-height: 310px; }
  .category-art { transform: scale(0.9); }
  .category-card:hover .category-art { transform: scale(0.94); }
  .category-copy p { writing-mode: horizontal-tb; bottom: 75px; }
  .category-copy h3 { font-size: 40px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-visual { height: 330px; }
  .product-info { padding: 18px; }
  .filter-tabs { flex-wrap: nowrap; width: 100%; padding-bottom: 5px; overflow-x: auto; }
  .filter-button { flex: 0 0 auto; }
  .guide { padding-block: 88px; }
  .guide-copy { padding: 52px 22px; }
  .guide-scene { min-height: 370px; }
  .scene-window { top: 46px; right: 40px; width: 155px; height: 170px; }
  .scene-rug { right: 15px; bottom: 32px; width: 320px; height: 90px; }
  .sleeping-cat { right: 40px; bottom: 65px; transform: scale(0.82); transform-origin: bottom right; }
  .scene-plant { right: 12px; bottom: 82px; transform: scale(0.7); transform-origin: bottom; }
  .scene-bowl { bottom: 65px; left: 15px; transform: scale(0.78); }
  .care-tips { grid-template-columns: 1fr; margin-top: 27px; }
  .care-tips article,
  .care-tips article:first-child,
  .care-tips article:nth-child(3),
  .care-tips article:last-child { padding: 20px 5px; border-right: 0; border-bottom: 1px solid var(--line); }
  .care-tips article:last-child { border-bottom: 0; }
  .closing { padding-bottom: 80px; }
  .closing-card { padding-inline: 20px; }
  .closing-card > p:not(.eyebrow) { font-size: 13px; }
  .pick-tray { right: 12px; bottom: 12px; }
  .pick-tray-button > span:nth-child(2) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .layer,
  .hero-copy { transform: none !important; }
}

@media (prefers-contrast: more) {
  :root { --muted: #3f504b; --line: rgba(23, 52, 45, 0.35); }
  .product-info p,
  .filter-status { color: rgba(255, 255, 255, 0.82); }
}
