body[data-page="product-detail"] {
  --pdp-ink: #08274f;
  --pdp-ink-2: #12365f;
  --pdp-muted: rgba(11, 24, 43, 0.68);
  --pdp-line: rgba(8, 39, 79, 0.12);
  --pdp-orange: #f47718;
  --pdp-orange-dark: #bd570f;
  --pdp-paper: #fffaf0;
  --pdp-card: rgba(255, 255, 255, 0.88);
  background:
    radial-gradient(circle at 10% 2%, rgba(244, 119, 24, 0.14), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(37, 127, 124, 0.1), transparent 24rem),
    linear-gradient(180deg, #f8f3e9 0%, #fffaf0 42%, #eef6f7 100%);
  color: var(--pdp-ink);
}

html body[data-page="product-detail"] main.product-detail-page {
  display: grid !important;
  gap: clamp(1rem, 2.2vw, 1.7rem) !important;
  width: min(1320px, calc(100% - clamp(1.1rem, 5vw, 4.5rem))) !important;
  margin: 0 auto !important;
  padding: clamp(1rem, 2.4vw, 2rem) 0 clamp(3.6rem, 6vw, 5rem) !important;
}

html body[data-page="product-detail"] .product-detail-switch {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  gap: 0.28rem;
  padding: 0.28rem;
  overflow-x: auto;
  border: 1px solid rgba(8, 39, 79, 0.12);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(8, 39, 79, 0.08);
}

html body[data-page="product-detail"] .product-detail-switch a {
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.72rem;
  border-radius: 0.42rem;
  color: rgba(8, 39, 79, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

html body[data-page="product-detail"] .product-detail-switch a.is-active {
  background: var(--pdp-ink);
  color: #fff;
}

html body[data-page="product-detail"] .product-detail-page .product-detail-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 0.92fr) minmax(21.5rem, 0.58fr) !important;
  gap: clamp(1rem, 2.2vw, 1.65rem) !important;
  align-items: start !important;
  justify-items: stretch !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  text-align: left !important;
}

html body[data-page="product-detail"] .product-detail-page .product-detail-media-shell {
  display: grid !important;
  grid-template-columns: clamp(4.6rem, 6.2vw, 5.8rem) minmax(0, 1fr) !important;
  gap: clamp(0.7rem, 1.2vw, 0.95rem) !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  padding: clamp(0.55rem, 1vw, 0.75rem) !important;
  border: 1px solid rgba(8, 39, 79, 0.11) !important;
  border-radius: 0.85rem !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 231, 0.9)),
    #fff;
  box-shadow: 0 22px 50px rgba(8, 39, 79, 0.12);
}

html body[data-page="product-detail"] .product-detail-page .product-detail-media-frame {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 100%;
  margin: 0;
  border: 1px solid rgba(8, 39, 79, 0.08);
  border-radius: 0.72rem;
  background:
    radial-gradient(circle at 50% 18%, rgba(244, 119, 24, 0.13), transparent 18rem),
    linear-gradient(180deg, #fff5e6, #ffffff);
  aspect-ratio: 1 / 0.92 !important;
}

html body[data-page="product-detail"] .product-detail-hero-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

html body[data-page="product-detail"] .product-detail-hero-image[data-fit="cover"] {
  object-fit: cover;
}

html body[data-page="product-detail"] .product-detail-page .product-detail-media-strip {
  grid-column: 1;
  grid-row: 1;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  align-content: start;
  gap: 0.55rem !important;
}

html body[data-page="product-detail"] .product-detail-thumb {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 39, 79, 0.13);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

html body[data-page="product-detail"] .product-detail-thumb:hover,
html body[data-page="product-detail"] .product-detail-thumb:focus-visible,
html body[data-page="product-detail"] .product-detail-thumb.is-active {
  border-color: var(--pdp-orange);
  box-shadow: 0 9px 18px rgba(244, 119, 24, 0.16);
  outline: none;
}

html body[data-page="product-detail"] .product-detail-thumb:hover {
  transform: translateY(-1px);
}

html body[data-page="product-detail"] .product-detail-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(4.2rem, 6.2vw, 5.4rem);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

html body[data-page="product-detail"] .product-detail-thumb img[data-fit="contain"] {
  object-fit: contain;
  background: #fff8ea;
}

html body[data-page="product-detail"] .product-detail-page .product-detail-copy {
  display: grid !important;
  align-content: start !important;
  justify-items: stretch !important;
  gap: clamp(0.62rem, 1.15vw, 0.86rem) !important;
  order: 0 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(1rem, 1.7vw, 1.42rem) !important;
  border: 1px solid rgba(8, 39, 79, 0.12);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 50px rgba(8, 39, 79, 0.1);
  text-align: left !important;
}

html body[data-page="product-detail"] .product-detail-back {
  width: fit-content;
  color: rgba(8, 39, 79, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
}

html body[data-page="product-detail"] .product-detail-back::before {
  content: "< ";
}

html body[data-page="product-detail"] .product-detail-page .product-detail-kicker {
  justify-self: start !important;
  margin: 0 !important;
  color: var(--pdp-orange-dark);
  font-size: clamp(0.72rem, 0.9vw, 0.82rem) !important;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  text-align: left !important;
  text-transform: none;
}

html body[data-page="product-detail"] h1,
html body[data-page="product-detail"] h2,
html body[data-page="product-detail"] h3,
html body[data-page="product-detail"] p {
  margin: 0;
}

html body[data-page="product-detail"] .product-detail-page .product-detail-copy h1 {
  width: 100% !important;
  max-width: 13ch !important;
  margin: 0 !important;
  color: var(--pdp-ink);
  font-family: var(--font-display, var(--font-sans));
  font-size: clamp(2.05rem, 3.35vw, 3.3rem) !important;
  font-weight: 900;
  letter-spacing: 0 !important;
  line-height: 1.02 !important;
  text-align: left !important;
  text-wrap: balance;
}

html body[data-page="product-detail"] .product-detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem 0.72rem;
  align-items: center;
  color: rgba(8, 39, 79, 0.7);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
}

html body[data-page="product-detail"] .product-detail-rating {
  color: var(--pdp-orange);
}

html body[data-page="product-detail"] .product-detail-sku {
  color: rgba(8, 39, 79, 0.56);
}

html body[data-page="product-detail"] .product-detail-page .product-detail-description {
  width: 100% !important;
  max-width: 36rem !important;
  margin: 0 !important;
  color: rgba(11, 24, 43, 0.74) !important;
  font-size: clamp(0.92rem, 1.04vw, 1.02rem) !important;
  font-weight: 760;
  line-height: 1.48 !important;
  text-align: left !important;
  text-wrap: pretty;
}

html body[data-page="product-detail"] .product-detail-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start !important;
  gap: 0.4rem;
}

html body[data-page="product-detail"] .product-detail-badges span {
  display: inline-flex;
  min-height: 1.72rem;
  align-items: center;
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(244, 119, 24, 0.2);
  border-radius: 999px;
  background: #fff3d8;
  color: var(--pdp-ink);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

html body[data-page="product-detail"] .product-detail-price-row {
  display: flex !important;
  align-items: end;
  justify-content: space-between !important;
  gap: 1rem;
  width: 100% !important;
  margin-top: 0.08rem;
  padding-top: 0.76rem;
  border-top: 1px solid rgba(8, 39, 79, 0.1);
  text-align: left !important;
}

html body[data-page="product-detail"] .product-detail-price-row span {
  color: rgba(8, 39, 79, 0.62);
  font-size: 0.82rem;
  font-weight: 900;
}

html body[data-page="product-detail"] .product-detail-price-row strong {
  color: var(--pdp-orange);
  font-family: var(--font-display, var(--font-sans));
  font-size: clamp(2rem, 3.1vw, 2.9rem);
  font-weight: 900;
  line-height: 0.95;
}

html body[data-page="product-detail"] .product-detail-page .product-detail-actions {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 0.58rem !important;
  width: 100% !important;
  justify-content: stretch !important;
  justify-items: stretch !important;
  margin: 0 !important;
}

html body[data-page="product-detail"] .product-detail-actions a {
  display: inline-flex;
  min-height: 2.85rem;
  align-items: center;
  justify-content: center;
  padding: 0.76rem 0.9rem;
  border-radius: 0.48rem;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}

html body[data-page="product-detail"] .product-detail-primary-action {
  border: 1px solid var(--pdp-orange);
  background: var(--pdp-orange);
  color: #fff;
  box-shadow: 0 14px 24px rgba(244, 119, 24, 0.23);
}

html body[data-page="product-detail"] .product-detail-secondary-action {
  border: 1px solid rgba(8, 39, 79, 0.15);
  background: rgba(255, 255, 255, 0.92);
  color: var(--pdp-ink);
}

html body[data-page="product-detail"] .product-detail-trust {
  display: grid;
  gap: 0.42rem;
  padding: 0.24rem 0 0;
}

html body[data-page="product-detail"] .product-detail-trust span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.4rem;
  color: rgba(8, 39, 79, 0.76);
  font-size: 0.8rem;
  font-weight: 820;
  line-height: 1.25;
}

html body[data-page="product-detail"] .product-detail-trust iconify-icon {
  flex: 0 0 auto;
  color: var(--pdp-ink);
  font-size: 1.05rem;
}

html body[data-page="product-detail"] .product-detail-page .product-detail-facts {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0.45rem;
  width: 100% !important;
  margin: 0.2rem 0 0;
}

html body[data-page="product-detail"] .product-detail-facts div {
  min-width: 0;
  padding: 0.56rem 0.62rem;
  border: 1px solid rgba(8, 39, 79, 0.09);
  border-radius: 0.42rem;
  background: rgba(246, 249, 251, 0.86);
}

html body[data-page="product-detail"] .product-detail-facts dt {
  color: rgba(8, 39, 79, 0.54);
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1.1;
}

html body[data-page="product-detail"] .product-detail-facts dd {
  margin: 0.2rem 0 0;
  color: var(--pdp-ink);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.16;
}

html body[data-page="product-detail"] .product-detail-overview,
html body[data-page="product-detail"] .product-detail-scenes,
html body[data-page="product-detail"] .product-detail-included,
html body[data-page="product-detail"] .product-detail-sheet {
  display: grid;
  gap: clamp(0.9rem, 2vw, 1.25rem);
  padding: clamp(1rem, 2.35vw, 1.65rem);
  border: 1px solid rgba(8, 39, 79, 0.1);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(8, 39, 79, 0.08);
}

html body[data-page="product-detail"] .product-detail-overview {
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  align-items: start;
}

html body[data-page="product-detail"] .product-detail-section-head,
html body[data-page="product-detail"] .product-detail-overview > div:first-child {
  display: grid;
  gap: 0.32rem;
  justify-items: start;
  text-align: left;
}

html body[data-page="product-detail"] .product-detail-overview h2,
html body[data-page="product-detail"] .product-detail-section-head h2 {
  color: var(--pdp-ink);
  font-family: var(--font-display, var(--font-sans));
  font-size: clamp(1.45rem, 2.35vw, 2.25rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.06;
}

html body[data-page="product-detail"] .product-detail-overview p,
html body[data-page="product-detail"] .product-detail-section-head p,
html body[data-page="product-detail"] .product-detail-sheet [data-product-sheet-copy] {
  max-width: 46rem;
  color: rgba(11, 24, 43, 0.68);
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1.48;
}

html body[data-page="product-detail"] .product-detail-feature-grid,
html body[data-page="product-detail"] .product-detail-scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

html body[data-page="product-detail"] .product-detail-feature-grid article,
html body[data-page="product-detail"] .product-detail-scene-grid article {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 39, 79, 0.09);
  border-radius: 0.62rem;
  background: rgba(255, 255, 255, 0.82);
}

html body[data-page="product-detail"] .product-detail-feature-grid article {
  display: grid;
  gap: 0.45rem;
  padding: 0.9rem;
}

html body[data-page="product-detail"] .product-detail-feature-grid iconify-icon {
  color: var(--pdp-orange);
  font-size: 1.38rem;
}

html body[data-page="product-detail"] .product-detail-feature-grid h3,
html body[data-page="product-detail"] .product-detail-scene-grid h3 {
  color: var(--pdp-ink);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.16;
}

html body[data-page="product-detail"] .product-detail-feature-grid p,
html body[data-page="product-detail"] .product-detail-scene-grid p {
  color: rgba(11, 24, 43, 0.66);
  font-size: 0.8rem;
  font-weight: 730;
  line-height: 1.36;
}

html body[data-page="product-detail"] .product-detail-scene-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  background: #fff5e4;
}

html body[data-page="product-detail"] .product-detail-scene-grid article > div {
  display: grid;
  gap: 0.28rem;
  padding: 0.72rem;
}

html body[data-page="product-detail"] .product-detail-included ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

html body[data-page="product-detail"] .product-detail-included li {
  display: grid;
  gap: 0.42rem;
  min-width: 0;
  padding: 0.72rem;
  border: 1px solid rgba(244, 119, 24, 0.16);
  border-radius: 0.54rem;
  background: rgba(255, 246, 218, 0.78);
  color: var(--pdp-ink);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.24;
}

html body[data-page="product-detail"] .product-detail-included iconify-icon {
  color: var(--pdp-orange);
  font-size: 1.15rem;
}

html body[data-page="product-detail"] .product-detail-spec-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1fr);
  gap: clamp(0.9rem, 2vw, 1.35rem);
  align-items: start;
}

html body[data-page="product-detail"] .product-detail-spec-grid {
  display: grid;
  gap: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 39, 79, 0.1);
  border-radius: 0.62rem;
  background: rgba(255, 255, 255, 0.82);
}

html body[data-page="product-detail"] .product-detail-spec-grid div {
  display: grid;
  grid-template-columns: minmax(7rem, 0.38fr) minmax(0, 1fr);
  min-width: 0;
  border-bottom: 1px solid rgba(8, 39, 79, 0.08);
}

html body[data-page="product-detail"] .product-detail-spec-grid div:last-child {
  border-bottom: 0;
}

html body[data-page="product-detail"] .product-detail-spec-grid dt,
html body[data-page="product-detail"] .product-detail-spec-grid dd {
  margin: 0;
  padding: 0.72rem 0.8rem;
  font-size: 0.82rem;
  line-height: 1.28;
}

html body[data-page="product-detail"] .product-detail-spec-grid dt {
  background: rgba(8, 39, 79, 0.04);
  color: rgba(8, 39, 79, 0.62);
  font-weight: 900;
}

html body[data-page="product-detail"] .product-detail-spec-grid dd {
  color: var(--pdp-ink);
  font-weight: 850;
}

html body[data-page="product-detail"] .product-detail-sheet-preview {
  display: block;
  max-height: min(62vh, 42rem);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 39, 79, 0.1);
  border-radius: 0.72rem;
  background: #fff;
  box-shadow: 0 18px 42px rgba(8, 39, 79, 0.12);
}

html body[data-page="product-detail"] .product-detail-sheet-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 1180px) {
  html body[data-page="product-detail"] main.product-detail-page {
    width: min(58rem, calc(100% - clamp(1rem, 4vw, 2.75rem))) !important;
  }

  html body[data-page="product-detail"] .product-detail-page .product-detail-hero {
    grid-template-columns: minmax(0, 1fr) !important;
    max-width: none !important;
    justify-items: stretch !important;
    text-align: left !important;
  }

  html body[data-page="product-detail"] .product-detail-page .product-detail-copy {
    width: 100% !important;
    max-width: none !important;
    justify-items: stretch !important;
    text-align: left !important;
  }

  html body[data-page="product-detail"] .product-detail-overview {
    grid-template-columns: minmax(0, 1fr);
  }

  html body[data-page="product-detail"] .product-detail-page .product-detail-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  html body[data-page="product-detail"] main.product-detail-page {
    gap: 0.82rem !important;
    width: calc(100% - 0.85rem) !important;
    padding-top: 0.78rem !important;
    padding-bottom: 4.5rem !important;
  }

  html body[data-page="product-detail"] .product-detail-switch {
    width: 100%;
  }

  html body[data-page="product-detail"] .product-detail-switch a {
    min-height: 2.08rem;
    padding: 0.42rem 0.54rem;
    font-size: 0.72rem;
  }

  html body[data-page="product-detail"] .product-detail-page .product-detail-media-shell {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0.48rem !important;
    padding: 0.46rem !important;
    border-radius: 0.54rem !important;
  }

  html body[data-page="product-detail"] .product-detail-page .product-detail-media-frame {
    grid-column: 1;
    grid-row: 1;
    border-radius: 0.48rem;
    aspect-ratio: 1 / 0.96 !important;
  }

  html body[data-page="product-detail"] .product-detail-page .product-detail-media-strip {
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0.36rem !important;
  }

  html body[data-page="product-detail"] .product-detail-thumb {
    border-radius: 0.38rem;
  }

  html body[data-page="product-detail"] .product-detail-thumb img {
    min-height: 3.8rem;
  }

  html body[data-page="product-detail"] .product-detail-page .product-detail-copy,
  html body[data-page="product-detail"] .product-detail-overview,
  html body[data-page="product-detail"] .product-detail-scenes,
  html body[data-page="product-detail"] .product-detail-included,
  html body[data-page="product-detail"] .product-detail-sheet {
    padding: 0.88rem !important;
    border-radius: 0.54rem;
  }

  html body[data-page="product-detail"] .product-detail-page .product-detail-copy h1 {
    width: 100% !important;
    max-width: 12.5ch !important;
    font-size: clamp(1.72rem, 8vw, 2.32rem) !important;
    line-height: 1.04 !important;
  }

  html body[data-page="product-detail"] .product-detail-page .product-detail-description {
    font-size: 0.88rem !important;
    line-height: 1.42 !important;
  }

  html body[data-page="product-detail"] .product-detail-meta-row {
    font-size: 0.72rem;
  }

  html body[data-page="product-detail"] .product-detail-badges {
    gap: 0.28rem;
  }

  html body[data-page="product-detail"] .product-detail-badges span {
    min-height: 1.5rem;
    padding: 0.24rem 0.42rem;
    font-size: 0.66rem;
  }

  html body[data-page="product-detail"] .product-detail-price-row strong {
    font-size: 1.86rem;
  }

  html body[data-page="product-detail"] .product-detail-actions a {
    min-height: 2.62rem;
    padding: 0.68rem 0.72rem;
    font-size: 0.8rem;
  }

  html body[data-page="product-detail"] .product-detail-page .product-detail-facts,
  html body[data-page="product-detail"] .product-detail-feature-grid,
  html body[data-page="product-detail"] .product-detail-scene-grid,
  html body[data-page="product-detail"] .product-detail-included ul,
  html body[data-page="product-detail"] .product-detail-spec-layout {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  html body[data-page="product-detail"] .product-detail-feature-grid article {
    padding: 0.78rem;
  }

  html body[data-page="product-detail"] .product-detail-scene-grid {
    gap: 0.55rem;
  }

  html body[data-page="product-detail"] .product-detail-scene-grid article {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  html body[data-page="product-detail"] .product-detail-scene-grid img {
    min-height: 0;
    aspect-ratio: 1 / 0.58;
  }

  html body[data-page="product-detail"] .product-detail-spec-grid div {
    grid-template-columns: minmax(5.7rem, 0.42fr) minmax(0, 1fr);
  }

  html body[data-page="product-detail"] .product-detail-spec-grid dt,
  html body[data-page="product-detail"] .product-detail-spec-grid dd {
    padding: 0.62rem 0.68rem;
    font-size: 0.76rem;
  }

  html body[data-page="product-detail"] .product-detail-sheet-preview {
    max-height: 34rem;
  }
}

/* Product detail UI optimization: match the ChatGPT ecommerce detail target. */
html body[data-page="product-detail"] {
  --pdp-soft-panel: rgba(255, 247, 234, 0.82);
  --pdp-green: #15834d;
}

html body[data-page="product-detail"] main.product-detail-page {
  gap: clamp(1.05rem, 2vw, 1.55rem) !important;
}

html body[data-page="product-detail"] .product-detail-switch {
  border-radius: 0.78rem;
  background: rgba(255, 255, 255, 0.86);
}

html body[data-page="product-detail"] .product-detail-switch a {
  border-radius: 0.58rem;
}

html body[data-page="product-detail"] .product-detail-page .product-detail-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(23rem, 0.54fr) !important;
}

html body[data-page="product-detail"] .product-detail-page .product-detail-media-shell,
html body[data-page="product-detail"] .product-detail-page .product-detail-copy {
  border-radius: 1.05rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 242, 0.9)),
    #fff;
  box-shadow: 0 22px 52px rgba(8, 39, 79, 0.12);
}

html body[data-page="product-detail"] .product-detail-page .product-detail-media-frame {
  border-radius: 0.9rem;
  background:
    radial-gradient(circle at 50% 10%, rgba(244, 119, 24, 0.12), transparent 20rem),
    linear-gradient(180deg, #fff7ea, #ffffff);
}

html body[data-page="product-detail"] .product-detail-thumb {
  border-radius: 0.72rem;
  background: #fffaf2;
}

html body[data-page="product-detail"] .product-detail-thumb img {
  border-radius: 0.58rem;
}

html body[data-page="product-detail"] .product-detail-page .product-detail-copy {
  gap: clamp(0.68rem, 1.08vw, 0.88rem) !important;
  padding: clamp(1.08rem, 1.65vw, 1.45rem) !important;
}

html body[data-page="product-detail"] .product-detail-back {
  display: inline-flex;
  min-height: 2.05rem;
  align-items: center;
  padding: 0.36rem 0.68rem;
  border: 1px solid rgba(8, 39, 79, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
}

html body[data-page="product-detail"] .product-detail-page .product-detail-copy h1 {
  max-width: 12.8ch !important;
  font-size: clamp(2.25rem, 3.35vw, 3.5rem) !important;
  line-height: 1.02 !important;
}

html body[data-page="product-detail"] .product-detail-meta-row {
  gap: 0.38rem 0.72rem;
}

html body[data-page="product-detail"] .product-detail-description {
  color: rgba(11, 24, 43, 0.76) !important;
}

html body[data-page="product-detail"] .product-detail-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.48rem;
}

html body[data-page="product-detail"] .product-detail-badges span {
  justify-content: center;
  min-height: 2.28rem;
  border-color: rgba(8, 39, 79, 0.08);
  border-radius: 0.62rem;
  background: rgba(255, 247, 234, 0.92);
  font-size: 0.74rem;
}

html body[data-page="product-detail"] .product-detail-price-row {
  align-items: center;
  margin-top: 0.2rem;
  padding: 0.84rem 0.95rem;
  border: 1px solid rgba(244, 119, 24, 0.14);
  border-radius: 0.78rem;
  background: var(--pdp-soft-panel);
}

html body[data-page="product-detail"] .product-detail-price-row span {
  color: rgba(8, 39, 79, 0.62);
}

html body[data-page="product-detail"] .product-detail-price-row::after {
  content: "In stock";
  display: inline-flex;
  min-height: 1.7rem;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.62rem;
  border-radius: 999px;
  background: rgba(21, 131, 77, 0.12);
  color: var(--pdp-green);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

html[lang="zh-CN"] body[data-page="product-detail"] .product-detail-price-row::after {
  content: "现货";
}

html[lang="es"] body[data-page="product-detail"] .product-detail-price-row::after {
  content: "Disponible";
}

html body[data-page="product-detail"] .product-detail-actions a {
  min-height: 3.05rem;
  border-radius: 0.72rem;
  font-size: 0.94rem;
}

html body[data-page="product-detail"] .product-detail-primary-action {
  background: linear-gradient(180deg, #ff7a1a, var(--pdp-orange)) !important;
}

html body[data-page="product-detail"] .product-detail-secondary-action {
  border-color: rgba(8, 39, 79, 0.24);
  background: rgba(255, 255, 255, 0.96);
}

html body[data-page="product-detail"] .product-detail-trust {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

html body[data-page="product-detail"] .product-detail-trust span {
  min-height: 3.25rem;
  padding: 0.58rem 0.64rem;
  border: 1px solid rgba(8, 39, 79, 0.08);
  border-radius: 0.62rem;
  background: rgba(255, 250, 242, 0.9);
  font-size: 0.74rem;
}

html body[data-page="product-detail"] .product-detail-page .product-detail-facts {
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 39, 79, 0.09);
  border-radius: 0.72rem;
  background: rgba(255, 255, 255, 0.86);
}

html body[data-page="product-detail"] .product-detail-facts div {
  border: 0;
  border-right: 1px solid rgba(8, 39, 79, 0.08);
  border-bottom: 1px solid rgba(8, 39, 79, 0.08);
  border-radius: 0;
  background: transparent;
}

html body[data-page="product-detail"] .product-detail-facts div:nth-child(2n) {
  border-right: 0;
}

@media (max-width: 1180px) {
  html body[data-page="product-detail"] .product-detail-page .product-detail-hero {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

@media (max-width: 760px) {
  html body[data-page="product-detail"] main.product-detail-page {
    width: calc(100% - 0.7rem) !important;
  }

  html body[data-page="product-detail"] .product-detail-page .product-detail-media-shell {
    padding: 0.38rem !important;
  }

  html body[data-page="product-detail"] .product-detail-page .product-detail-media-frame {
    aspect-ratio: 1 / 0.76 !important;
  }

  html body[data-page="product-detail"] .product-detail-thumb img {
    min-height: 3rem;
  }

  html body[data-page="product-detail"] .product-detail-page .product-detail-copy {
    padding: 0.95rem !important;
  }

  html body[data-page="product-detail"] .product-detail-page .product-detail-copy h1 {
    max-width: 11.5ch !important;
    font-size: clamp(1.9rem, 8.4vw, 2.38rem) !important;
    text-align: center !important;
    justify-self: center;
  }

  html body[data-page="product-detail"] .product-detail-page .product-detail-kicker,
  html body[data-page="product-detail"] .product-detail-meta-row,
  html body[data-page="product-detail"] .product-detail-page .product-detail-description {
    text-align: center !important;
    justify-content: center;
  }

  html body[data-page="product-detail"] .product-detail-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.38rem;
  }

  html body[data-page="product-detail"] .product-detail-badges span {
    min-height: 2rem;
    white-space: normal;
  }

  html body[data-page="product-detail"] .product-detail-price-row {
    padding: 0.72rem;
  }

  html body[data-page="product-detail"] .product-detail-price-row strong {
    font-size: 2rem;
  }

  html body[data-page="product-detail"] .product-detail-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  html body[data-page="product-detail"] .product-detail-trust span {
    display: grid;
    justify-items: center;
    min-height: 4rem;
    padding: 0.48rem 0.28rem;
    font-size: 0.62rem;
    text-align: center;
  }
}
