.toy-product-page {
  --toy-promo-height: 34px;
  --toy-nav-height: 84px;
  --toy-paper: #fcf9f4;
  --toy-ink: #2c2822;
  --toy-muted: #74695f;
  --toy-line: rgba(82, 63, 47, 0.13);
  --toy-accent: #b95c3b;
  --toy-accent-dark: #95472f;
  min-width: 280px;
  background: var(--toy-paper);
  color: var(--toy-ink);
  overflow-x: hidden;
}

.toy-product-page .toy-product-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.toy-product-page .toy-product-promo {
  position: fixed;
  inset: 0 0 auto;
  z-index: 310;
  height: var(--toy-promo-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  background: var(--toy-accent);
  color: #fff;
  font-size: clamp(9px, 2.2vw, 12px);
  font-weight: 650;
  letter-spacing: 0.08px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.toy-product-page #mainNav.toy-product-nav {
  position: fixed;
  top: var(--toy-promo-height);
  left: 0;
  right: 0;
  z-index: 300;
  min-height: 0;
  height: var(--toy-nav-height);
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  justify-content: initial;
  padding: 8px clamp(14px, 3.8vw, 48px);
  border-bottom: 1px solid rgba(112, 73, 53, 0.08);
  background: rgba(252, 249, 244, 0.97);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.toy-product-page .toy-product-menu-button {
  width: 44px;
  height: 44px;
  display: grid;
  grid-column: 1;
  justify-self: start;
  place-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--toy-ink);
  cursor: pointer;
}

.toy-product-page .toy-product-menu-button span {
  width: 20px;
  height: 1.5px;
  display: block;
  border-radius: 2px;
  background: currentColor;
}

.toy-product-page .toy-product-logo {
  position: absolute;
  left: 50%;
  width: min(142px, 42vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #a85e45;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transform: translateX(-50%);
}

.toy-product-page .toy-product-logo svg {
  width: 45px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
}

.toy-product-page .toy-product-logo strong {
  margin-top: -1px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(16px, 4.8vw, 22px);
  font-weight: 500;
  letter-spacing: 0.035em;
}

.toy-product-page .toy-product-logo small {
  margin-top: 4px;
  font-size: clamp(5px, 1.35vw, 7px);
  font-weight: 700;
  letter-spacing: 0.28em;
}

.toy-product-page .toy-product-nav-actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 2px;
}

.toy-product-page .toy-product-nav-action {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--toy-ink);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.toy-product-page .toy-product-nav-action svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.toy-product-page .toy-product-nav-action:hover {
  background: rgba(185, 92, 59, 0.08);
  color: var(--toy-accent-dark);
}

.toy-product-page .toy-product-nav-action:active {
  transform: scale(0.96);
}

.toy-product-page .toy-product-cart-count {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border: 2px solid var(--toy-paper);
  border-radius: 999px;
  background: var(--toy-accent);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}

.toy-product-page .product-menu {
  position: fixed;
  inset: calc(var(--toy-promo-height) + var(--toy-nav-height)) auto auto 0;
  z-index: 290;
  width: min(330px, calc(100% - 24px));
  max-height: calc(100dvh - var(--toy-promo-height) - var(--toy-nav-height));
  padding: 18px;
  overflow-y: auto;
  border: 1px solid var(--toy-line);
  border-radius: 0 0 20px 0;
  background: #fffdf9;
  box-shadow: 18px 22px 54px rgba(57, 41, 29, 0.14);
  transform: translateX(-110%);
  transition: transform 0.25s ease;
}

.toy-product-page .product-menu.open {
  transform: none;
}

.toy-product-page .product-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--toy-ink);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.toy-product-page .product-menu a:hover {
  background: #f3ece3;
}

.toy-product-page .product-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: calc(var(--toy-promo-height) + var(--toy-nav-height) + 22px) 0 76px;
}

.toy-product-page .toy-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(38px, 5vw, 56px);
  align-items: start;
}

.toy-product-page .product-gallery {
  min-width: 0;
  margin: 0;
}

.toy-product-page .product-main-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(82, 63, 47, 0.07);
  border-radius: 18px;
  background: #eee6dc;
  box-shadow: none;
}

.toy-product-page .product-main-image img {
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
  mix-blend-mode: normal;
}

.toy-product-page .product-copy {
  position: static;
  min-width: 0;
  padding-top: 7px;
}

.toy-product-page .product-eyebrow {
  margin: 0;
  color: var(--toy-accent-dark);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.25px;
  line-height: 1.25;
  text-transform: uppercase;
}

.toy-product-page .product-copy h1 {
  max-width: 620px;
  margin: 8px 0 0;
  overflow-wrap: anywhere;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3.7vw, 48px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.04;
  text-wrap: balance;
}

.toy-product-page .product-lead {
  max-width: 46ch;
  margin: 10px 0 0;
  color: var(--toy-muted);
  font-size: 14.5px;
  line-height: 1.55;
  text-wrap: pretty;
}

.toy-product-page .toy-buy-summary {
  margin-top: 21px;
}

.toy-product-page .toy-buy-row {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 17px;
}

.toy-product-page .toy-cash-price {
  min-width: 0;
}

.toy-product-page .toy-cash-price strong {
  display: block;
  color: var(--toy-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 3.8vw, 44px);
  font-variant-numeric: tabular-nums;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1;
}

.toy-product-page .toy-list-price {
  min-width: 0;
}

.toy-product-page .toy-list-price del {
  color: #8b8178;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  text-decoration-color: #8b8178;
  text-decoration-thickness: 1px;
}

.toy-product-page .toy-installment-preview {
  margin: 8px 0 0;
  color: var(--toy-muted);
  font-size: 12.5px;
  line-height: 1.5;
}

.toy-product-page .toy-installment-preview strong {
  color: var(--toy-accent-dark);
  font-variant-numeric: tabular-nums;
  font-weight: 750;
}

.toy-product-page .toy-product-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.toy-product-page .product-button {
  min-width: 0;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 13px;
  border: 1px solid var(--toy-accent);
  border-radius: 11px;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.toy-product-page .product-button.add-to-cart {
  background: var(--toy-accent);
  color: #fff;
}

.toy-product-page .product-button.add-to-cart:hover {
  border-color: var(--toy-accent-dark);
  background: var(--toy-accent-dark);
  transform: translateY(-1px);
}

.toy-product-page .product-button.whatsapp {
  background: transparent;
  color: var(--toy-accent-dark);
}

.toy-product-page .product-button.whatsapp:hover {
  background: #fff;
  transform: translateY(-1px);
}

.toy-product-page .product-button:active {
  transform: scale(0.985);
}

.toy-product-page .toy-disclosures {
  margin-top: 21px;
}

.toy-product-page .toy-disclosure-list {
  border-top: 1px solid var(--toy-line);
  border-bottom: 1px solid var(--toy-line);
}

.toy-product-page .toy-disclosure {
  border-bottom: 1px solid var(--toy-line);
}

.toy-product-page .toy-disclosure:last-child {
  border-bottom: 0;
}

.toy-product-page .toy-disclosure summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 8px;
  list-style: none;
  cursor: pointer;
}

.toy-product-page .toy-disclosure summary::-webkit-details-marker {
  display: none;
}

.toy-product-page .toy-disclosure summary:focus-visible {
  border-radius: 8px;
  outline: 3px solid rgba(185, 92, 59, 0.27);
  outline-offset: 2px;
}

.toy-product-page .toy-disclosure-label {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
}

.toy-product-page .toy-disclosure-label svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: #71675f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.toy-product-page .toy-disclosure summary strong {
  color: var(--toy-ink);
  font-size: 14px;
  font-weight: 620;
  line-height: 1.3;
}

.toy-product-page .toy-disclosure-chevron {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: #71675f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 0.2s ease;
}

.toy-product-page .toy-disclosure[open] .toy-disclosure-chevron {
  transform: rotate(180deg);
}

.toy-product-page .toy-disclosure-body {
  max-width: 620px;
  padding: 2px 38px 20px;
  animation: toy-detail-in 0.2s ease both;
}

.toy-product-page .toy-disclosure-body p {
  max-width: 60ch;
  margin: 0;
  color: var(--toy-muted);
  font-size: 13.5px;
  line-height: 1.58;
  text-wrap: pretty;
}

.toy-product-page .toy-disclosure-body p + p {
  margin-top: 8px;
}

.toy-product-page .toy-disclosure-body h3 {
  margin: 17px 0 6px;
  color: var(--toy-ink);
  font-size: 13px;
  line-height: 1.4;
}

.toy-product-page .toy-payment-rows {
  border-top: 1px solid var(--toy-line);
}

.toy-product-page .toy-payment-rows > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--toy-line);
  font-size: 12.5px;
}

.toy-product-page .toy-payment-rows span {
  color: var(--toy-muted);
}

.toy-product-page .toy-payment-rows strong {
  color: var(--toy-ink);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.toy-product-page .product-related {
  margin-top: 70px;
}

.toy-product-page .product-related .section-heading {
  align-items: center;
  margin-bottom: 18px;
}

.toy-product-page .product-related .section-heading h2 {
  font-size: clamp(27px, 3vw, 36px);
  letter-spacing: -0.025em;
}

.toy-product-page .product-related .section-heading a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  color: var(--toy-accent-dark);
}

.toy-product-page .related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.toy-product-page .related-card {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.toy-product-page .related-card:hover {
  box-shadow: none;
  transform: translateY(-3px);
}

.toy-product-page .related-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.12 / 1;
  padding: 14px;
  border-radius: 16px;
  background: #eee6dc;
  object-fit: contain;
  mix-blend-mode: normal;
}

.toy-product-page .related-card div {
  padding: 11px 2px 0;
}

.toy-product-page .related-card small {
  display: none;
}

.toy-product-page .related-card h3 {
  margin: 0 0 5px;
  color: var(--toy-ink);
  font-size: 17px;
  line-height: 1.2;
}

.toy-product-page .related-card strong {
  color: var(--toy-accent-dark);
  font-size: 12.5px;
}

.toy-product-page .product-footer {
  padding: 32px 20px;
  border-top: 1px solid var(--toy-line);
  background: var(--toy-paper);
  color: var(--toy-muted);
  text-align: center;
  font-size: 12px;
}

.toy-product-page #cwRoot .cw-fab,
.toy-product-page #cwRoot .cw-fab.cw-visible {
  display: none;
}

.toy-product-page .cw-panel {
  z-index: 1600;
}

.toy-product-page .cw-overlay {
  z-index: 1590;
}

.toy-product-page a:focus-visible,
.toy-product-page button:focus-visible {
  outline: 3px solid rgba(185, 92, 59, 0.3);
  outline-offset: 3px;
}

@keyframes toy-detail-in {
  from {
    opacity: 0;
    transform: translateY(-3px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .toy-product-page .product-shell {
    width: min(100% - 32px, 720px);
    padding-top: calc(var(--toy-promo-height) + var(--toy-nav-height) + 16px);
  }

  .toy-product-page .toy-product-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .toy-product-page .product-gallery {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .toy-product-page .product-copy {
    padding-top: 0;
  }
}

@media (max-width: 620px) {
  .toy-product-page {
    --toy-nav-height: 78px;
  }

  .toy-product-page #mainNav.toy-product-nav {
    padding-inline: 12px;
  }

  .toy-product-page .toy-product-logo {
    width: min(136px, 43vw);
  }

  .toy-product-page .product-menu {
    inset-block-start: calc(var(--toy-promo-height) + var(--toy-nav-height));
  }

  .toy-product-page .product-shell {
    padding-bottom: 66px;
  }

  .toy-product-page .product-main-image {
    border-radius: 14px;
  }

  .toy-product-page .product-main-image img {
    padding: 8px;
  }

  .toy-product-page .product-eyebrow {
    font-size: 10px;
  }

  .toy-product-page .product-copy h1 {
    margin-top: 7px;
    font-size: clamp(26px, 7.2vw, 30px);
    line-height: 1.07;
  }

  .toy-product-page .product-lead {
    margin-top: 8px;
    font-size: 13.5px;
  }

  .toy-product-page .toy-buy-summary {
    margin-top: 18px;
  }

  .toy-product-page .toy-cash-price strong {
    font-size: clamp(31px, 8.8vw, 35px);
  }

  .toy-product-page .toy-list-price del {
    font-size: 15.5px;
  }

  .toy-product-page .toy-installment-preview {
    margin-top: 7px;
    font-size: 12px;
  }

  .toy-product-page .toy-product-actions {
    gap: 9px;
    margin-top: 19px;
  }

  .toy-product-page .product-button {
    min-height: 49px;
    padding-inline: 9px;
    font-size: 12px;
  }

  .toy-product-page .toy-disclosures {
    margin-top: 20px;
  }

  .toy-product-page .toy-disclosure summary {
    min-height: 55px;
    padding-inline: 7px;
  }

  .toy-product-page .toy-disclosure-body {
    padding: 1px 32px 18px;
  }

  .toy-product-page .toy-payment-rows > div {
    gap: 12px;
    font-size: 12px;
  }

  .toy-product-page .product-related {
    margin-top: 52px;
  }

  .toy-product-page .product-related .section-heading {
    margin-bottom: 14px;
  }

  .toy-product-page .product-related .section-heading h2 {
    font-size: 25px;
  }

  .toy-product-page .related-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 1px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .toy-product-page .related-grid::-webkit-scrollbar {
    display: none;
  }

  .toy-product-page .related-card {
    min-width: 76%;
    scroll-snap-align: start;
  }

  .toy-product-page .related-card h3 {
    font-size: 16px;
  }

  .toy-product-page .cw-panel {
    height: min(91dvh, 790px);
  }

  .toy-product-page .cw-foot {
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 360px) {
  .toy-product-page .product-shell {
    width: calc(100% - 24px);
  }

  .toy-product-page .toy-product-logo {
    width: 118px;
  }

  .toy-product-page .toy-product-logo strong {
    font-size: 16px;
  }

  .toy-product-page .toy-product-logo small {
    font-size: 5px;
  }

  .toy-product-page .toy-product-nav-action {
    width: 40px;
  }

  .toy-product-page .toy-product-actions {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 8px;
  }

  .toy-product-page .product-button {
    font-size: 11.3px;
  }

  .toy-product-page .toy-payment-rows > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .toy-product-page .toy-payment-rows strong {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .toy-product-page .product-menu,
  .toy-product-page .toy-product-nav-action,
  .toy-product-page .product-button,
  .toy-product-page .toy-disclosure-chevron {
    transition: none;
  }

  .toy-product-page .toy-disclosure-body {
    animation: none;
  }
}
