:root {
  --ink: #454a4d;
  --pewter: #646b6f;
  --pewter-dark: #3d4245;
  --pewter-light: #d7d9da;
  --pewter-soft: #eceeef;
  --cream: #ffffff;
  --paper: #f3f4f4;
  --red: #a4282d;
  --red-dark: #7c1c22;
  --red-soft: #f2e3e4;
  --red-light: #bd4449;
  --gray: #707579;
  --line: rgba(69, 74, 77, 0.16);
  --shadow: 0 24px 70px rgba(41, 45, 48, 0.14);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

img,
svg {
  display: block;
}

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

.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 8px 5vw;
  color: var(--cream);
  background: var(--ink);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.announcement p {
  margin: 0;
  font-weight: 700;
}

.announcement a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 10px 4vw;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font: 800 15px/1.1 "Manrope", sans-serif;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--gray);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
}

.products-nav {
  position: relative;
}

.products-menu-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border: 0;
  border-radius: 20px;
  color: white;
  background: var(--pewter);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: 180ms ease;
}

.products-menu-button:hover,
.products-menu-button[aria-expanded="true"] {
  background: var(--ink);
  transform: translateY(-2px);
}

.products-menu-button svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.products-menu-button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.products-menu {
  position: absolute;
  z-index: 60;
  top: calc(100% + 25px);
  left: 50%;
  width: min(900px, calc(100vw - 40px));
  max-height: min(610px, calc(100dvh - 140px));
  padding: 24px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 80px rgba(41, 45, 48, 0.2);
  transform: translateX(-50%);
}

.products-menu-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.products-menu-heading div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.products-menu-heading span,
.products-menu-heading small {
  color: var(--gray);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.products-menu-heading strong {
  font: 800 24px/1 "Manrope", sans-serif;
  letter-spacing: -0.04em;
}

.products-menu-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.products-menu-item {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 11px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.products-menu-item:hover,
.products-menu-item:focus-visible {
  outline: 0;
  background: var(--pewter-soft);
}

.products-menu-item span {
  overflow: hidden;
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.products-menu-item small {
  flex: 0 0 auto;
  color: var(--gray);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--pewter);
  transition: right 220ms ease;
}

.main-nav a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: 180ms ease;
}

.icon-button:hover {
  transform: translateY(-2px);
  background: white;
}

.icon-button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.cart-button {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 5px 7px 5px 18px;
  border: 0;
  border-radius: 30px;
  color: white;
  background: var(--pewter);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: 180ms ease;
}

.cart-button:hover {
  background: var(--pewter-dark);
  transform: translateY(-2px);
}

.cart-count {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--red);
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 5vw 90px;
  background:
    radial-gradient(circle at 15% 20%, rgba(164, 40, 45, 0.1), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #eceeef 100%);
}

.eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--pewter);
  font: 800 11px/1 "Manrope", sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.guide-copy h2,
.how-it-works h2 {
  margin: 0;
  font: 800 clamp(48px, 6.2vw, 92px) / 0.92 "Manrope", sans-serif;
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: var(--pewter);
  font-style: normal;
}

.hero-copy > p {
  max-width: 560px;
  margin: 30px 0 0;
  color: #646b6f;
  font-size: 18px;
  line-height: 1.65;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 0;
  border-radius: 28px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(41, 45, 48, 0.16);
}

.button-primary {
  color: white;
  background: var(--pewter);
}

.button-primary:hover {
  background: var(--pewter-dark);
}

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

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.text-button span {
  transition: transform 180ms ease;
}

.text-button:hover span {
  transform: translateX(5px);
}

.trust-row {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  color: #707579;
  font-size: 12px;
  font-weight: 600;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-row svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--pewter);
  stroke-width: 1.6;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: 7vw;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    var(--pewter);
  background-size: 48px 48px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 36px rgba(164, 40, 45, 0.12);
}

.hero-card {
  position: relative;
  z-index: 2;
  width: min(420px, 78%);
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(41, 45, 48, 0.08);
  border-radius: 28px;
  background: var(--cream);
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.22);
  transform: rotate(3deg);
  animation: card-float 5s ease-in-out infinite;
}

.hero-card img {
  width: 82%;
  align-self: center;
  filter: drop-shadow(0 18px 20px rgba(41, 45, 48, 0.15));
}

.hero-card-top,
.hero-card-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-card-bottom {
  align-items: flex-end;
}

.hero-card-bottom strong {
  max-width: 210px;
  font: 800 24px/1.05 "Manrope", sans-serif;
  letter-spacing: -0.04em;
  text-transform: none;
}

.hero-orbit,
.floating-pill {
  position: absolute;
  z-index: 3;
  border-radius: 999px;
  font: 700 11px/1 "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-orbit {
  display: grid;
  place-items: center;
  width: 98px;
  height: 98px;
  color: var(--ink);
  background: var(--red-light);
  animation: orbit-bob 4s ease-in-out infinite;
}

.orbit-one {
  top: 14%;
  right: 10%;
  transform: rotate(10deg);
}

.orbit-two {
  left: 11%;
  bottom: 11%;
  color: white;
  background: var(--ink);
  animation-delay: -2s;
}

.floating-pill {
  padding: 12px 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.pill-one {
  top: 24%;
  left: 8%;
  background: white;
  transform: rotate(-8deg);
}

.pill-two {
  right: 6%;
  bottom: 27%;
  background: var(--red-soft);
  transform: rotate(7deg);
}

.pill-three {
  left: 16%;
  top: 47%;
  color: white;
  background: var(--red-light);
  transform: rotate(-4deg);
}

@keyframes card-float {
  0%,
  100% {
    transform: rotate(3deg) translateY(0);
  }
  50% {
    transform: rotate(1deg) translateY(-12px);
  }
}

@keyframes orbit-bob {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: -12px;
  }
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border-bottom: 1px solid var(--line);
}

.category-tile {
  position: relative;
  min-height: 230px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  gap: 16px;
  padding: 26px;
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--paper);
  text-align: left;
  cursor: pointer;
  transition: background 220ms ease;
}

.category-tile:last-child {
  border-right: 0;
}

.category-tile:hover {
  background: var(--cream);
}

.category-number {
  color: var(--gray);
  font-size: 11px;
}

.category-icon {
  grid-column: 1 / -1;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  transition: transform 220ms ease;
}

.category-tile:hover .category-icon {
  transform: rotate(-5deg) scale(1.06);
}

.category-icon svg {
  width: 48px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.icon-food {
  background: var(--red-soft);
}

.icon-endo {
  background: var(--pewter-soft);
}

.icon-ecto {
  background: #f2e3e4;
}

.icon-wellness {
  background: #d7d9da;
}

.category-tile strong {
  display: block;
  margin-bottom: 6px;
  font: 800 17px/1.1 "Manrope", sans-serif;
}

.category-tile small {
  color: var(--gray);
  font-size: 11px;
}

.tile-arrow {
  align-self: end;
  font-size: 20px;
}

.shop-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 120px 5vw;
}

.shop-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 30px;
  right: -90px;
  width: 360px;
  height: 360px;
  background: url("assets/brand/baldwin-paw.svg") center / contain no-repeat;
  opacity: 0.035;
  transform: rotate(-14deg);
}

.paw-trail-print {
  --paw-rotate: 0deg;
  position: fixed;
  z-index: 48;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: url("assets/brand/baldwin-paw.svg") center / contain no-repeat;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(var(--paw-rotate)) scale(0.84);
  animation: paw-trail-fade 1500ms ease-out forwards;
}

@keyframes paw-trail-fade {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--paw-rotate)) scale(0.72);
  }
  14% {
    opacity: 0.5;
    transform: translate(-50%, -50%) rotate(var(--paw-rotate)) scale(0.92);
  }
  58% {
    opacity: 0.38;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--paw-rotate)) scale(0.62);
  }
}

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

.section-heading h2,
.guide-copy h2,
.how-it-works h2 {
  font-size: clamp(44px, 5.5vw, 76px);
}

.section-heading > p {
  max-width: 470px;
  margin: 0 0 8px;
  color: #707579;
  font-size: 16px;
  line-height: 1.65;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  padding: 11px 17px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 180ms ease;
}

.filter-chip:hover,
.filter-chip.active {
  color: white;
  border-color: var(--ink);
  background: var(--ink);
}

.search-field {
  min-width: 230px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 4px 0 14px;
  border-bottom: 1px solid var(--ink);
}

.search-field svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.search-field input {
  width: 100%;
  padding: 10px 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.search-field input::placeholder {
  color: #858a8d;
}

.results-meta {
  display: flex;
  justify-content: space-between;
  padding: 18px 0 28px;
  color: var(--gray);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.product-visual {
  position: relative;
  height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--product-bg, var(--cream));
  cursor: pointer;
}

.product-visual::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(41, 45, 48, 0.13);
  border-radius: 50%;
}

.product-art {
  position: relative;
  z-index: 1;
  width: 145px;
  height: 178px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 3px solid currentColor;
  background: rgba(255, 255, 255, 0.87);
  filter: drop-shadow(0 16px 14px rgba(41, 45, 48, 0.14));
  transition: transform 250ms ease;
}

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

.product-photo {
  position: relative;
  z-index: 1;
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(41, 45, 48, 0.18));
  transition: transform 250ms ease;
}

.product-card:hover .product-photo {
  transform: rotate(-2deg) scale(1.045);
}

.art-bag {
  border-radius: 10px 10px 20px 20px;
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
}

.art-box {
  width: 140px;
  height: 165px;
  border-radius: 8px;
}

.art-bottle {
  width: 105px;
  height: 160px;
  border-radius: 20px 20px 28px 28px;
}

.art-bottle::before {
  content: "";
  position: absolute;
  top: -22px;
  width: 58px;
  height: 23px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  background: var(--ink);
}

.product-art svg {
  width: 68px;
  height: 68px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.product-art strong {
  position: absolute;
  bottom: 18px;
  font: 800 10px/1 "Manrope", sans-serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 8px 10px;
  border-radius: 16px;
  color: white;
  background: var(--ink);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-badge.rx {
  color: var(--ink);
  background: var(--red);
}

.quick-view {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: white;
  box-shadow: 0 8px 18px rgba(41, 45, 48, 0.14);
  cursor: pointer;
}

.product-info {
  padding: 20px;
}

.product-kicker {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--pewter);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-info h3 {
  min-height: 47px;
  margin: 0;
  font: 800 17px/1.3 "Manrope", sans-serif;
  letter-spacing: -0.02em;
}

.product-note {
  min-height: 38px;
  margin: 8px 0 16px;
  color: var(--gray);
  font-size: 11px;
  line-height: 1.5;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-price {
  font: 800 14px/1.2 "Manrope", sans-serif;
}

.add-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--pewter);
  font-size: 24px;
  cursor: pointer;
  transition: 180ms ease;
}

.add-button:hover {
  transform: rotate(90deg);
  background: var(--ink);
}

.empty-state {
  padding: 70px 20px;
  border-radius: var(--radius);
  background: var(--cream);
  text-align: center;
}

.care-guide {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--red);
}

.guide-art {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: var(--pewter);
}

.guide-sun {
  position: absolute;
  width: 480px;
  height: 480px;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background: var(--red);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 42px rgba(164, 40, 45, 0.12), 0 0 0 84px rgba(164, 40, 45, 0.08);
}

.guide-card {
  position: absolute;
  width: 260px;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 26px;
  border-radius: 24px;
  color: var(--ink);
  box-shadow: 0 34px 60px rgba(0, 0, 0, 0.22);
}

.guide-card span {
  align-self: flex-start;
  font: 800 11px/1 "Manrope", sans-serif;
  letter-spacing: 0.12em;
}

.guide-card svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.card-dog {
  top: 14%;
  left: 17%;
  background: #f2e3e4;
  transform: rotate(-9deg);
}

.card-cat {
  right: 14%;
  bottom: 10%;
  background: var(--pewter-soft);
  transform: rotate(8deg);
}

.guide-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 8vw;
}

.guide-copy .eyebrow {
  color: var(--ink);
}

.guide-copy p {
  max-width: 520px;
  margin: 30px 0;
  font-size: 17px;
  line-height: 1.7;
}

.guide-copy .button {
  align-self: flex-start;
}

.guide-copy small {
  max-width: 440px;
  margin-top: 24px;
  color: rgba(41, 45, 48, 0.72);
  line-height: 1.5;
}

.how-it-works {
  padding: 120px 5vw;
}

.section-heading.compact {
  margin-bottom: 54px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.step {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.step:last-child {
  border-right: 0;
}

.step > span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--pewter);
  font-size: 10px;
  font-weight: 800;
}

.step h3 {
  margin: 70px 0 12px;
  font: 800 22px/1.15 "Manrope", sans-serif;
}

.step p {
  max-width: 310px;
  margin: 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

.prescription-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin: 0 5vw 100px;
  padding: 30px;
  border-radius: var(--radius);
  color: white;
  background: var(--ink);
}

.prescription-note img {
  width: 86px;
}

.prescription-note span {
  color: var(--red);
  font: 800 12px/1 "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.prescription-note p {
  max-width: 760px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.6;
}

.prescription-note a {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 38px;
  padding: 70px 5vw 24px;
  color: white;
  background: var(--pewter);
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-brand img {
  width: 80px;
}

.footer-brand div,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand strong {
  font: 800 17px/1 "Manrope", sans-serif;
}

.footer-brand span,
.site-footer > div > span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-footer p,
.site-footer a {
  font-size: 12px;
  line-height: 1.7;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a {
  width: max-content;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(41, 45, 48, 0.5);
  backdrop-filter: blur(4px);
}

.cart-drawer {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: min(470px, 100%);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--paper);
  box-shadow: -20px 0 60px rgba(41, 45, 48, 0.18);
  transform: translateX(105%);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2 {
  margin: 0;
  font: 800 34px/1 "Manrope", sans-serif;
  letter-spacing: -0.04em;
}

.drawer-header .icon-button {
  font-size: 24px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item-visual {
  width: 74px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--item-bg);
  font: 800 22px/1 "Manrope", sans-serif;
}

.cart-item-visual img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.cart-item h3 {
  margin: 0 0 5px;
  font: 800 13px/1.3 "Manrope", sans-serif;
}

.cart-item p {
  margin: 0;
  color: var(--gray);
  font-size: 11px;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 11px;
}

.quantity-control button {
  width: 25px;
  height: 25px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

.quantity-control span {
  min-width: 14px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.cart-item > strong {
  align-self: start;
  font-size: 13px;
}

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

.cart-empty img {
  width: 120px;
  margin-bottom: 18px;
  opacity: 0.7;
}

.cart-empty h3 {
  margin: 0;
  font: 800 22px/1.2 "Manrope", sans-serif;
}

.cart-empty p {
  max-width: 290px;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.6;
}

.cart-summary {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 12px;
}

.cart-summary .cart-total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 19px;
}

.cart-summary > p {
  color: var(--gray);
  font-size: 10px;
  line-height: 1.5;
}

.cart-payment-note {
  display: grid;
  gap: 3px;
  margin: 14px 0;
  padding: 12px 14px;
  border-left: 3px solid #a4282d;
  border-radius: 12px;
  background: var(--pewter-soft);
}

.cart-payment-note strong {
  color: var(--ink);
  font-size: 11px;
}

.cart-payment-note span {
  color: var(--gray);
  font-size: 9px;
  line-height: 1.4;
}

.cart-summary .button {
  width: 100%;
}

.payment-marks {
  justify-content: center !important;
  gap: 14px;
  margin: 16px 0 0 !important;
  color: var(--gray);
  font: 800 9px/1 "Manrope", sans-serif !important;
  letter-spacing: 0.06em;
}

dialog {
  width: min(900px, calc(100% - 28px));
  max-height: calc(100dvh - 28px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 30px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 40px 100px rgba(41, 45, 48, 0.3);
}

dialog::backdrop {
  background: rgba(41, 45, 48, 0.6);
  backdrop-filter: blur(6px);
}

.dialog-close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: white;
  box-shadow: 0 6px 18px rgba(41, 45, 48, 0.14);
  font-size: 25px;
  cursor: pointer;
}

.product-dialog-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.dialog-product-visual {
  min-height: 570px;
  display: grid;
  place-items: center;
  background: var(--dialog-bg);
}

.dialog-product-visual .product-art {
  width: 190px;
  height: 240px;
}

.dialog-product-photo {
  width: 78%;
  height: 78%;
  max-width: 430px;
  max-height: 480px;
}

.dialog-product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 65px;
}

.dialog-product-info h2 {
  margin: 0;
  font: 800 40px/1.05 "Manrope", sans-serif;
  letter-spacing: -0.05em;
}

.dialog-product-info > p {
  color: var(--gray);
  line-height: 1.7;
}

.dialog-product-info h3 {
  margin: 24px 0 0;
  font: 800 12px/1 "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-profile-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.product-profile-facts span {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  border-radius: 14px;
  background: var(--cream);
}

.product-profile-facts small {
  color: var(--gray);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-profile-facts strong {
  font-size: 11px;
}

.product-profile-description {
  margin-top: 10px;
}

.dialog-product-info ul {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.dialog-product-info li {
  position: relative;
  padding: 7px 0 7px 20px;
  font-size: 12px;
}

.dialog-product-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pewter);
  font-weight: 800;
}

.price-options {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.price-options div,
.price-options p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
}

.price-options span {
  color: var(--gray);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-options strong {
  font: 800 16px/1 "Manrope", sans-serif;
}

.dialog-product-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.dialog-product-buy strong {
  font: 800 28px/1 "Manrope", sans-serif;
}

.quiz-dialog {
  width: min(650px, calc(100% - 28px));
}

.quiz-dialog form {
  padding: 64px;
}

.quiz-dialog h2,
.checkout-dialog h2 {
  margin: 0 0 28px;
  font: 800 42px/1.05 "Manrope", sans-serif;
  letter-spacing: -0.05em;
}

.quiz-progress {
  height: 4px;
  margin-bottom: 32px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--pewter-soft);
}

.quiz-progress span {
  display: block;
  width: 66%;
  height: 100%;
  background: var(--pewter);
}

fieldset {
  padding: 0;
  margin: 0 0 24px;
  border: 0;
}

legend {
  margin-bottom: 12px;
  font-weight: 800;
}

.choice-grid,
.choice-list {
  display: grid;
  gap: 10px;
}

.choice-grid {
  grid-template-columns: 1fr 1fr;
}

.choice-grid label,
.choice-list label,
.delivery-options label {
  cursor: pointer;
}

.choice-grid input,
.choice-list input,
.delivery-options input {
  position: absolute;
  opacity: 0;
}

.choice-grid span,
.choice-list span {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  font-size: 13px;
  font-weight: 700;
  transition: 180ms ease;
}

.choice-grid input:checked + span,
.choice-list input:checked + span {
  color: white;
  border-color: var(--pewter);
  background: var(--pewter);
}

.checkout-dialog {
  width: min(1020px, calc(100% - 28px));
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
}

.checkout-layout > div {
  padding: 60px;
}

.checkout-dialog label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 800;
}

.checkout-dialog input:not([type="radio"]):not([type="checkbox"]) {
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  background: white;
}

.checkout-dialog input:focus {
  border-color: var(--pewter);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.delivery-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.delivery-options label > span {
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}

.delivery-options small {
  color: var(--gray);
  font-weight: 500;
}

.delivery-options input:checked + span {
  border: 2px solid var(--pewter);
  background: var(--pewter-soft);
}

.consent {
  flex-direction: row !important;
  align-items: flex-start;
  margin-top: 22px;
  font-weight: 500 !important;
  line-height: 1.5;
}

.consent input {
  margin-top: 3px;
}

.paypal-recipient {
  display: grid;
  gap: 4px;
  margin: 18px 0 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 4px solid #a4282d;
  border-radius: 16px;
  background: var(--pewter-soft);
}

.paypal-recipient > span {
  color: var(--gray);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.paypal-recipient strong {
  color: var(--ink);
  font: 800 22px/1.2 "Manrope", sans-serif;
}

.paypal-recipient p {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.paypal-recipient a {
  width: fit-content;
  margin-top: 7px;
  color: #a4282d;
  font-size: 11px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.paypal-card-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
}

.paypal-card-option svg {
  width: 34px;
  fill: none;
  stroke: #a4282d;
  stroke-width: 2;
}

.paypal-card-option p {
  margin: 0;
  color: var(--gray);
  font-size: 11px;
  line-height: 1.45;
}

.paypal-card-option strong {
  color: var(--ink);
}

.paypal-button {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 28px;
  color: white;
  background: #a4282d;
  cursor: pointer;
}

.paypal-button strong {
  color: white;
  font-size: 19px;
  font-style: italic;
}

.paypal-button.is-confirmation {
  background: var(--pewter);
}

.paypal-button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.card-note {
  color: var(--gray);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.checkout-summary {
  padding: 60px 40px;
  background: var(--cream);
}

.checkout-summary > span {
  font: 800 15px/1 "Manrope", sans-serif;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.checkout-tax-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  color: var(--gray);
  font-size: 11px;
}

.checkout-tax-line strong {
  color: var(--ink);
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}

.checkout-summary > p {
  margin-top: 24px;
  color: var(--gray);
  font-size: 10px;
  line-height: 1.5;
}

.toast {
  position: fixed;
  z-index: 200;
  left: 50%;
  bottom: 28px;
  max-width: calc(100% - 28px);
  padding: 14px 22px;
  border-radius: 30px;
  color: white;
  background: var(--ink);
  box-shadow: 0 16px 40px rgba(41, 45, 48, 0.25);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: 240ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .main-nav {
    display: flex;
  }

  .main-nav > a {
    display: none;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .products-menu-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 620px;
  }

  .hero-visual {
    min-height: 700px;
  }

  .category-strip,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-tile:nth-child(2) {
    border-right: 0;
  }

  .category-tile:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .care-guide {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .announcement {
    min-height: 40px;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 8px 14px;
    text-align: center;
    white-space: normal;
  }

  .announcement p {
    display: block;
  }

  .announcement a {
    display: block;
    min-height: 24px;
    line-height: 24px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 72px;
    gap: 8px;
    padding: 8px 16px;
  }

  .brand,
  .brand-copy {
    min-width: 0;
  }

  .brand {
    width: auto;
    gap: 8px;
  }

  .brand img {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }

  .brand-copy strong {
    display: block;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.08;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy small,
  .header-actions .icon-button,
  .cart-button > span:first-child {
    display: none;
  }

  .products-menu {
    position: fixed;
    top: var(--mobile-menu-top, 120px);
    right: 12px;
    left: 12px;
    width: auto;
    max-height: calc(100dvh - var(--mobile-menu-top, 120px) - 12px);
    padding: 18px;
    transform: none;
    overscroll-behavior: contain;
  }

  .products-menu-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .products-menu-list {
    grid-template-columns: 1fr;
  }

  .cart-button {
    padding: 5px;
    background: transparent;
  }

  .hero-copy {
    min-height: 0;
    padding: 72px 20px 64px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 13vw, 58px);
    line-height: 0.96;
    overflow-wrap: anywhere;
  }

  .hero-copy > p {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-button {
    align-self: flex-start;
  }

  .trust-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 34px;
  }

  .hero-visual {
    min-height: 510px;
    padding: 50px 14px;
  }

  .hero-visual::before {
    width: min(330px, 86vw);
  }

  .hero-card {
    width: min(78%, 330px);
    min-height: 370px;
    padding: 20px;
  }

  .hero-card-bottom strong {
    font-size: 18px;
  }

  .hero-orbit {
    width: 72px;
    height: 72px;
    font-size: 8px;
  }

  .floating-pill {
    padding: 9px 12px;
    font-size: 8px;
  }

  .category-strip {
    grid-template-columns: 1fr;
  }

  .category-tile {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .shop-section,
  .how-it-works {
    padding: 82px 20px;
  }

  .shop-section::before {
    top: 70px;
    right: -75px;
    width: 240px;
    height: 240px;
    opacity: 0.045;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 42px;
  }

  .section-heading h2,
  .guide-copy h2,
  .how-it-works h2 {
    max-width: 100%;
    font-size: clamp(38px, 12vw, 46px);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .shop-toolbar {
    flex-direction: column;
  }

  .filter-row {
    flex-wrap: nowrap;
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
  }

  .filter-chip {
    white-space: nowrap;
  }

  .search-field {
    min-width: 100%;
  }

  .results-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .results-meta span {
    overflow-wrap: anywhere;
  }

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

  .product-visual {
    height: 340px;
  }

  .guide-art {
    min-height: 530px;
  }

  .guide-sun {
    width: 330px;
    height: 330px;
  }

  .guide-card {
    width: 190px;
    height: 270px;
  }

  .card-dog {
    left: 6%;
  }

  .card-cat {
    right: 6%;
  }

  .guide-copy {
    padding: 80px 22px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step h3 {
    margin-top: 50px;
  }

  .prescription-note {
    grid-template-columns: 1fr;
    margin: 0 20px 80px;
  }

  .prescription-note a {
    width: 100%;
    text-align: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 60px 22px 24px;
  }

  .footer-bottom {
    margin-top: 10px;
  }

  .footer-links a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .cart-drawer {
    padding: 22px 18px;
  }

  .product-dialog-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .dialog-product-visual {
    min-height: 380px;
  }

  .dialog-product-info,
  .quiz-dialog form,
  .checkout-layout > div,
  .checkout-summary {
    padding: 42px 24px;
  }

  .dialog-product-info h2,
  .quiz-dialog h2,
  .checkout-dialog h2 {
    font-size: 34px;
  }

  .form-row,
  .delivery-options {
    grid-template-columns: 1fr;
  }
}

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

  .brand img {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand-copy strong {
    max-width: 112px;
    font-size: 12px;
  }

  .products-menu-button {
    min-height: 44px;
    padding-inline: 11px;
  }

  .cart-count {
    width: 32px;
    height: 32px;
  }

  .hero-copy {
    padding: 60px 16px 54px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-card {
    width: min(76%, 270px);
    min-height: 330px;
    padding: 17px;
  }

  .hero-card-top,
  .hero-card-bottom {
    gap: 10px;
    font-size: 9px;
  }

  .hero-card-bottom strong {
    max-width: 150px;
    font-size: 16px;
  }

  .orbit-one {
    top: 8%;
    right: 4%;
  }

  .orbit-two {
    left: 4%;
    bottom: 7%;
  }

  .pill-one {
    top: 23%;
    left: 2%;
  }

  .pill-two {
    right: 2%;
    bottom: 24%;
  }

  .pill-three {
    left: 8%;
  }

  .shop-section,
  .how-it-works {
    padding: 68px 16px;
  }

  .filter-row {
    margin-right: -16px;
    padding-right: 16px;
  }

  .product-visual {
    height: min(310px, 86vw);
  }

  .guide-art {
    min-height: 440px;
  }

  .guide-sun {
    width: 260px;
    height: 260px;
  }

  .guide-card {
    width: 150px;
    height: 220px;
    padding: 18px;
  }

  .card-dog {
    top: 12%;
    left: 4%;
  }

  .card-cat {
    right: 4%;
    bottom: 10%;
  }

  .guide-copy {
    padding: 64px 18px;
  }

  .prescription-note {
    margin-inline: 16px;
    padding: 24px 20px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand img {
    width: 64px;
  }

  .cart-item {
    grid-template-columns: 62px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .cart-item-visual {
    width: 62px;
    height: 70px;
  }

  .cart-item > strong {
    max-width: 72px;
    overflow-wrap: anywhere;
    text-align: right;
  }

  .payment-marks {
    flex-wrap: wrap;
  }

  dialog {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 20px;
  }

  .dialog-close {
    top: 10px;
    right: 10px;
  }

  .dialog-product-visual {
    min-height: 300px;
  }

  .dialog-product-info,
  .quiz-dialog form,
  .checkout-layout > div,
  .checkout-summary {
    padding: 38px 18px;
  }

  .dialog-product-info h2,
  .quiz-dialog h2,
  .checkout-dialog h2 {
    font-size: 30px;
    overflow-wrap: anywhere;
  }

  .product-profile-facts,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .dialog-product-buy {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .dialog-product-buy .button {
    width: 100%;
  }
}

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

  .paw-trail-print {
    display: none;
  }
}
