:root {
  --ink: #1e2023;
  --muted: #686b70;
  --line: #d9d9d5;
  --paper: #fdfdfb;
  --soft: #f1f0ea;
  --accent: #d94634;
  --accent-dark: #b42f22;
  --navy: #203a50;
  --white: #fff;
  --display: "Playfair Display", "Trebuchet MS", serif;
  --body: "DM Sans", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); }
.section,
.product-card,
.category-card,
.article-card,
.hero-story,
.toy-card {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease, box-shadow .25s ease;
}
.section.is-visible,
.product-card.is-visible,
.category-card.is-visible,
.article-card.is-visible,
.hero-story.is-visible,
.toy-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
body.toys-mode .site-header,
body.toys-mode .mobile-panel,
body.toys-mode .search-drawer,
body.toys-mode .site-footer {
  display: none !important;
}
body.toys-mode main#main-content {
  padding-top: 20px;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
body:not(.toys-mode) .product-card:hover .product-image-link img,
body:not(.toys-mode) .category-card:hover img,
body:not(.toys-mode) .article-card:hover img {
  transform: none;
}
ul { list-style: none; margin: 0; padding: 0; }

.page-width { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; top: -80px; left: 18px; padding: 12px 16px; background: var(--ink); color: var(--white); transition: top .2s; }
.skip-link:focus { top: 18px; }
.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; }

.utility-bar {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #6fc1c1 0%, #7ad1d0 50%, #6fc1c1 100%);
  color: #101519;
  font-size: .73rem;
  font-weight: 700;
}
.utility-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 32%, rgba(255,255,255,.32) 50%, transparent 68%);
  transform: translateX(-60%);
  animation: utility-bar-sheen 4.8s ease-in-out infinite;
  pointer-events: none;
}
.utility-content { min-height: 29px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.utility-content p, .utility-content a { display: inline-flex; align-items: center; gap: 4px; margin: 0; }
.utility-content svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.utility-content a { text-decoration: none; margin-left: auto; }
.utility-content a:hover, .utility-content a:focus-visible { text-decoration: underline; text-underline-offset: 3px; }
.utility-tagline {
  margin-left: auto;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(16, 21, 25, 0.82);
}
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(253, 253, 251, .97); backdrop-filter: blur(12px); border-bottom: 1px solid #c6c9c8; }
.header-main {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(185px, 1fr) auto minmax(185px, 1fr);
  align-items: center;
  gap: 10px;
  position: relative;
}
.header-right {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(16, 21, 25, 0.18);
  box-shadow: 0 6px 14px rgba(16, 21, 25, 0.14);
  background: #f4f4f2;
  flex: 0 0 auto;
}
.brand { display: inline-flex; flex-direction: row; align-items: center; gap: 12px; width: max-content; line-height: 1; }
.brand span { font: 700 clamp(1.2rem, 2.1vw, 1.7rem)/.9 var(--display); letter-spacing: -.045em; }
.brand em { margin-top: 4px; color: var(--accent); font-size: .53rem; font-style: normal; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.brand-symbol {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border: 1px solid rgba(32, 58, 80, 0.16);
  border-radius: 50%;
  background: rgba(111, 193, 193, 0.18);
  box-shadow: 0 8px 16px rgba(16, 21, 25, 0.08);
  color: var(--accent);
  overflow: hidden;
  padding: 4px;
}
.brand-symbol::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(111, 193, 193, 0.38);
  box-shadow: 0 0 0 0 rgba(111, 193, 193, 0.18);
  animation: brand-symbol-pulse 2.8s ease-in-out infinite;
  pointer-events: none;
}
.brand-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.brand-symbol svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-brand-symbol {
  width: 54px;
  height: 54px;
}
.header-main > .brand {
  grid-column: 2;
  transform: translateY(14px);
  gap: 14px;
}
.header-main > .brand span {
  max-width: none;
  color: #101113;
  font: 800 clamp(2rem, 3.4vw, 3.05rem)/1.02 "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  letter-spacing: -.045em;
  text-align: left;
  text-transform: none;
  white-space: nowrap;
  animation: brand-title-fade 5.2s ease-in-out infinite;
}
.header-main > .brand em { display: none; }
.header-search { display: flex; grid-column: 1; align-items: center; justify-self: start; width: 256px; height: 33px; border: 1px solid #909393; color: #111; background: rgba(255,255,255,.72); transition: border-color .2s ease, box-shadow .2s ease; }
.header-search input { width: 100%; height: 100%; min-width: 0; padding: 0 12px; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: .76rem; }
.header-search input::placeholder { color: #6a6c6e; }
.header-search:focus-within { outline: 2px solid #111; outline-offset: 2px; box-shadow: 0 0 0 3px rgba(217,70,52,.12); border-color: var(--accent); }
.header-search svg { flex: 0 0 auto; width: 18px; height: 18px; margin-right: 10px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.55; animation: search-icon-pulse 2.6s ease-in-out infinite; }
.header-actions { display: flex; grid-column: 3; justify-self: end; align-items: center; gap: 23px; font-size: .78rem; font-weight: 700; }
.header-actions > a:first-child { color: #285f67; }
.header-actions > a:first-child:hover, .header-actions > a:first-child:focus-visible { text-decoration: underline; text-underline-offset: 3px; }
.header-subscribe { padding: 12px 14px; background: #6fc1c1; color: #101519; }
.header-subscribe:hover, .header-subscribe:focus-visible { background: #54abac; }
.desktop-nav { min-height: 45px; }
.desktop-nav ul { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 45px; }
.desktop-nav li { flex: 1 1 auto; text-align: center; }
.desktop-nav .nav-item { display: flex; align-items: center; justify-content: center; min-height: 45px; }
.desktop-nav a { display: inline-flex; align-items: center; padding: 11px 0 9px; border-bottom: 2px solid transparent; font-size: .78rem; font-weight: 800; letter-spacing: -.01em; white-space: nowrap; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { border-bottom-color: #6fc1c1; }
.desktop-nav a.is-active { border-bottom-color: #6fc1c1; color: var(--accent-dark); }
.nav-toggle { display: grid; place-items: center; width: 25px; height: 32px; margin-left: 5px; padding: 0; border: 0; background: transparent; color: var(--ink); cursor: pointer; }
.nav-toggle svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; transition: transform .18s ease; }
.nav-item:hover .nav-toggle, .nav-toggle:hover, .nav-toggle:focus-visible { color: #a94739; }
.nav-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.mega-menu { display: none; position: absolute; z-index: 25; top: 100%; left: 0; width: 100%; min-height: 335px; border-top: 1px solid #9ea2a1; background: var(--paper); box-shadow: 0 14px 18px rgba(20, 24, 25, .14); }
.mega-menu.is-open { display: block; }
.mega-menu-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: start; gap: clamp(35px, 7vw, 116px); padding-top: 32px; padding-bottom: 43px; }
.mega-menu-column { min-width: 0; }
.mega-menu-heading { display: inline-flex; align-items: center; gap: 12px; padding: 0; border: 0; color: #101113; font-size: .84rem; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.mega-menu-heading:hover, .mega-menu-heading:focus-visible { color: #a94739; }
.mega-menu-heading span { font-size: 1.05rem; line-height: 1; text-decoration: none; }
.mega-menu-column ul { margin-top: 17px; }
.mega-menu-column li + li { margin-top: 15px; }
.mega-menu-column li a { color: #111; font-size: .78rem; font-weight: 700; line-height: 1.25; }
.mega-menu-column li a:hover, .mega-menu-column li a:focus-visible { color: #a94739; text-decoration: underline; text-underline-offset: 3px; }
.icon-button { border: 0; background: transparent; cursor: pointer; color: var(--ink); }
.search-button { display: none; grid-column: 3; grid-row: 1; justify-self: end; width: 34px; height: 34px; padding: 7px; }
.search-button svg { width: 100%; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.8; }
.menu-button { display: none; }
.mobile-panel, .search-drawer { display: none; }

.partner-logos {
  display: flex;
  align-items: center;
  gap: 10px;
}
.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 5px;
  border: 1px solid rgba(31, 34, 38, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle at top left, #ffffff, #f7f7f3 72%);
  box-shadow: 0 5px 12px rgba(16, 21, 25, 0.08);
  overflow: hidden;
  animation: partner-orbit 3.8s ease-in-out infinite;
}
.partner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(1.02) contrast(1.02);
}
.partner-item:nth-child(2) { animation-delay: .35s; }
.partner-item:nth-child(3) { animation-delay: .7s; }
.partner-item:nth-child(4) { animation-delay: 1.05s; }
.partner-item:nth-child(5) { animation-delay: 1.4s; }

@media (max-width: 960px) {
  .header-main > .brand {
    transform: translateY(10px);
    gap: 10px;
  }

  .header-main > .brand span {
    font-size: clamp(1.45rem, 4vw, 2.1rem);
  }

  .brand-symbol {
    width: 50px;
    height: 50px;
  }
}

.category-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 360px);
  align-items: center;
  gap: 28px;
  margin-top: 20px;
  padding: 32px 38px;
  border: 1px solid rgba(21, 28, 30, .06);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(217, 70, 52, .07), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(246, 242, 236, .96));
  box-shadow: 0 22px 48px rgba(21, 28, 30, .08);
}
.category-intro-copy { min-width: 0; }
.eyebrow { margin: 0 0 12px; color: var(--accent); font-size: .72rem; font-weight: 700; letter-spacing: .13em; line-height: 1.2; text-transform: uppercase; }
.category-intro h1, .section-heading h2, .newsletter h2 { margin: 0; font-family: var(--display); letter-spacing: -.055em; }
.category-intro h1 { font-size: clamp(2.45rem, 4.9vw, 4.25rem); line-height: .96; }
.category-description { width: min(620px, 100%); margin: 14px 0 0; color: var(--muted); font-size: .98rem; line-height: 1.55; }
.category-intro-stats {
  justify-self: end;
  width: min(100%, 304px);
  padding: 24px 24px;
  border: 1px solid rgba(21, 28, 30, .08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(245, 239, 231, .94)),
    var(--white);
  box-shadow: 0 24px 50px rgba(21, 28, 30, .12);
}
.category-intro-stats-label {
  margin: 0;
  color: var(--ink);
  font: 700 1.08rem/1.1 var(--display);
  letter-spacing: -.03em;
}
.category-intro-stars {
  margin: 10px 0 0;
  color: #c77b49;
  font-size: 1.28rem;
  letter-spacing: .14em;
}
.category-intro-metrics {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.category-intro-metric {
  padding-top: 14px;
  border-top: 1px solid rgba(21, 28, 30, .1);
}
.category-intro-metric strong {
  display: block;
  color: var(--ink);
  font: 800 clamp(1.45rem, 2.5vw, 1.92rem)/1 var(--display);
  letter-spacing: -.05em;
}
.category-intro-metric span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.35;
}
.hero { margin-top: 43px; }
.hero-story { position: relative; min-height: 542px; overflow: hidden; background: var(--navy); }
.hero-story > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(21, 28, 30, .82) 0%, rgba(21, 28, 30, .43) 46%, rgba(21, 28, 30, .04) 75%); }
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 38%, rgba(255,255,255,.06) 50%, transparent 62%);
  transform: translateX(-42%);
  animation: hero-sheen 7s ease-in-out infinite;
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 1; width: min(540px, calc(100% - 70px)); padding: 165px 0 64px; margin-left: 55px; color: var(--white); }
.hero-copy .eyebrow { color: #f2c4a5; }
.hero-copy h2 { max-width: 500px; margin: 0; font: 800 clamp(2.2rem, 4.5vw, 4.1rem)/1 var(--display); letter-spacing: -.055em; animation: hero-title-breathe 4.4s ease-in-out infinite; }
.hero-copy > p:not(.eyebrow) { max-width: 465px; margin: 19px 0 0; font-size: 1rem; line-height: 1.65; white-space: pre-line; }
.text-link { display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; }
.text-link span { margin-left: 5px; font-size: 1.07em; transition: transform .2s, opacity .2s; }
.text-link:hover span, .text-link:focus-visible span { display: inline-block; transform: translateX(4px); }
.light-link { margin-top: 24px; border-bottom: 1px solid currentColor; padding-bottom: 5px; animation: hero-link-pulse 2.9s ease-in-out infinite; }
.dark-link { color: var(--ink); }

@media (max-width: 920px) {
  .category-intro {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 8px;
    padding: 14px 16px;
  }

  .category-intro h1 {
    font-size: clamp(1.72rem, 5.4vw, 2.45rem);
  }

  .category-description {
    margin-top: 6px;
    width: 100%;
    font-size: .84rem;
    line-height: 1.34;
  }

  .category-intro-stats {
    justify-self: stretch;
    width: 100%;
    padding: 10px 14px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(21, 28, 30, .06);
  }

  .category-intro-stats-label {
    font-size: .88rem;
  }

  .category-intro-stars {
    margin-top: 4px;
    font-size: .88rem;
  }

  .category-intro-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
  }

  .category-intro-metric {
    padding-top: 8px;
  }

  .category-intro-metric strong {
    font-size: 1rem;
  }

  .category-intro-metric span {
    font-size: .68rem;
    line-height: 1.18;
  }
}

@keyframes utility-bar-sheen {
  0%, 58% {
    transform: translateX(-60%);
    opacity: 0;
  }

  66% {
    opacity: 1;
  }

  100% {
    transform: translateX(60%);
    opacity: 0;
  }
}

@keyframes brand-symbol-pulse {
  0%,
  100% {
    opacity: .35;
    transform: scale(1);
  }

  50% {
    opacity: .85;
    transform: scale(1.06);
  }
}

@keyframes brand-title-fade {
  0%,
  100% {
    opacity: 1;
    filter: saturate(1);
  }

  50% {
    opacity: .92;
    filter: saturate(1.08);
  }
}

@keyframes hero-sheen {
  0%,
  60% {
    transform: translateX(-42%);
    opacity: 0;
  }

  72% {
    opacity: 1;
  }

  100% {
    transform: translateX(42%);
    opacity: 0;
  }
}

@keyframes hero-title-breathe {
  0%,
  100% {
    letter-spacing: -.055em;
    text-shadow: 0 0 0 rgba(255,255,255,0);
  }

  50% {
    letter-spacing: -.04em;
    text-shadow: 0 0 18px rgba(255,255,255,.08);
  }
}

@keyframes hero-link-pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .82;
  }
}

@keyframes shop-link-breathe {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }

  50% {
    opacity: .84;
    transform: translateY(-1px);
  }
}

@keyframes shop-link-line {
  0%,
  100% {
    opacity: .28;
    transform: scaleX(.72);
  }

  50% {
    opacity: .82;
    transform: scaleX(1);
  }
}

@keyframes search-icon-pulse {
  0%,
  100% {
    opacity: .78;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes partner-orbit {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 5px 12px rgba(16, 21, 25, 0.08);
    opacity: 1;
  }

  50% {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 18px rgba(16, 21, 25, 0.12);
    opacity: .92;
  }
}

@media (prefers-reduced-motion: reduce) {
  .utility-bar::before,
  .brand-symbol::after,
  .header-main > .brand span,
  .shop-link,
  .read-review-link,
  .shop-link::after,
  .read-review-link::after,
  .header-search svg,
  .partner-item,
  .hero-overlay::after,
  .hero-copy h2,
  .light-link,
  .toy-card .toy-cart-button,
  .toy-card .toy-cart-button::before {
    animation: none;
  }
}

.section { padding-top: 104px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 31px; }
.section-heading h2 { font-size: clamp(2rem, 3.7vw, 3.05rem); line-height: 1; }
.centered-heading { justify-content: center; text-align: center; }
.slider-controls { display: flex; gap: 8px; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-height: 100%;
  padding: 28px 22px;
  border: 1px solid rgba(32, 58, 80, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f5ef 100%);
  box-shadow: 0 10px 24px rgba(20, 24, 25, 0.06);
  text-align: center;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(111, 193, 193, 0.22);
  color: var(--accent-dark);
  box-shadow: inset 0 0 0 1px rgba(32, 58, 80, 0.08);
}

.trust-icon svg {
  width: 28px;
  height: 28px;
}

.trust-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: -.03em;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.7;
}
.round-button { display: grid; place-items: center; width: 39px; height: 39px; border: 1px solid var(--ink); border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; font-size: 1rem; transition: .2s; }
.round-button:hover, .round-button:focus-visible { background: var(--ink); color: var(--white); }
.product-viewport { overflow: hidden; padding-bottom: 4px; }
.featured { margin-top: 18px; }
.category-intro,
.featured,
.hero,
.latest,
.trust {
  scroll-margin-top: 150px;
}
.product-grid { display: grid; grid-auto-columns: calc((100% - 72px) / 4); grid-auto-flow: column; gap: 24px; transition: transform .42s cubic-bezier(.22,.61,.36,1); }
.product-card {
  min-width: 0;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.product-card.is-dimmed {
  opacity: .48;
  transform: scale(.985);
}
.product-card.is-active {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(217, 70, 52, .2);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(246, 242, 236, .96));
  box-shadow: 0 18px 34px rgba(21, 28, 30, .1);
}
.product-image-link { display: block; background: #f3f2ed; aspect-ratio: 1 / 1; overflow: hidden; }
.product-image-link img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .5s; }
.product-card:hover .product-image-link img { transform: scale(1.045); }
.product-content { padding: 15px 2px 0; }
.product-brand, .article-category { margin: 0 0 8px; color: var(--accent); font-size: .67rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.product-card h3, .article-card h3 { margin: 0; font: 700 1.1rem/1.18 var(--display); letter-spacing: -.03em; }
.product-card h3 a:hover, .article-card h3 a:hover { text-decoration: underline; text-underline-offset: 3px; }
.product-rating { margin: 8px 0 5px; color: #8a5a00; font-size: .74rem; font-weight: 800; letter-spacing: .03em; }
.product-description { margin: 0 0 10px; color: var(--muted); font-size: .85rem; line-height: 1.55; }
.product-price { margin: 0 0 14px; font-size: .82rem; font-weight: 600; }
.product-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.shop-link, .read-review-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--accent);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  animation: shop-link-breathe 3s ease-in-out infinite;
}
.shop-link::after, .read-review-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  opacity: .38;
  transform: scaleX(.72);
  transform-origin: center;
  animation: shop-link-line 3s ease-in-out infinite;
}
.shop-link:hover, .read-review-link:hover { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px; }
.mail-symbol { display: grid; place-items: center; flex: 0 0 auto; width: 52px; height: 52px; border: 1px solid var(--ink); border-radius: 50%; font-size: 1.3rem; }
.newsletter h2 { max-width: 500px; font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.05; }
.newsletter-form { display: grid; grid-template-columns: minmax(210px, 300px) auto; position: relative; width: min(100%, 450px); }
.newsletter-form input { min-width: 0; height: 45px; padding: 0 14px; border: 1px solid var(--ink); border-right: 0; outline: none; background: rgba(255,255,255,.65); }
.newsletter-form input:focus { box-shadow: inset 0 0 0 2px var(--ink); }
.newsletter-form button { height: 45px; padding: 0 18px; border: 1px solid var(--ink); background: var(--ink); color: var(--white); cursor: pointer; font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; transition: background .2s; }
.newsletter-form button:hover, .newsletter-form button:focus-visible { background: var(--accent); border-color: var(--accent); }
.form-status { grid-column: 1 / -1; min-height: 18px; margin: 7px 0 0; font-size: .76rem; font-weight: 600; }

.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.category-card { min-height: 363px; background: var(--soft); }
.category-card a { display: block; position: relative; height: 100%; overflow: hidden; color: var(--white); }
.category-card img { width: 100%; height: 100%; min-height: 363px; object-fit: cover; transition: transform .6s; }
.category-card a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(16,20,21,.78), rgba(16,20,21,0) 68%); }
.category-card-copy { position: absolute; z-index: 1; bottom: 0; left: 0; right: 0; padding: 26px; }
.category-card-copy p { margin: 0 0 7px; color: #ffd4af; font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.category-card-copy h3 { max-width: 270px; margin: 0; font: 700 1.75rem/1.03 var(--display); letter-spacing: -.045em; }
.category-card-copy span { display: inline-block; margin-top: 16px; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: .73rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.category-card-copy b { margin-left: 4px; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.article-card { border-bottom: 1px solid var(--line); padding-bottom: 19px; }
.article-image-link { display: block; overflow: hidden; aspect-ratio: 1.44 / 1; background: var(--soft); }
.article-image-link img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.article-content { padding-top: 17px; }
.article-card h3 { font-size: clamp(1.22rem, 2vw, 1.55rem); }
.article-excerpt { margin: 11px 0 15px; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.article-link { border-bottom: 1px solid currentColor; padding-bottom: 4px; font-size: .72rem; }

.site-footer { margin-top: 105px; padding-top: 60px; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 47px; }
.footer-brand .brand { align-items: flex-start; }
.footer-brand p { max-width: 310px; margin: 18px 0 0; color: #c8c8c5; font-size: .86rem; line-height: 1.6; }
.footer-label { margin: 0 0 15px; color: #e8b890; font-size: .69rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.footer-links li + li { margin-top: 9px; }
.footer-links a { color: #e8e8e5; font-size: .84rem; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; min-height: 58px; border-top: 1px solid #4d4f52; color: #bdbebb; font-size: .72rem; }
.footer-bottom a:hover { color: var(--white); }

.product-card.is-hidden, .category-card.is-hidden, .article-card.is-hidden { display: none; }

.toy-review {
  margin-top: 32px;
}

.toy-review-shell {
  padding: 34px;
  border: 1px solid #d9d9d5;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f3 100%);
  box-shadow: 0 10px 28px rgba(20, 24, 25, 0.06);
}

.toy-back-home,
.digital-back-home,
.sports-back-home,
.smart-back-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.toy-back-home:hover,
.toy-back-home:focus-visible,
.digital-back-home:hover,
.digital-back-home:focus-visible,
.sports-back-home:hover,
.sports-back-home:focus-visible,
.smart-back-home:hover,
.smart-back-home:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
}

.smart-review-shell {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}

.smart-review-header h2 {
  max-width: 980px;
}

.smart-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.smart-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(32, 58, 80, 0.2);
  background: #ffffff;
  color: #203a50;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.smart-review-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.smart-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}

.smart-cta-button.primary {
  background: var(--ink);
  color: var(--white);
}

.smart-cta-button.secondary {
  background: var(--white);
  color: var(--ink);
}

.smart-cta-button.promo {
  background: #0d2f57;
  border-color: #0d2f57;
  color: #ffffff;
}

.smart-cta-button:hover,
.smart-cta-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(32, 58, 80, 0.15);
}

.smart-cta-button.primary:hover,
.smart-cta-button.primary:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
}

.smart-cta-button.promo:hover,
.smart-cta-button.promo:focus-visible {
  background: #17477f;
  border-color: #17477f;
}

.smart-verdict-box {
  margin: 30px 0;
  padding: 28px;
  border: 1px solid rgba(32, 58, 80, 0.16);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
}

.smart-verdict-box h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: -.04em;
}

.smart-rating-label {
  margin: 12px 0 4px;
  color: var(--muted);
  font-size: .83rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.smart-rating-score {
  margin: 0;
  color: #102b44;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.05em;
}

.smart-verdict-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.smart-verdict-grid div {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(32, 58, 80, 0.12);
}

.smart-verdict-grid h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.smart-verdict-grid ul {
  margin: 0;
  padding: 0;
}

.smart-verdict-grid li {
  margin: 8px 0;
  font-size: .94rem;
  font-weight: 600;
  color: #1e2f3e;
}

.smart-review-copy p + p {
  margin-top: 16px;
}

.smart-comparison-wrap {
  margin: 26px 0 34px;
  overflow-x: auto;
}

.smart-comparison-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  border: 1px solid rgba(32, 58, 80, 0.18);
  background: #ffffff;
}

.smart-comparison-table th,
.smart-comparison-table td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(32, 58, 80, 0.12);
  text-align: left;
  font-size: .9rem;
}

.smart-comparison-table th {
  background: #eef6ff;
  color: #102b44;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.smart-comparison-table tr:last-child td {
  border-bottom: 0;
}

.smart-inline-product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0f3354;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.smart-inline-product-link:hover,
.smart-inline-product-link:focus-visible {
  color: var(--accent);
}

.smart-performance {
  margin: 6px 0 32px;
}

.smart-performance h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -.04em;
}

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

.smart-performance-card {
  border: 1px solid rgba(32, 58, 80, 0.14);
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(20, 24, 25, 0.06);
}

.smart-performance-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.smart-performance-card h4 {
  margin: 12px 14px 4px;
  font-size: 1rem;
}

.smart-performance-score {
  margin: 0 14px;
  color: #102b44;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -.03em;
}

.smart-performance-stars {
  margin: 6px 14px 14px;
  color: #f2a900;
  font-size: 1rem;
  letter-spacing: .09em;
}

.smart-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.smart-gallery-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(32, 58, 80, 0.12);
  box-shadow: 0 8px 20px rgba(20, 24, 25, 0.08);
  min-height: 220px;
}

.smart-gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform .5s ease;
}

.smart-gallery-card:hover img {
  transform: scale(1.04);
}

.smart-final-cta {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(32, 58, 80, 0.14);
  border-radius: 24px;
  background: #ffffff;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.smart-final-cta-image {
  border-radius: 18px;
  overflow: hidden;
  min-height: 360px;
  background: #ffffff;
  border: 1px solid rgba(32, 58, 80, 0.1);
}

.smart-final-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.smart-final-cta-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
}

.smart-final-cta-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  letter-spacing: -.05em;
}

.smart-final-cta-copy p {
  margin: 14px 0 0;
  color: #2d3b47;
  font-size: 1.02rem;
  line-height: 1.7;
}

.smart-final-stars {
  margin-top: 14px;
  color: #f2a900;
  font-size: 1.28rem;
  letter-spacing: .1em;
}

.toy-review-header {
  margin-bottom: 28px;
}

.toy-review-header h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.toy-review-intro {
  max-width: 800px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.toy-review-copy {
  max-width: 860px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.toy-review-copy p {
  margin: 0;
}

.digital-pill-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 28px;
}

.digital-pill-grid span {
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(248, 229, 200, 0.8);
  color: #7b4f25;
  font-size: .92rem;
  font-weight: 700;
}

.digital-review-copy {
  margin-bottom: 36px;
}

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

.review-highlights div {
  background: rgba(254, 245, 236, 0.9);
  border: 1px solid rgba(221, 200, 164, 0.55);
  border-radius: 22px;
  padding: 24px;
}

.review-highlights strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.review-highlights p {
  margin: 0;
  color: #5a4a36;
  line-height: 1.7;
}

.digital-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 10px;
}

.digital-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(20, 24, 25, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.digital-card-image-wrap {
  overflow: hidden;
  min-height: 420px;
}

.digital-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.digital-card:hover img,
.digital-card:focus-within img {
  transform: scale(1.04);
}

.digital-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
  flex: 1;
}

.digital-card-body p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 600;
}

.digital-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s, background .2s, box-shadow .2s;
  box-shadow: 0 18px 40px rgba(129, 85, 26, 0.18);
}

.digital-action-button:hover,
.digital-action-button:focus-visible {
  background: #9f692f;
  transform: translateY(-1px);
}

.sports-user-reviews {
  margin-top: 30px;
}

.sports-user-reviews .section-heading {
  margin-bottom: 22px;
}

.sports-user-reviews .section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.sports-user-reviews .review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 12px;
}

.sports-user-reviews .review-card {
  padding: 26px;
}

.sports-user-reviews .review-card h3 {
  font-size: 1.1rem;
}

.sports-user-reviews .review-card p {
  color: var(--ink);
}

.digital-cta {
  margin-top: 32px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(254,248,239,0.95));
  border: 1px solid rgba(221, 200, 164, 0.45);
}

.digital-cta p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 760px;
}

@media (max-width: 960px) {
  .sports-user-reviews .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .smart-performance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .smart-final-cta {
    grid-template-columns: 1fr;
  }
  .review-highlights,
  .digital-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .review-highlights,
  .digital-image-grid {
    grid-template-columns: 1fr;
  }

  .smart-verdict-grid,
  .smart-gallery-grid,
  .smart-performance-grid {
    grid-template-columns: 1fr;
  }

  .smart-performance-card img {
    height: 220px;
  }

  .digital-card-image-wrap {
    min-height: 320px;
  }

  .digital-cta {
    flex-direction: column;
    align-items: stretch;
  }
}

.toy-image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.toy-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(20, 24, 25, 0.06);
  height: 100%;
}

.toy-card-image-wrap {
  overflow: hidden;
}

.toy-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform .45s ease;
}

.toy-card:hover img {
  transform: scale(1.03);
}

.toy-card-body {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 14px 14px 4px;
}

.toy-card-body p {
  margin: 0;
  color: var(--ink);
  font-size: .86rem;
  line-height: 1.55;
  font-weight: 700;
  text-align: center;
  width: 100%;
}

.toy-card .toy-cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: calc(100% - 28px);
  margin: auto 14px 14px;
  padding: 12px 16px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 0 0 rgba(20, 24, 25, 0);
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s, opacity .2s, filter .2s;
  animation: toy-button-pulse 2.1s ease-in-out infinite;
}

.toy-card .toy-cart-button::before {
  content: '';
  position: absolute;
  inset: -35% -70%;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, .16) 50%, transparent 65%);
  transform: translateX(-35%);
  opacity: 0;
  pointer-events: none;
  animation: toy-button-shimmer 3.4s ease-in-out infinite;
}

.toy-card .toy-cart-button:hover,
.toy-card .toy-cart-button:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  animation-play-state: paused;
  box-shadow: 0 0 0 4px rgba(228, 137, 76, 0.14), 0 10px 22px rgba(228, 137, 76, 0.16);
}

.toy-card .toy-cart-button:hover::before,
.toy-card .toy-cart-button:focus-visible::before {
  opacity: 1;
}

@keyframes toy-button-pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 rgba(20, 24, 25, 0);
    filter: brightness(1);
  }

  50% {
    opacity: .88;
    box-shadow: 0 0 0 7px rgba(20, 24, 25, 0.07);
    filter: brightness(1.06);
  }
}

@keyframes toy-button-shimmer {
  0%,
  62% {
    transform: translateX(-35%);
    opacity: 0;
  }

  72% {
    opacity: .6;
  }

  100% {
    transform: translateX(35%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .toy-card .toy-cart-button {
    animation: none;
    transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
  }

  .toy-card .toy-cart-button::before {
    animation: none;
  }
}

@media (max-width: 960px) {
  .header-main { min-height: 62px; grid-template-columns: 1fr auto 1fr; }
  .header-avatar { width: 42px; height: 42px; }
  .utility-content { min-height: 24px; gap: 16px; font-size: .64rem; }
  .utility-tagline { font-size: .58rem; }
  .header-main > .brand { transform: translateY(4px); gap: 8px; }
  .header-main > .brand span { font-size: clamp(1.15rem, 3.2vw, 1.6rem); }
  .brand-symbol { width: 40px; height: 40px; }
  .header-right { gap: 6px; }
  .partner-logos { gap: 6px; }
  .partner-item { width: 48px; height: 48px; }
  .desktop-nav, .mega-menu, .mega-menu.is-open { display: none; }
  .header-search, .header-actions { display: none; }
  .search-button { display: grid; }
  .menu-button { display: flex; flex-direction: column; justify-content: center; gap: 4px; width: 34px; height: 34px; padding: 7px; }
  .menu-button span { width: 20px; height: 1.5px; background: currentColor; transition: .2s; }
  .menu-button.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .menu-button.is-open span:nth-child(2) { opacity: 0; }
  .menu-button.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
  .mobile-panel.is-open { display: block; position: fixed; z-index: 19; top: 107px; inset-inline: 0; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: 0 12px 18px rgba(0,0,0,.08); }
  .mobile-panel nav { width: min(1180px, calc(100% - 48px)); margin: auto; }
  .mobile-panel li { border-top: 1px solid var(--line); }
  .mobile-panel li:first-child { border-top: 0; }
  .mobile-panel a { display: block; padding: 16px 2px; font-size: .9rem; font-weight: 700; }
  .search-drawer.is-open { display: block; position: fixed; z-index: 18; top: 107px; inset-inline: 0; padding: 23px 0 25px; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: 0 12px 18px rgba(0,0,0,.08); }
  .search-drawer-content label { display: block; margin-bottom: 10px; font-family: var(--display); font-size: 1.2rem; }
  .search-field { display: flex; }
  .search-field input { min-width: 0; flex: 1; height: 45px; padding: 0 13px; border: 1px solid var(--ink); outline: none; }
  .search-field button { padding: 0 17px; border: 1px solid var(--ink); background: var(--ink); color: var(--white); font-weight: 700; cursor: pointer; }
  .search-note { margin: 8px 0 0; color: var(--muted); font-size: .74rem; }
  .section { padding-top: 40px; }
  .section-heading { margin-bottom: 12px; }
  .section-heading h2 { font-size: clamp(1.55rem, 5vw, 2.1rem); }
  .featured { margin-top: 4px; }
  .product-grid { grid-auto-columns: calc((100% - 24px) / 2); }
  .newsletter-content { padding-top: 35px; padding-bottom: 35px; align-items: flex-start; flex-direction: column; gap: 26px; }
  .newsletter-form { width: min(100%, 530px); }
  .category-grid { grid-template-columns: repeat(3, 1fr); gap: 13px; }
  .category-card, .category-card img { min-height: 320px; }
  .category-card-copy { padding: 18px; }
  .category-card-copy h3 { font-size: 1.36rem; }
}

@media (max-width: 640px) {
  .page-width { width: min(100% - 32px, 1180px); }
  .header-avatar { width: 44px; height: 44px; }
  .utility-content { justify-content: center; min-height: 31px; }
  .utility-content p { display: none; }
  .header-main { min-height: 63px; }
  .section { padding-top: 40px; }
  .section-heading { margin-bottom: 12px; }
  .section-heading h2 { font-size: clamp(1.55rem, 5vw, 2.1rem); }
  .featured { margin-top: 4px; }
  .mobile-panel.is-open, .search-drawer.is-open { top: 92px; }
  .category-intro { grid-template-columns: 1fr; gap: 14px; margin-top: 8px; padding: 14px 14px; border-radius: 18px; }
  .category-description { font-size: .84rem; line-height: 1.34; }
  .category-intro-stats { justify-self: stretch; padding: 10px 12px; border-radius: 16px; }
  .category-intro-stars { font-size: .88rem; }
  .category-intro-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 8px; }
  .category-intro-metric { padding-top: 8px; }
  .featured { margin-top: 4px; }
  .category-intro,
  .featured,
  .hero,
  .latest,
  .trust { scroll-margin-top: 108px; }
  .hero { width: 100%; margin-top: 31px; }
  .hero-story { min-height: 500px; }
  .hero-overlay { background: linear-gradient(0deg, rgba(21, 28, 30, .84), rgba(21, 28, 30, .12) 78%); }
  .hero-copy { width: calc(100% - 42px); margin-left: 21px; padding: 241px 0 34px; }
  .hero-copy h2 { font-size: 2.45rem; }
  .hero-copy > p:not(.eyebrow) { margin-top: 13px; font-size: .87rem; line-height: 1.5; }
  .hero-copy .light-link { margin-top: 16px; }
  .section { padding-top: 40px; }
  .section-heading { align-items: flex-start; margin-bottom: 12px; }
  .section-heading h2 { font-size: 1.7rem; }
  .section-heading .eyebrow { margin-bottom: 8px; }
  .product-grid { grid-auto-columns: calc(100% - 55px); gap: 15px; }
  .product-content { padding-top: 11px; }
  .newsletter { margin-top: 68px; }
  .newsletter-content { gap: 21px; min-height: 0; }
  .mail-symbol { display: none; }
  .newsletter h2 { font-size: 2rem; }
  .newsletter-form { grid-template-columns: minmax(0, 1fr) auto; }
  .newsletter-form button { padding: 0 13px; }
  .category-grid, .article-grid { grid-template-columns: 1fr; gap: 20px; }
  .category-card, .category-card img { min-height: 270px; }
  .category-card-copy { padding: 21px; }
  .latest .section-heading > .dark-link { display: none; }
  .article-grid { gap: 31px; }
  .article-card { display: grid; grid-template-columns: 112px 1fr; gap: 14px; padding-bottom: 19px; }
  .article-image-link { aspect-ratio: 1; }
  .article-content { padding-top: 0; }
  .article-card h3 { font-size: 1.22rem; }
  .article-excerpt { display: none; }
  .article-link { margin-top: 11px; font-size: .68rem; }
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .smart-review-shell {
    padding: 24px 18px;
  }
  .smart-cta-button {
    width: 100%;
    min-width: 0;
  }
  .site-footer { margin-top: 68px; padding-top: 42px; }
  .toy-image-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .toy-card img { height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { min-height: 72px; }
}

.customer-reviews {
  margin-top: 18px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.review-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-height: 100%;
  padding: 24px 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f7f5ef 100%);
  box-shadow: 0 10px 22px rgba(20, 24, 25, 0.05);
  text-align: center;
}

.review-avatar {
  width: 104px;
  height: 104px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(217, 70, 52, 0.18);
  box-shadow: 0 8px 18px rgba(20, 24, 25, 0.12);
}

.review-stars {
  color: #f2a900;
  font-size: 1.08rem;
  letter-spacing: 0.12em;
}

.review-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.28rem;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (max-width: 960px) {
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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