/* Product detail page styles. Loaded only on /products/[slug] pages. */

/* Extracted from styles.css lines 463-468 */
.page-hero.product-detail-hero {
  background:
    linear-gradient(90deg, rgba(6,29,59,.98) 0%, rgba(6,29,59,.9) 35%, rgba(6,29,59,.56) 60%, rgba(6,29,59,.1) 100%),
    linear-gradient(180deg, rgba(6,29,59,.06), rgba(6,29,59,.24)),
    var(--detail-hero-image, url("assets/pi-hero-packaging.jpg")) center right/cover no-repeat;
}

/* Extracted from styles.css lines 2417-3081 */
.detail-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #edf2f7;
  box-shadow: var(--shadow);
}
.detail-gallery-stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.detail-gallery-slide {
  position: absolute;
  inset: 0;
  background: #edf2f7 center/cover no-repeat;
  opacity: 0;
  transform: translateX(4%);
  transition: opacity .42s ease, transform .5s ease;
}
.detail-gallery-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}
.detail-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.9);
  color: var(--navy);
  box-shadow: 0 12px 26px rgba(7,31,65,.14);
  cursor: pointer;
  transform: translateY(-50%);
}
.detail-gallery-arrow:hover {
  background: var(--navy);
  color: #fff;
}
.detail-gallery-arrow.prev { left: 16px; }
.detail-gallery-arrow.next { right: 16px; }
.detail-gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}
.detail-gallery-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.66);
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(7,31,65,.15);
}
.detail-gallery-dot.active {
  width: 24px;
  border-radius: 999px;
  background: #fff;
}
.product-detail-content {
  padding: 76px 0;
}
.product-detail-stack {
  display: grid;
  gap: 68px;
}
.product-detail-stack > section {
  min-width: 0;
  padding: 0;
}
.detail-section-head {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-bottom: 28px;
}
.detail-snapshot-section .detail-section-head,
.detail-overview-section .detail-section-head,
.detail-views-section .detail-section-head,
.product-faq-section .detail-section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.detail-snapshot-section .detail-section-head p:not(.eyebrow),
.detail-overview-section .detail-section-head p:not(.eyebrow),
.detail-views-section .detail-section-head p:not(.eyebrow),
.product-faq-section .detail-section-head p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}
.detail-section-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.06;
}
.detail-section-head p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.detail-gallery-large {
  max-width: 1120px;
  margin: 0 auto;
}
.detail-gallery-large .detail-gallery-stage {
  min-height: clamp(420px, 43vw, 600px);
}
.detail-gallery-large .detail-gallery-slide {
  background-size: cover;
}
.detail-gallery-large .detail-gallery-dots {
  position: static;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 14px;
  transform: none;
  padding: 16px;
  background: #fff;
}
.detail-gallery-thumbs .detail-gallery-dot {
  width: 100%;
  height: 86px;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #edf2f7 center/cover no-repeat;
  box-shadow: none;
}
.detail-gallery-thumbs .detail-gallery-dot.active {
  width: 100%;
  border-radius: 6px;
  border-color: var(--orange);
}
.detail-snapshot {
  display: grid;
  gap: 18px;
}
.snapshot-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.snapshot-highlights article {
  min-height: 118px;
  padding: 22px;
  border-right: 1px solid var(--line);
}
.snapshot-highlights article:last-child {
  border-right: 0;
}
.snapshot-highlights b {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}
.snapshot-highlights span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.detail-spec-table {
  width: min(100%, 980px);
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.detail-spec-table div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.detail-spec-table div:last-child {
  border-bottom: 0;
}
.detail-spec-table dt {
  color: var(--navy);
  font-weight: 900;
}
.detail-spec-table dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.detail-overview-grid,
.detail-technical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.detail-overview-grid article,
.detail-technical-grid article,
.detail-variation-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}
.detail-overview-grid b,
.detail-technical-grid h3,
.detail-variation-grid b {
  display: block;
  color: var(--navy);
}
.detail-overview-grid span,
.detail-technical-grid p,
.detail-technical-grid li,
.detail-variation-grid p {
  color: var(--muted);
  line-height: 1.7;
}
.detail-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.detail-tags {
  margin-top: 18px;
  justify-content: center;
}
.detail-tags span,
.tag-list span {
  padding: 8px 12px;
  border: 1px solid #d5e1ee;
  border-radius: 999px;
  background: #f8fbff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}
.soft-panel {
  margin-inline: calc((100vw - min(1200px, 100vw - 56px)) / -2);
  padding: 78px calc((100vw - min(1200px, 100vw - 56px)) / 2);
  background: var(--soft);
}
.detail-support-grid,
.detail-views-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.detail-views-section .detail-section-head,
.detail-views-grid {
  width: min(100%, 1120px);
}
.detail-views-section .detail-section-head,
.detail-views-grid,
.product-faq-section .detail-section-head,
.product-faq-section .faq-accordion,
.product-faq-section .btn {
  margin-left: auto;
  margin-right: auto;
}
.detail-support-grid article,
.detail-views-grid article {
  display: grid;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.detail-support-grid article {
  min-height: 300px;
  padding: 28px;
}
.detail-support-grid h3,
.detail-views-grid h3 {
  margin: 0 0 16px;
  color: var(--navy);
}
.detail-support-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}
.detail-views-grid article > div {
  height: 280px;
  background: #edf2f7 center/cover no-repeat;
}
.detail-views-grid h3,
.detail-views-grid p {
  padding: 0 22px;
}
.detail-views-grid h3 {
  margin-top: 20px;
}
.detail-views-grid p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
}
.detail-variation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.detail-variation-grid article {
  padding: 0;
  overflow: hidden;
}
.detail-variation-grid article > div {
  height: 260px;
  background: #edf2f7 center/cover no-repeat;
}
.detail-variation-grid b,
.detail-variation-grid p {
  padding: 0 20px;
}
.detail-variation-grid b {
  margin-top: 18px;
}
.detail-variation-grid p {
  margin-bottom: 20px;
}
.detail-technical-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #edf5fd;
  color: var(--blue);
  font-weight: 900;
  font-size: 12px;
}
.detail-technical-grid h3 {
  margin: 0 0 12px;
}
.detail-technical-grid ul {
  margin: 0;
  padding-left: 18px;
}
.product-faq-section {
  display: grid;
  gap: 20px;
}
.product-faq-section .faq-accordion {
  max-width: 900px;
}
.product-faq-section .btn {
  width: fit-content;
}

.detail-commerce-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: 34px;
  align-items: start;
}
.detail-commerce-gallery {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  overflow: visible;
  background: transparent;
}
.detail-commerce-stage-wrap {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #edf2f7;
}
.detail-commerce-gallery .detail-gallery-stage {
  min-height: clamp(460px, 39vw, 590px);
}
.detail-commerce-gallery .detail-gallery-slide {
  background-size: cover;
}
.detail-commerce-gallery .detail-gallery-dots {
  position: static;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 12px;
  padding: 0;
  transform: none;
}
.detail-commerce-gallery .detail-gallery-dot {
  width: 100%;
  height: 92px;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #edf2f7 center/cover no-repeat;
  box-shadow: 0 0 0 1px var(--line);
}
.detail-commerce-gallery .detail-gallery-dot.active {
  width: 100%;
  border-radius: 8px;
  border-color: var(--orange);
}
.detail-commerce-gallery .detail-gallery-arrow.prev {
  left: 18px;
}
.detail-commerce-gallery .detail-gallery-arrow.next {
  right: 18px;
}
.product-info-panel {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(7,31,65,.08);
}
.product-info-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}
.product-info-panel > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.product-key-specs {
  display: grid;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.product-key-specs div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.product-key-specs div:nth-child(2n) {
  background: #f8fbff;
}
.product-key-specs div:last-child {
  border-bottom: 0;
}
.product-key-specs dt {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}
.product-key-specs dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.quotation-note {
  display: grid;
  gap: 6px;
  padding: 15px;
  border: 1px solid #dbe6f2;
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fbff, #fff);
}
.quotation-note b {
  color: var(--navy);
}
.quotation-note span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.product-panel-cta {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}
.product-panel-cta .btn {
  width: 100%;
}
.product-panel-cta small {
  color: var(--muted);
  line-height: 1.6;
}
.quick-inquiry-form {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}
.quick-inquiry-form textarea {
  min-height: 92px;
}
.quick-inquiry-form .form-more-panel {
  grid-template-columns: repeat(2, 1fr);
}
.quick-inquiry-form .btn {
  width: 100%;
}
.quick-inquiry-form small {
  color: var(--muted);
  line-height: 1.55;
}
.detail-attribute-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.detail-attribute-strip article {
  padding: 22px;
  border-right: 1px solid var(--line);
}
.detail-attribute-strip article:last-child {
  border-right: 0;
}
.detail-attribute-strip b,
.detail-attribute-strip span {
  display: block;
}
.detail-attribute-strip b {
  margin-bottom: 8px;
  color: var(--navy);
}
.detail-attribute-strip span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.detail-option-grid,
.detail-delivery-grid,
.description-grid,
.related-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.detail-option-grid article,
.detail-delivery-grid article,
.description-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}
.detail-option-grid b {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}
.detail-option-grid span,
.detail-delivery-grid p,
.description-grid p {
  color: var(--muted);
  line-height: 1.7;
}
.detail-delivery-grid {
  grid-template-columns: repeat(3, 1fr);
}
.detail-delivery-grid article {
  display: flex;
  gap: 12px;
}
.detail-delivery-grid article span {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--blue);
}
.detail-delivery-grid p {
  margin: 0;
}
.detail-description-section .detail-section-head {
  max-width: 880px;
}
.description-grid {
  grid-template-columns: repeat(3, 1fr);
}
.description-grid h3 {
  margin: 0 0 10px;
  color: var(--navy);
}
.description-grid p {
  margin: 0;
}
.related-products-section {
  padding-top: 0;
}
.related-product-card a {
  display: grid;
  height: 100%;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}
.related-product-card a:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(7,31,65,.1);
}
.related-product-card div {
  min-height: 220px;
  background: #edf2f7 center/cover no-repeat;
}
.related-product-card span,
.related-product-card h3,
.related-product-card p,
.related-product-card b {
  padding-left: 20px;
  padding-right: 20px;
}
.related-product-card span {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.related-product-card h3 {
  margin: 8px 0 8px;
  color: var(--navy);
}
.related-product-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}
.related-product-card b {
  margin: auto 0 20px;
  color: var(--navy);
}


/* Extracted from styles.css lines 4484-5265 */
/* Product detail manufacturing boards */
.manufacturing-board {
  width: 100%;
  max-width: 100%;
}
.manufacturing-board .board-head {
  max-width: 900px;
}
.material-board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.material-sample-tile,
.finish-sample-tile {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(7,31,65,.06);
}
.material-sample-tile .material-visual {
  min-height: 180px;
  border: 0;
  border-radius: 0;
}
.material-sample-tile b {
  display: block;
  padding: 16px 18px 18px;
  color: var(--navy);
  font-size: 16px;
  text-align: center;
}
.material-sample-tile .kraft-paper {
  background:
    linear-gradient(135deg, rgba(255,255,255,.16), transparent 42%),
    repeating-linear-gradient(35deg, rgba(74,52,30,.16) 0 2px, transparent 2px 8px),
    linear-gradient(135deg, #a87943, #e0c294 58%, #b68447);
}
.material-sample-tile .ivory-board {
  background:
    linear-gradient(155deg, transparent 0 45%, rgba(17,42,74,.1) 46% 48%, transparent 49%),
    linear-gradient(135deg, #fff, #edf3f8 55%, #d9e2ec);
}
.material-sample-tile .ccnb {
  background:
    linear-gradient(150deg, #f8fafc 0 36%, #c4cad2 37% 61%, #eef2f6 62%),
    repeating-linear-gradient(0deg, rgba(12,35,64,.06) 0 1px, transparent 1px 7px);
}
.material-sample-tile .art-paper {
  background:
    radial-gradient(circle at 18% 28%, rgba(255,255,255,.95), transparent 20%),
    linear-gradient(135deg, #fdfefe, #e8eef6 55%, #fff);
}
.material-sample-tile .specialty-paper {
  background:
    radial-gradient(circle at 28% 32%, rgba(255,255,255,.58), transparent 22%),
    repeating-linear-gradient(45deg, rgba(27,55,86,.08) 0 2px, transparent 2px 11px),
    linear-gradient(135deg, #d8d1c4, #f2eee5 52%, #c4beb2);
}
.material-sample-tile .colored-card {
  background:
    linear-gradient(135deg, #0a274a 0 24%, #f7f9fc 25% 42%, #0f6c7a 43% 62%, #b9964a 63% 78%, #bd516f 79%);
}
.finish-sample-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.finish-sample-tile {
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.finish-sample-tile .finish-visual {
  min-height: 184px;
  border: 0;
  border-radius: 0;
  padding: 24px;
}
.finish-sample-tile b {
  padding: 16px 18px 4px;
  color: var(--navy);
  font-size: 16px;
  text-align: center;
}
.finish-sample-tile small {
  display: block;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}
.finish-sample-tile .finish-visual.spot-uv {
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.38), transparent 28%),
    linear-gradient(135deg, #09233f, #0f5f69);
}
.finish-sample-tile .finish-visual.spot-uv span {
  box-shadow: inset 0 0 20px rgba(255,255,255,.5), 0 0 28px rgba(255,255,255,.22);
}
.finish-sample-tile .finish-visual.embossing {
  background: linear-gradient(145deg, #283241, #101827);
}
.finish-sample-tile .finish-visual.embossing span {
  color: #edf3fa;
  text-shadow: 0 -2px 0 rgba(255,255,255,.28), 0 5px 0 rgba(0,0,0,.5);
}
.finish-sample-tile .finish-visual.debossing {
  background: linear-gradient(145deg, #e1e6ed, #aab5c2);
}
.finish-sample-tile .finish-visual.debossing span {
  color: #778292;
  text-shadow: 0 2px 0 rgba(255,255,255,.55), 0 -2px 0 rgba(56,67,83,.35);
}
.finish-sample-tile .finish-visual.gold-foil {
  background: linear-gradient(135deg, #101827, #142033 45%, #0b1320);
}
.finish-sample-tile .finish-visual.gold-foil span {
  color: #ffe493;
  background: linear-gradient(90deg, #9f7427, #fff0aa, #d5a43e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 12px rgba(230,176,60,.34);
}
.finish-sample-tile .finish-visual.silver-foil {
  background: linear-gradient(135deg, #0d1728, #26374e);
}
.finish-sample-tile .finish-visual.silver-foil span {
  background: linear-gradient(90deg, #8794a5, #fff, #b7c4d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 12px rgba(220,232,245,.3);
}
.finish-sample-tile .finish-visual.matte {
  background: linear-gradient(135deg, #1f2937, #0e1420);
}
.finish-sample-tile .finish-visual.matte span {
  color: rgba(238,244,250,.72);
  text-shadow: none;
}
.finish-sample-tile .finish-visual.gloss {
  background:
    linear-gradient(120deg, transparent 0 38%, rgba(255,255,255,.55) 39% 42%, transparent 43%),
    linear-gradient(135deg, #152238, #091525);
}
.finish-sample-tile .finish-visual.gloss span {
  color: #fff;
  text-shadow: 0 0 16px rgba(255,255,255,.42);
}
.finish-sample-tile .finish-visual.soft-touch {
  background: linear-gradient(135deg, #2d3848, #111827 55%, #3d495a);
}
.finish-sample-tile .finish-visual.soft-touch span {
  color: #e7edf5;
  opacity: .9;
  filter: blur(.25px);
}
.customization-board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.customization-board-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(7,31,65,.06);
}
.custom-board-visual {
  position: relative;
  min-height: 240px;
  background: #edf2f7;
  overflow: hidden;
}
.custom-board-visual:before,
.custom-board-visual:after {
  content: "";
  position: absolute;
}
.structure-design-board {
  background: linear-gradient(135deg, #eaf0f6, #fff);
}
.structure-design-board:before {
  left: 18%;
  top: 24%;
  width: 64%;
  height: 48%;
  border: 2px dashed #315b85;
  border-radius: 8px;
  transform: perspective(260px) rotateX(48deg);
}
.structure-design-board:after {
  left: 26%;
  top: 18%;
  width: 48%;
  height: 32%;
  border: 2px solid #0b2a4d;
  border-bottom: 0;
  transform: skewX(-12deg);
}
.size-fit-board {
  background:
    linear-gradient(90deg, rgba(0,64,128,.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0,64,128,.08) 1px, transparent 1px),
    #f7fafd;
  background-size: 28px 28px;
}
.size-fit-board:before {
  left: 14%;
  bottom: 24%;
  width: 34%;
  height: 34%;
  border-radius: 5px;
  background: #0d2d52;
  box-shadow: 92px -44px 0 #dfe7ef, 162px 4px 0 #b9c6d5;
}
.size-fit-board:after {
  left: 18%;
  right: 16%;
  top: 20%;
  height: 1px;
  border-top: 2px dashed #ff5a1f;
  box-shadow: 0 122px 0 #ff5a1f;
}
.artwork-print-board {
  background: linear-gradient(135deg, #f7fafc, #e8eef6);
}
.artwork-print-board:before {
  left: 16%;
  top: 18%;
  width: 68%;
  height: 62%;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #0c2a4d 0 33%, #fff 34% 62%, #ff5a1f 63% 75%, #d5e1ee 76%);
  box-shadow: 0 16px 34px rgba(7,31,65,.16);
}
.artwork-print-board:after {
  left: 24%;
  top: 30%;
  width: 48%;
  height: 7px;
  background: repeating-linear-gradient(90deg, #0b2a4d 0 28px, transparent 28px 38px);
}
.customization-board-card > div:last-child {
  padding: 24px;
}
.customization-board-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 25px;
}
.customization-board-card p,
.customization-board-card li {
  color: var(--muted);
  line-height: 1.65;
}
.customization-board-card ul {
  display: grid;
  gap: 7px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.customization-board-card li:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.process-flow-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 20px;
}
.process-flow-step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(7,31,65,.055);
  overflow: hidden;
}
.process-flow-step:not(:nth-child(4n)):after {
  content: ">";
  position: absolute;
  top: 86px;
  right: -18px;
  z-index: 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #c7d6e7;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(7,31,65,.08);
}
.process-flow-image {
  position: relative;
  min-height: 170px;
  background: #edf2f7;
  overflow: hidden;
}
.process-flow-image span {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(7,31,65,.12);
}
.process-flow-image:before,
.process-flow-image:after {
  content: "";
  position: absolute;
}
.process-flow-image.requirements {
  background: linear-gradient(135deg, #f7fafc, #e5edf5);
}
.process-flow-image.requirements:before {
  left: 28%;
  top: 20%;
  width: 46%;
  height: 60%;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(7,31,65,.12);
}
.process-flow-image.requirements:after {
  left: 37%;
  top: 34%;
  width: 28%;
  height: 5px;
  background: #0b2a4d;
  box-shadow: 0 18px 0 #9fb1c7, 0 36px 0 #ff5a1f;
}
.process-flow-image.dieline {
  background: #f8fbff;
}
.process-flow-image.dieline:before {
  left: 20%;
  top: 24%;
  width: 60%;
  height: 48%;
  border: 2px dashed #0b2a4d;
}
.process-flow-image.dieline:after {
  left: 48%;
  top: 18%;
  width: 2px;
  height: 62%;
  background: repeating-linear-gradient(180deg, #ff5a1f 0 8px, transparent 8px 14px);
}
.process-flow-image.sample {
  background: linear-gradient(135deg, #eaf0f7, #fff);
}
.process-flow-image.sample:before {
  left: 28%;
  top: 32%;
  width: 42%;
  height: 34%;
  border-radius: 6px;
  background: #0d2d52;
  transform: perspective(220px) rotateX(52deg);
}
.process-flow-image.sample:after {
  left: 33%;
  top: 24%;
  width: 34%;
  height: 24%;
  border: 2px solid #0d2d52;
  border-bottom: 0;
  transform: skewX(-15deg);
}
.process-flow-image.printing {
  background: linear-gradient(135deg, #dfe7f0, #f8fbff);
}
.process-flow-image.printing:before {
  left: 16%;
  right: 16%;
  top: 34%;
  height: 42%;
  border-radius: 8px;
  background: #0b2a4d;
  box-shadow: inset 0 10px 0 rgba(255,255,255,.18);
}
.process-flow-image.printing:after {
  left: 24%;
  top: 24%;
  width: 52%;
  height: 16px;
  background: repeating-linear-gradient(90deg, #fff 0 28px, #ff5a1f 28px 48px, #9fb1c7 48px 70px);
}
.process-flow-image.finishing {
  background: linear-gradient(135deg, #101827, #26374e);
}
.process-flow-image.finishing:before {
  left: 30%;
  top: 32%;
  width: 42%;
  height: 38%;
  border-radius: 8px;
  background: linear-gradient(135deg, #d4af37, #fff0aa, #b9882e);
  box-shadow: 0 0 26px rgba(212,175,55,.36);
}
.process-flow-image.finishing:after {
  left: 36%;
  top: 46%;
  width: 30%;
  height: 7px;
  background: #fff;
}
.process-flow-image.diecut {
  background: linear-gradient(135deg, #f8fbff, #e5edf5);
}
.process-flow-image.diecut:before {
  left: 22%;
  top: 26%;
  width: 56%;
  height: 48%;
  border: 3px solid #0b2a4d;
  border-radius: 9px;
  clip-path: polygon(0 0, 82% 0, 100% 28%, 100% 100%, 0 100%);
}
.process-flow-image.diecut:after {
  left: 18%;
  top: 20%;
  width: 64%;
  border-top: 2px dashed #ff5a1f;
  transform: rotate(-18deg);
}
.process-flow-image.qc {
  background: linear-gradient(135deg, #eef5fb, #fff);
}
.process-flow-image.qc:before {
  left: 27%;
  top: 25%;
  width: 48%;
  height: 54%;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(7,31,65,.12);
}
.process-flow-image.qc:after {
  left: 42%;
  top: 43%;
  width: 24%;
  height: 12%;
  border-left: 5px solid #28a745;
  border-bottom: 5px solid #28a745;
  transform: rotate(-45deg);
}
.process-flow-image.delivery {
  background: linear-gradient(135deg, #f7fafc, #dfe8f2);
}
.process-flow-image.delivery:before {
  left: 16%;
  bottom: 28%;
  width: 46%;
  height: 28%;
  border-radius: 5px;
  background: #b8894c;
  box-shadow: 68px 12px 0 #0b2a4d;
}
.process-flow-image.delivery:after {
  right: 18%;
  bottom: 20%;
  width: 46px;
  height: 26px;
  border-radius: 4px;
  background: #ff5a1f;
  box-shadow: -70px 0 0 #d8e2ed;
}
.process-flow-step b,
.process-flow-step p {
  display: block;
  padding-inline: 18px;
}
.process-flow-step b {
  margin-top: 18px;
  color: var(--navy);
  font-size: 16px;
}
.process-flow-step p {
  margin: 8px 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.qc-system-board {
  display: grid;
  gap: 24px;
}
.qc-system-visual {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  min-height: 120px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(135deg, #fff, #f3f7fb);
}
.qc-system-visual span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 54px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}
.qc-system-visual span:before {
  content: "";
  position: absolute;
  top: -12px;
  width: 34px;
  height: 34px;
  border: 1px solid #cbd9e8;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 18px rgba(7,31,65,.08);
}
.qc-system-visual span:not(:last-child):after {
  content: "";
  position: absolute;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  top: 5px;
  border-top: 1px dashed #93a6bd;
}
.qc-workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.qc-workflow-step {
  position: relative;
  min-height: 205px;
  padding: 24px 24px 24px 70px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(7,31,65,.052);
}
.qc-workflow-step span {
  position: absolute;
  top: 24px;
  left: 22px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf3fb;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}
.qc-workflow-step b {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 16px;
}
.qc-workflow-step ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.qc-workflow-step li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.qc-workflow-step li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.capability-showcase {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr);
  gap: 40px;
  align-items: center;
}
.capability-machine-visual {
  position: relative;
  min-height: 430px;
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), transparent 48%),
    linear-gradient(135deg, #dfe7ef, #f8fbff);
  box-shadow: 0 24px 58px rgba(7,31,65,.11);
}
.capability-machine-visual:before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 24%;
  height: 34%;
  border-radius: 12px;
  background: linear-gradient(90deg, #0b2a4d 0 30%, #263b58 31% 70%, #0b2a4d 71%);
  box-shadow: inset 0 14px 0 rgba(255,255,255,.12), 0 20px 40px rgba(7,31,65,.18);
}
.capability-machine-visual:after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 15%;
  height: 16px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #d9e2ec 0 48px, #ff5a1f 48px 64px, #fff 64px 98px);
}
.capability-machine-visual span {
  position: absolute;
  padding: 10px 14px;
  border: 1px solid rgba(184,199,217,.82);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}
.capability-machine-visual span:nth-child(1) { left: 12%; top: 12%; }
.capability-machine-visual span:nth-child(2) { right: 12%; top: 18%; }
.capability-machine-visual span:nth-child(3) { left: 35%; bottom: 9%; }
.capability-showcase h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
}
.capability-showcase p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.75;
}
.capability-point-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.capability-point-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.capability-point-grid b {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}
.capability-point-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.compliance-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.compliance-card {
  position: relative;
  min-height: 210px;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #d8e2ef, #f8fbff) border-box;
  box-shadow: 0 16px 40px rgba(7,31,65,.052);
}
.compliance-card:before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  bottom: 18px;
  border: 1px solid #dce6f1;
  border-radius: 6px;
  pointer-events: none;
}
.compliance-card span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #eaf3fb;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}
.compliance-card b,
.compliance-card p {
  position: relative;
  z-index: 1;
}
.compliance-card b {
  display: block;
  color: var(--navy);
  font-size: 15px;
}
.compliance-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
@media (max-width: 1100px) {
  .material-board-grid,
  .qc-workflow-grid,
  .customization-board-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .finish-sample-board,
  .process-flow-board,
  .compliance-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-flow-step:after { display: none !important; }
  .capability-showcase { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .material-board-grid,
  .finish-sample-board,
  .customization-board-grid,
  .process-flow-board,
  .qc-workflow-grid,
  .capability-point-grid,
  .compliance-card-grid { grid-template-columns: 1fr; }
  .product-detail-stack .manufacturing-board.soft-panel {
    padding: 34px 18px;
  }
  .custom-board-visual,
  .finish-sample-tile .finish-visual,
  .material-sample-tile .material-visual {
    min-height: 170px;
  }
  .qc-system-visual {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .qc-system-visual span:after { display: none; }
  .qc-workflow-step {
    min-height: auto;
  }
  .capability-machine-visual {
    min-height: 320px;
  }
}

/* Extracted from styles.css lines 5267-10851 */
/* Product detail reference-style layout */
body:has(.product-detail-hero) .wrap {
  width: min(1180px, calc(100% - 48px));
}
.page-hero.product-detail-hero {
  min-height: 260px;
  padding: 54px 0 50px;
  background:
    linear-gradient(90deg, rgba(4,22,45,.99) 0%, rgba(4,22,45,.92) 42%, rgba(4,22,45,.48) 68%, rgba(4,22,45,.12) 100%),
    var(--detail-hero-image, url("assets/pi-hero-packaging.jpg")) right center/auto 118% no-repeat,
    #061d3b;
}
.page-hero.product-detail-hero h1 {
  max-width: 520px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.04;
}
.page-hero.product-detail-hero p {
  max-width: 500px;
  font-size: 15px;
  line-height: 1.65;
}
.product-detail-content {
  padding: 26px 0 34px;
}
.product-detail-stack {
  gap: 34px;
}
.detail-intro-section {
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 26px;
  align-items: stretch;
}
.detail-commerce-gallery {
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 16px;
}
.detail-commerce-gallery .detail-gallery-stage {
  min-height: 430px;
}
.detail-commerce-gallery .detail-gallery-slide {
  background-size: cover;
  background-position: center;
}
.detail-commerce-gallery .detail-gallery-dot {
  height: 116px;
  border-radius: 6px;
}
.detail-commerce-stage-wrap,
.product-info-panel,
.material-sample-tile,
.finish-sample-tile,
.customization-board-card,
.process-flow-step,
.qc-workflow-step,
.compliance-card,
.related-product-card a {
  border-radius: 7px;
}
.product-info-panel {
  position: static;
  gap: 14px;
  padding: 24px;
  box-shadow: 0 16px 38px rgba(7,31,65,.09);
}
.product-info-panel .eyebrow {
  color: var(--orange);
  font-size: 11px;
}
.product-info-panel h2 {
  font-size: 28px;
}
.product-info-panel > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.62;
}
.product-key-specs div {
  grid-template-columns: 106px 1fr;
  padding: 9px 12px;
}
.product-key-specs dt,
.product-key-specs dd {
  font-size: 11px;
}
.product-panel-cta .btn {
  width: 100%;
  justify-content: center;
}
.product-panel-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}
.product-panel-mini span:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--blue);
}
.detail-attribute-strip {
  min-height: 56px;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}
.detail-attribute-strip article {
  min-height: 56px;
  padding: 12px 18px;
}
.detail-attribute-strip b {
  font-size: 12px;
}
.detail-attribute-strip span {
  font-size: 11px;
}
.manufacturing-board {
  padding-top: 0;
}
.manufacturing-board .board-head,
.product-faq-section .detail-section-head {
  position: relative;
  display: block;
  max-width: 100%;
  margin: 0 auto 20px;
  text-align: center;
}
.manufacturing-board .board-head .eyebrow,
.manufacturing-board .board-head p:not(.eyebrow) {
  display: none;
}
.manufacturing-board .board-head h2,
.product-faq-section .detail-section-head h2 {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(22px, 2.4vw, 30px);
}
.manufacturing-board .board-head h2:before,
.manufacturing-board .board-head h2:after,
.product-faq-section .detail-section-head h2:before,
.product-faq-section .detail-section-head h2:after {
  content: "";
  width: 120px;
  height: 1px;
  background: #c8d7e8;
}
.material-board-grid,
.finish-sample-board {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
}
.material-sample-tile,
.finish-sample-tile {
  box-shadow: none;
}
.material-sample-tile .material-visual {
  min-height: 118px;
}
.material-sample-tile b,
.finish-sample-tile b {
  padding: 10px 8px 12px;
  font-size: 12px;
}
.finish-sample-tile {
  grid-template-rows: auto auto;
}
.finish-sample-tile .finish-visual {
  min-height: 118px;
  padding: 12px;
}
.finish-visual span,
.finish-sample-tile .finish-visual span {
  font-size: 12px;
  letter-spacing: .08em;
}
.finish-sample-tile small {
  display: none;
}
.product-detail-stack .soft-panel {
  padding: 34px;
}
.customization-board-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.custom-board-visual {
  min-height: 178px;
}
.customization-board-card > div:last-child {
  padding: 18px 20px 20px;
}
.customization-board-card h3 {
  font-size: 18px;
  text-align: center;
}
.customization-board-card p {
  display: none;
}
.customization-board-card ul {
  gap: 5px;
}
.customization-board-card li {
  font-size: 12px;
}
.process-flow-board {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
}
.process-flow-step {
  min-height: 158px;
  box-shadow: none;
  overflow: visible;
}
.process-flow-step:not(:nth-child(4n)):after {
  display: none;
}
.process-flow-step:not(:last-child):after {
  content: ">";
  position: absolute;
  top: 58px;
  right: -13px;
  z-index: 5;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid #c8d7e8;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}
.process-flow-image {
  min-height: 86px;
}
.process-flow-image span {
  width: 26px;
  height: 26px;
  font-size: 10px;
}
.process-flow-step b {
  min-height: 34px;
  margin-top: 10px;
  padding-inline: 10px;
  font-size: 12px;
  line-height: 1.25;
  text-align: center;
}
.process-flow-step p {
  display: none;
}
.detail-quality-section.soft-panel {
  background: #f1f6fb;
}
.qc-system-visual {
  display: none;
}
.qc-workflow-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.qc-workflow-step {
  min-height: 178px;
  padding: 22px 14px;
  text-align: center;
  box-shadow: none;
}
.qc-workflow-step span {
  position: static;
  margin: 0 auto 12px;
  width: 52px;
  height: 52px;
  font-size: 13px;
}
.qc-workflow-step b {
  min-height: 36px;
  font-size: 13px;
  line-height: 1.3;
}
.qc-workflow-step ul {
  display: block;
}
.qc-workflow-step li {
  font-size: 11px;
}
.qc-workflow-step li:before {
  display: none;
}
.capability-showcase {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 26px;
}
.capability-machine-visual {
  min-height: 292px;
  border-radius: 7px;
}
.capability-showcase h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  text-align: center;
}
.capability-showcase p:not(.eyebrow) {
  display: none;
}
.capability-point-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}
.capability-point-grid article {
  min-height: 140px;
  padding: 20px 14px;
  text-align: center;
}
.capability-point-grid b {
  font-size: 13px;
}
.capability-point-grid span {
  font-size: 11px;
}
.capability-stat-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  overflow: hidden;
}
.capability-stat-row article {
  min-height: 62px;
  padding: 12px 10px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.capability-stat-row article:last-child {
  border-right: 0;
}
.capability-stat-row b {
  display: block;
  color: var(--blue);
  font-size: 12px;
}
.capability-stat-row span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}
.compliance-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.compliance-card {
  min-height: 128px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: none;
}
.compliance-card:before {
  display: none;
}
.compliance-card span {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}
.compliance-card b {
  font-size: 13px;
}
.compliance-card p {
  display: none;
}
.product-faq-section.soft-panel {
  padding: 28px 34px;
}
.product-faq-section .faq-accordion {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 36px;
  max-width: 100%;
}
.product-faq-section .btn {
  display: none;
}
.product-requirements-band {
  padding: 42px 0;
  background: linear-gradient(135deg, #061d3b, #0b315a);
}
.requirements-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}
.requirements-copy {
  color: #fff;
}
.requirements-copy h2 {
  margin: 0 0 18px;
  font-size: 26px;
}
.requirements-product-visual {
  height: 210px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(6,29,59,.05), rgba(6,29,59,.3)),
    var(--requirements-image, url("assets/pi-folding-cartons.jpg")) center/contain no-repeat;
}
.product-requirements-band .section-head {
  display: none;
}
.product-requirements-band .detail-quote-form {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0,0,0,.16);
}
.product-requirements-band .form-grid {
  gap: 10px 14px;
}
.product-requirements-band label {
  font-size: 11px;
}
.product-requirements-band input,
.product-requirements-band select,
.product-requirements-band textarea {
  min-height: 38px;
  font-size: 12px;
}
.product-requirements-band textarea {
  min-height: 76px;
}
.product-requirements-band .btn {
  justify-self: center;
  min-width: 220px;
}
.related-products-section {
  padding: 28px 0 24px;
}
.related-products-section .section-head {
  margin-bottom: 18px;
}
.related-product-grid {
  gap: 18px;
}
.related-product-card div {
  min-height: 130px;
}
.related-product-card p,
.related-product-card span {
  display: none;
}
.related-product-card h3 {
  margin: 12px 0 8px;
  font-size: 14px;
}
.related-product-card b {
  margin-bottom: 14px;
  font-size: 11px;
}
@media (max-width: 1180px) {
  .material-board-grid,
  .finish-sample-board,
  .process-flow-board {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .process-flow-step:nth-child(4):after {
    display: none;
  }
  .qc-workflow-grid,
  .capability-point-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .capability-stat-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 860px) {
  .detail-intro-section,
  .requirements-layout,
  .capability-showcase {
    grid-template-columns: 1fr;
  }
  .detail-commerce-gallery {
    grid-template-columns: 1fr;
  }
  .detail-commerce-gallery .detail-gallery-dots {
    grid-template-columns: repeat(3, 1fr);
    order: 2;
  }
  .customization-board-grid,
  .compliance-card-grid,
  .qc-workflow-grid,
  .capability-point-grid,
  .product-faq-section .faq-accordion {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  body:has(.product-detail-hero) .wrap {
    width: min(100% - 28px, 1180px);
  }
  .page-hero.product-detail-hero {
    min-height: 310px;
    background:
      linear-gradient(180deg, rgba(4,22,45,.98), rgba(4,22,45,.86)),
      var(--detail-hero-image, url("assets/pi-hero-packaging.jpg")) center bottom/100% auto no-repeat,
      #061d3b;
  }
  .material-board-grid,
  .finish-sample-board,
  .process-flow-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .manufacturing-board .board-head h2:before,
  .manufacturing-board .board-head h2:after,
  .product-faq-section .detail-section-head h2:before,
  .product-faq-section .detail-section-head h2:after {
    display: none;
  }
  .product-detail-stack .soft-panel,
  .product-faq-section.soft-panel {
    padding: 24px 16px;
  }
  .capability-stat-row {
    grid-template-columns: 1fr;
  }
}

/* Product detail target screenshot reconstruction */
body:has(.product-detail-hero) {
  background: #fff;
}
body:has(.product-detail-hero) .wrap {
  width: min(1060px, calc(100% - 42px));
}
.page-hero.product-detail-hero {
  min-height: 238px;
  padding: 46px 0 42px;
  border-bottom: 1px solid #d8e2ef;
  background:
    linear-gradient(90deg, rgba(4,22,45,1) 0%, rgba(4,22,45,.96) 38%, rgba(4,22,45,.72) 58%, rgba(4,22,45,.18) 100%),
    var(--detail-hero-image, url("assets/pi-folding-cartons.jpg")) right 48% center/auto 132% no-repeat,
    #061d3b;
}
.page-hero.product-detail-hero .eyebrow {
  display: none;
}
.page-hero.product-detail-hero h1 {
  max-width: 430px;
  margin-bottom: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -.01em;
}
.page-hero.product-detail-hero p {
  max-width: 440px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  line-height: 1.55;
}
.page-hero.product-detail-hero .btn {
  min-height: 40px;
  padding: 12px 21px;
  border-radius: 5px;
  font-size: 13px;
}
.product-detail-content {
  padding: 24px 0 28px;
}
.product-detail-stack {
  display: grid;
  gap: 24px;
}
.detail-intro-section {
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 20px;
  align-items: stretch;
}
.detail-commerce-gallery {
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
}
.detail-commerce-gallery .detail-gallery-dots {
  gap: 12px;
}
.detail-commerce-gallery .detail-gallery-dot {
  height: 104px;
  border: 1px solid #c9d7e7;
  border-radius: 6px;
  background-color: #f7f9fc;
  background-size: cover;
}
.detail-commerce-gallery .detail-gallery-dot.active {
  border: 2px solid var(--orange);
  box-shadow: 0 8px 22px rgba(255,102,0,.16);
}
.detail-commerce-stage-wrap {
  border: 1px solid #d7e2ef;
  border-radius: 7px;
  background: #f8fafc;
  box-shadow: none;
}
.detail-commerce-gallery .detail-gallery-stage {
  min-height: 394px;
  border-radius: 7px;
}
.detail-commerce-gallery .detail-gallery-slide {
  background-size: cover;
  background-position: center;
}
.detail-gallery-arrow {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.92);
}
.product-info-panel {
  min-height: 394px;
  padding: 22px 22px 18px;
  border: 1px solid #d8e2ef;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7,31,65,.09);
}
.product-info-panel .eyebrow {
  margin-bottom: 8px;
  color: var(--orange);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  letter-spacing: .08em;
}
.product-info-panel h2 {
  margin-bottom: 9px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -.01em;
}
.product-info-panel > p:not(.eyebrow) {
  margin-bottom: 13px;
  color: #4f6280;
  font-size: 12px;
  line-height: 1.58;
}
.product-key-specs {
  border: 1px solid #dce6f1;
  border-radius: 5px;
  overflow: hidden;
}
.product-key-specs div {
  grid-template-columns: 98px 1fr;
  padding: 7px 10px;
  border-bottom: 1px solid #e2eaf4;
}
.product-key-specs div:last-child {
  border-bottom: 0;
}
.product-key-specs dt,
.product-key-specs dd {
  font-size: 10px;
  line-height: 1.35;
}
.product-key-specs dt {
  color: #0b2d55;
  font-weight: 900;
}
.product-panel-cta {
  margin-top: 13px;
}
.product-panel-cta .btn {
  min-height: 36px;
  border-radius: 4px;
  font-size: 12px;
}
.product-panel-mini {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 10px;
  color: #62728a;
  font-size: 9px;
}
.product-panel-mini span:before {
  width: 6px;
  height: 6px;
  background: transparent;
  border: 1px solid var(--blue);
}
.detail-attribute-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 54px;
  border-top: 1px solid #d8e2ef;
  border-bottom: 1px solid #d8e2ef;
  background: #fff;
}
.detail-attribute-strip article {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-content: center;
  column-gap: 8px;
  min-height: 54px;
  padding: 10px 18px;
  border-right: 1px solid #e1e9f3;
}
.detail-attribute-strip article:last-child {
  border-right: 0;
}
.detail-attribute-strip article:before {
  content: "";
  grid-row: span 2;
  align-self: center;
  width: 24px;
  height: 24px;
  border: 1px solid #b9cbe0;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8fbff, #eaf2fb);
}
.detail-attribute-strip b {
  color: #0b2d55;
  font-size: 10px;
}
.detail-attribute-strip span {
  color: #6b7a8f;
  font-size: 9px;
}
.manufacturing-board {
  max-width: 100%;
  padding: 0;
}
.manufacturing-board .board-head,
.product-faq-section .detail-section-head {
  margin: 0 auto 18px;
  text-align: center;
}
.manufacturing-board .board-head h2,
.product-faq-section .detail-section-head h2 {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #0a2a4f;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.18;
}
.manufacturing-board .board-head h2:before,
.manufacturing-board .board-head h2:after,
.product-faq-section .detail-section-head h2:before,
.product-faq-section .detail-section-head h2:after {
  content: "";
  width: 105px;
  height: 1px;
  background: #c6d6e8;
}
.manufacturing-board .board-head p:not(.eyebrow),
.manufacturing-board .board-head .eyebrow {
  display: none;
}
.material-board-grid,
.finish-sample-board {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
}
.material-sample-tile,
.finish-sample-tile {
  border: 1px solid #c9d7e7;
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
  box-shadow: none;
}
.material-sample-tile .material-visual,
.finish-sample-tile .finish-visual {
  min-height: 105px;
  border-radius: 0;
}
.material-sample-tile b,
.finish-sample-tile b {
  display: grid;
  place-items: center;
  min-height: 30px;
  padding: 6px;
  color: #18375e;
  font-size: 10px;
  line-height: 1.15;
  text-align: center;
}
.finish-sample-tile .finish-visual {
  display: grid;
  place-items: center;
  padding: 11px;
}
.finish-sample-tile .finish-visual span {
  font-size: 13px;
  letter-spacing: .05em;
  line-height: 1.18;
}
.finish-sample-tile small {
  display: none;
}
.product-detail-stack .soft-panel {
  padding: 22px;
  border: 1px solid #d8e2ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}
.customization-board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.customization-board-card {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 172px;
  border: 1px solid #c9d7e7;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  box-shadow: none;
}
.custom-board-visual {
  min-height: 170px;
  border-radius: 0;
}
.customization-board-card > div:last-child {
  display: grid;
  align-content: center;
  padding: 15px 16px;
}
.customization-board-card h3 {
  margin-bottom: 9px;
  color: #0b2d55;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.2;
  text-align: left;
}
.customization-board-card p {
  display: none;
}
.customization-board-card ul {
  gap: 4px;
}
.customization-board-card li {
  color: #425976;
  font-size: 10px;
  line-height: 1.28;
}
.customization-board-card li:before {
  width: 5px;
  height: 5px;
  margin-top: .42em;
}
.process-flow-board {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
}
.process-flow-step {
  position: relative;
  min-height: 146px;
  padding: 10px 8px 12px;
  border: 1px solid #c9d7e7;
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
  overflow: visible;
}
.process-flow-step:not(:last-child):after {
  content: "";
  position: absolute;
  top: 58px;
  right: -13px;
  z-index: 3;
  width: 20px;
  height: 20px;
  border: 1px solid #bed0e5;
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 45%, #0b4f8f 46%, #0b4f8f 55%, transparent 56%) center/8px 8px no-repeat,
    #fff;
}
.process-flow-image {
  min-height: 70px;
  border-radius: 4px;
}
.process-flow-image span {
  left: 8px;
  top: 8px;
  width: 22px;
  height: 22px;
  font-size: 9px;
}
.process-flow-step b {
  min-height: 34px;
  margin-top: 9px;
  color: #0b2d55;
  font-size: 11px;
  line-height: 1.18;
  text-align: center;
}
.process-flow-step p {
  display: none;
}
.detail-quality-section.soft-panel {
  padding: 24px;
  background: linear-gradient(180deg, #f2f7fc, #eef5fb);
}
.qc-system-board {
  display: block;
}
.qc-system-visual {
  display: none;
}
.qc-workflow-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.qc-workflow-step {
  min-height: 156px;
  padding: 16px 11px;
  border: 1px solid #d7e4f2;
  border-radius: 6px;
  background: #fff;
  text-align: center;
  box-shadow: none;
}
.qc-workflow-step span {
  position: static;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  border: 1px solid #bed0e5;
  border-radius: 50%;
  background: #f8fbff;
  color: #0b4f8f;
  font-size: 11px;
  font-weight: 900;
}
.qc-workflow-step b {
  display: block;
  min-height: 34px;
  color: #0b2d55;
  font-size: 12px;
  line-height: 1.2;
}
.qc-workflow-step ul {
  margin-top: 6px;
}
.qc-workflow-step li {
  margin: 0;
  color: #566985;
  font-size: 10px;
  line-height: 1.3;
}
.qc-workflow-step li:not(:first-child) {
  display: none;
}
.qc-workflow-step li:before {
  display: none;
}
.capability-showcase {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
}
.capability-machine-visual {
  min-height: 242px;
  border: 1px solid #c9d7e7;
  border-radius: 7px;
}
.capability-showcase > div:last-child {
  display: grid;
  align-content: start;
}
.capability-showcase h2 {
  margin: 0 0 16px;
  color: #0b2d55;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 23px;
  line-height: 1.16;
  text-align: center;
}
.capability-showcase p:not(.eyebrow) {
  display: none;
}
.capability-point-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}
.capability-point-grid article {
  min-height: 132px;
  padding: 18px 12px;
  border: 1px solid #d6e2ef;
  border-radius: 6px;
  background: #fff;
  text-align: center;
}
.capability-point-grid article:before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  margin: 0 auto 10px;
  border: 1px solid #bed0e5;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7fbff, #e9f2fb);
}
.capability-point-grid b {
  color: #0b2d55;
  font-size: 11px;
  line-height: 1.22;
}
.capability-point-grid span {
  display: block;
  margin-top: 6px;
  color: #5b6d86;
  font-size: 9px;
  line-height: 1.35;
}
.capability-stat-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 12px;
  border: 1px solid #d8e2ef;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}
.capability-stat-row article {
  min-height: 54px;
  padding: 10px 8px;
  border-right: 1px solid #dfe8f2;
  text-align: center;
}
.capability-stat-row article:last-child {
  border-right: 0;
}
.capability-stat-row b {
  color: #0b4f8f;
  font-size: 11px;
}
.capability-stat-row span {
  color: #687890;
  font-size: 9px;
}
.compliance-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.compliance-card {
  min-height: 118px;
  padding: 16px 12px;
  border: 1px solid #d7e3f0;
  border-radius: 6px;
  background: #fff;
  text-align: center;
  box-shadow: none;
}
.compliance-card span {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border: 1px solid #bed0e5;
  background: #f5f9fd;
  color: #0b4f8f;
  font-size: 10px;
}
.compliance-card b {
  color: #0b2d55;
  font-size: 11px;
  line-height: 1.25;
}
.compliance-card p {
  display: none;
}
.product-faq-section.soft-panel {
  padding: 20px 24px;
  background: #f7fafc;
}
.product-faq-section .detail-section-head {
  margin-bottom: 14px;
}
.product-faq-section .detail-section-head h2 {
  font-size: 22px;
}
.product-faq-section .faq-accordion {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 28px;
}
.product-faq-section .faq-item {
  border: 1px solid #d8e2ef;
  border-radius: 5px;
  background: #fff;
  box-shadow: none;
}
.product-faq-section .faq-question {
  min-height: 34px;
  padding: 8px 12px;
  font-size: 11px;
}
.product-faq-section .faq-answer p {
  padding: 0 12px 10px;
  font-size: 11px;
}
.product-faq-section .btn {
  display: none;
}
.product-requirements-band {
  margin-top: 4px;
  padding: 32px 0;
  background:
    radial-gradient(circle at 18% 55%, rgba(255,255,255,.12), transparent 26%),
    linear-gradient(135deg, #061d3b, #0b315a);
}
.requirements-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}
.requirements-copy h2 {
  margin: 0 0 12px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
}
.requirements-product-visual {
  height: 174px;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(6,29,59,.05), rgba(6,29,59,.22)),
    var(--requirements-image, url("assets/pi-folding-cartons.jpg")) center/contain no-repeat;
}
.product-requirements-band .section-head {
  display: none;
}
.product-requirements-band .detail-quote-form {
  padding: 16px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,.14);
}
.product-requirements-band .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 12px;
}
.product-requirements-band label {
  color: #0b2d55;
  font-size: 10px;
  font-weight: 800;
}
.product-requirements-band input,
.product-requirements-band select,
.product-requirements-band textarea {
  min-height: 34px;
  margin-top: 4px;
  border-radius: 4px;
  font-size: 11px;
}
.product-requirements-band textarea {
  min-height: 66px;
}
.product-requirements-band .form-more-toggle {
  padding: 0;
  color: var(--orange);
  font-size: 11px;
}
.product-requirements-band .btn {
  justify-self: center;
  min-width: 210px;
  min-height: 36px;
  border-radius: 4px;
  font-size: 12px;
}
.related-products-section {
  padding: 28px 0 24px;
  background: #f7fafc;
}
.related-products-section .section-head {
  margin-bottom: 14px;
}
.related-products-section .section-head .eyebrow,
.related-products-section .section-head p {
  display: none;
}
.related-products-section h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
}
.related-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.related-product-card a {
  border: 1px solid #d6e2ef;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}
.related-product-card div {
  min-height: 112px;
  border-radius: 0;
}
.related-product-card h3 {
  margin: 10px 12px 6px;
  font-size: 12px;
}
.related-product-card b {
  margin: 0 12px 12px;
  font-size: 10px;
}
@media (max-width: 1180px) {
  body:has(.product-detail-hero) .wrap {
    width: min(100% - 36px, 1060px);
  }
  .material-board-grid,
  .finish-sample-board,
  .process-flow-board {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .process-flow-step:nth-child(4):after {
    display: none;
  }
  .qc-workflow-grid,
  .capability-point-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .capability-stat-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .detail-intro-section,
  .capability-showcase,
  .requirements-layout {
    grid-template-columns: 1fr;
  }
  .detail-commerce-gallery {
    grid-template-columns: 1fr;
  }
  .detail-commerce-gallery .detail-gallery-dots {
    grid-template-columns: repeat(3, 1fr);
    order: 2;
  }
  .detail-commerce-gallery .detail-gallery-dot {
    height: 92px;
  }
  .customization-board-grid,
  .compliance-card-grid,
  .product-faq-section .faq-accordion,
  .related-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  body:has(.product-detail-hero) .wrap {
    width: min(100% - 28px, 1060px);
  }
  .page-hero.product-detail-hero {
    min-height: 300px;
    padding: 38px 0;
    background:
      linear-gradient(180deg, rgba(4,22,45,.98), rgba(4,22,45,.82)),
      var(--detail-hero-image, url("assets/pi-folding-cartons.jpg")) center bottom/100% auto no-repeat,
      #061d3b;
  }
  .detail-attribute-strip,
  .material-board-grid,
  .finish-sample-board,
  .process-flow-board,
  .qc-workflow-grid,
  .capability-point-grid,
  .capability-stat-row,
  .customization-board-grid,
  .compliance-card-grid,
  .product-faq-section .faq-accordion,
  .related-product-grid,
  .product-requirements-band .form-grid {
    grid-template-columns: 1fr;
  }
  .detail-attribute-strip article {
    border-right: 0;
    border-bottom: 1px solid #e1e9f3;
  }
  .manufacturing-board .board-head h2:before,
  .manufacturing-board .board-head h2:after,
  .product-faq-section .detail-section-head h2:before,
  .product-faq-section .detail-section-head h2:after {
    display: none;
  }
  .customization-board-card {
    grid-template-columns: 1fr;
  }
  .process-flow-step:after {
    display: none !important;
  }
}

/* Product detail final target restoration pass */
body:has(.product-detail-hero) {
  --detail-blue: #06284d;
  --detail-line: #cbd9ea;
  --detail-soft: #f3f8fd;
}
body:has(.product-detail-hero) main {
  background: linear-gradient(180deg, #fff 0%, #fff 72%, #f7fafc 100%);
}
body:has(.product-detail-hero) .wrap {
  width: min(1048px, calc(100% - 42px));
}
.page-hero.product-detail-hero {
  min-height: 244px;
  padding: 48px 0 42px;
  background:
    linear-gradient(90deg, rgba(5,22,43,1) 0%, rgba(5,22,43,.96) 43%, rgba(5,22,43,.62) 66%, rgba(5,22,43,.14) 100%),
    var(--detail-hero-image, url("assets/pi-folding-cartons.jpg")) right 12% center/auto 122% no-repeat,
    #061d3b;
}
.page-hero.product-detail-hero h1 {
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 800;
}
.page-hero.product-detail-hero p {
  max-width: 420px;
  font-size: 13px;
  line-height: 1.55;
}
.product-detail-content {
  padding: 22px 0 24px;
}
.product-detail-stack {
  gap: 22px;
}
.detail-intro-section {
  grid-template-columns: minmax(0, 1fr) 376px;
  gap: 18px;
}
.detail-commerce-gallery {
  grid-template-columns: 104px minmax(0, 1fr);
}
.detail-commerce-gallery .detail-gallery-stage,
.product-info-panel {
  min-height: 386px;
}
.detail-commerce-stage-wrap,
.product-info-panel {
  border-color: var(--detail-line);
  border-radius: 6px;
}
.detail-commerce-gallery .detail-gallery-dot {
  height: 104px;
  background-size: cover;
  background-position: center;
}
.product-info-panel {
  padding: 20px 22px 16px;
}
.product-info-panel h2 {
  font-size: 23px;
}
.product-key-specs div {
  grid-template-columns: 94px 1fr;
  padding: 7px 9px;
}
.detail-attribute-strip {
  min-height: 58px;
}
.detail-attribute-strip article {
  grid-template-columns: 28px 1fr;
  min-height: 58px;
  padding: 10px 20px;
}
.detail-attribute-strip article:before {
  width: 24px;
  height: 24px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #0b4f8f, #c9d7e7) border-box;
  border: 1px solid transparent;
}
.manufacturing-board .board-head {
  margin-bottom: 15px;
}
.manufacturing-board .board-head h2,
.product-faq-section .detail-section-head h2 {
  gap: 16px;
  font-size: 22px;
  font-weight: 800;
}
.manufacturing-board .board-head h2:before,
.manufacturing-board .board-head h2:after,
.product-faq-section .detail-section-head h2:before,
.product-faq-section .detail-section-head h2:after {
  width: 110px;
  background: #bdcfe3;
}
.material-board-grid,
.finish-sample-board {
  gap: 12px;
}
.material-sample-tile,
.finish-sample-tile {
  border-color: #bccfe4;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(7,31,65,.035);
}
.material-sample-tile .material-visual,
.finish-sample-tile .finish-visual {
  min-height: 96px;
}
.material-sample-tile b,
.finish-sample-tile b {
  min-height: 30px;
  color: #12355c;
  font-size: 10px;
  font-weight: 800;
}
.material-sample-tile .ivory-board {
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(11,42,77,.12) 47% 49%, transparent 50%),
    linear-gradient(155deg, #fff 0 42%, #edf2f7 43% 70%, #fdfefe 71%);
}
.material-sample-tile .ccnb {
  background:
    linear-gradient(145deg, #fff 0 28%, #d6dde6 29% 31%, #f7fafc 32% 58%, #bfc8d3 59% 61%, #f0f4f8 62%),
    repeating-linear-gradient(0deg, rgba(11,42,77,.08) 0 1px, transparent 1px 8px);
}
.material-sample-tile .kraft-paper {
  background:
    radial-gradient(circle at 28% 26%, rgba(255,255,255,.22), transparent 22%),
    repeating-linear-gradient(25deg, rgba(84,54,25,.08) 0 2px, transparent 2px 8px),
    linear-gradient(135deg, #b98f59, #e2c496 56%, #a97842);
}
.material-sample-tile .art-paper {
  background:
    linear-gradient(145deg, #fff 0 40%, #dfe7f0 41% 43%, #f8fbfd 44% 72%, #cfd9e5 73% 75%, #fff 76%);
}
.material-sample-tile .specialty-paper {
  background:
    radial-gradient(circle at 22% 28%, rgba(255,255,255,.55), transparent 22%),
    repeating-linear-gradient(45deg, rgba(11,42,77,.1) 0 2px, transparent 2px 12px),
    linear-gradient(135deg, #d9e1ea, #f5f7fa 52%, #cad4df);
}
.material-sample-tile .colored-card {
  background:
    linear-gradient(135deg, #aa2f3a 0 24%, #2f7f73 25% 50%, #dfbf4e 51% 72%, #0b2d55 73%);
}
.material-sample-tile .greyboard {
  background:
    radial-gradient(circle at 24% 20%, rgba(255,255,255,.3), transparent 25%),
    repeating-linear-gradient(35deg, rgba(34,45,58,.08) 0 1px, transparent 1px 6px),
    linear-gradient(135deg, #b4bac2, #d6dbe0 52%, #959da7);
}
.material-sample-tile .corrugated-board,
.material-sample-tile .eflute,
.material-sample-tile .bflute,
.material-sample-tile .double-wall {
  background:
    repeating-linear-gradient(0deg, #7b5730 0 4px, #d2ae78 4px 8px, #6e4b28 8px 12px),
    linear-gradient(135deg, #b48751, #e4c290);
}
.material-sample-tile .printed-liner {
  background:
    linear-gradient(135deg, #0b2d55 0 34%, #fff 35% 64%, #d98a3d 65%),
    #fff;
}
.material-sample-tile .white-corrugated,
.material-sample-tile .paperboard {
  background:
    repeating-linear-gradient(0deg, rgba(11,42,77,.08) 0 1px, transparent 1px 7px),
    linear-gradient(135deg, #fff, #e9eef4);
}
.finish-sample-tile .finish-visual {
  position: relative;
  background: #101927;
  overflow: hidden;
}
.finish-sample-tile .finish-visual:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 0 38%, rgba(255,255,255,.08) 39% 41%, transparent 42%),
    radial-gradient(circle at 22% 18%, rgba(255,255,255,.13), transparent 28%);
}
.finish-sample-tile .finish-visual span {
  position: relative;
  z-index: 1;
  padding: 12px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-align: center;
}
.finish-sample-tile .finish-visual.spot-uv {
  background: linear-gradient(135deg, #202936, #0e1624);
}
.finish-sample-tile .finish-visual.spot-uv span {
  color: #0c111a;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.34));
  box-shadow: inset 0 0 18px rgba(255,255,255,.75), 0 0 22px rgba(255,255,255,.24);
  text-shadow: 0 1px 0 rgba(255,255,255,.18);
}
.finish-sample-tile .finish-visual.embossing {
  background: linear-gradient(135deg, #9fa8b4, #e9edf2);
}
.finish-sample-tile .finish-visual.embossing span {
  color: #f6f8fb;
  text-shadow: -1px -1px 0 rgba(255,255,255,.9), 2px 3px 3px rgba(58,68,82,.45);
}
.finish-sample-tile .finish-visual.debossing {
  background: linear-gradient(135deg, #e7ebf0, #b8c0ca);
}
.finish-sample-tile .finish-visual.debossing span {
  color: #b6bec8;
  text-shadow: 1px 1px 0 rgba(255,255,255,.85), -1px -1px 0 rgba(79,91,108,.35);
}
.finish-sample-tile .finish-visual.gold-foil span {
  background: linear-gradient(90deg, #9a6b1d, #fff2a8 45%, #d29b2e 72%, #fff0a8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 5px rgba(255,204,88,.35));
}
.finish-sample-tile .finish-visual.silver-foil span {
  background: linear-gradient(90deg, #7f8c99, #fff 45%, #b8c5d2 72%, #edf4fb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 5px rgba(232,240,248,.35));
}
.finish-sample-tile .finish-visual.matte {
  background: linear-gradient(135deg, #252b34, #111823);
}
.finish-sample-tile .finish-visual.matte span {
  color: rgba(255,255,255,.62);
  text-shadow: none;
}
.finish-sample-tile .finish-visual.gloss {
  background:
    linear-gradient(118deg, transparent 0 33%, rgba(255,255,255,.58) 34% 38%, transparent 39%),
    linear-gradient(135deg, #1b2533, #070d16);
}
.finish-sample-tile .finish-visual.gloss span {
  color: #fff;
  text-shadow: 0 0 14px rgba(255,255,255,.5);
}
.finish-sample-tile .finish-visual.soft-touch {
  background: linear-gradient(135deg, #3e4652, #141b26);
}
.finish-sample-tile .finish-visual.soft-touch span {
  color: rgba(245,248,251,.82);
  filter: blur(.18px);
}
.customization-board-grid {
  gap: 14px;
}
.customization-board-card {
  min-height: 160px;
  border-color: var(--detail-line);
}
.custom-board-visual {
  min-height: 160px;
}
.structure-design-board {
  background:
    linear-gradient(90deg, rgba(11,79,143,.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(11,79,143,.08) 1px, transparent 1px),
    #f8fbfe;
  background-size: 20px 20px;
}
.structure-design-board:before {
  left: 14%;
  top: 28%;
  width: 72%;
  height: 40%;
  border: 2px solid #9bb1c9;
  border-radius: 0;
  background:
    linear-gradient(90deg, transparent 29%, #9bb1c9 30% 31%, transparent 32% 68%, #9bb1c9 69% 70%, transparent 71%),
    linear-gradient(0deg, transparent 29%, #9bb1c9 30% 31%, transparent 32% 68%, #9bb1c9 69% 70%, transparent 71%);
  transform: none;
}
.structure-design-board:after {
  left: 30%;
  top: 15%;
  width: 40%;
  height: 70%;
  border: 2px dashed #0b4f8f;
  border-radius: 2px;
  transform: none;
}
.size-fit-board:before {
  left: 25%;
  top: 27%;
  width: 48%;
  height: 44%;
  border-radius: 4px;
  background: #12355c;
  box-shadow: 0 16px 24px rgba(7,31,65,.2);
}
.size-fit-board:after {
  left: 18%;
  right: 18%;
  top: 20%;
  height: 60%;
  border: 0;
  background:
    linear-gradient(#0b4f8f, #0b4f8f) 50% 0/1px 100% no-repeat,
    linear-gradient(#0b4f8f, #0b4f8f) 0 50%/100% 1px no-repeat;
  box-shadow: none;
}
.artwork-print-board:before {
  left: 22%;
  top: 16%;
  width: 56%;
  height: 66%;
  border-radius: 5px;
  background:
    radial-gradient(circle at 76% 28%, #ff7a33 0 12%, transparent 13%),
    linear-gradient(135deg, #0b2d55 0 30%, #fff 31% 52%, #2f7f73 53% 68%, #d84f3f 69% 82%, #f0c95b 83%);
}
.process-flow-board {
  gap: 12px;
}
.process-flow-step {
  min-height: 142px;
  padding: 9px 8px 10px;
}
.process-flow-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 72px;
  background: #f6fafe;
  overflow: hidden;
}
.process-flow-image:before,
.process-flow-image:after {
  content: "";
  position: absolute;
}
.process-flow-image.requirements:before {
  width: 30px;
  height: 38px;
  border: 2px solid #0b4f8f;
  border-radius: 4px;
  background: #fff;
}
.process-flow-image.requirements:after {
  width: 20px;
  height: 2px;
  background: #0b4f8f;
  box-shadow: 0 8px 0 #0b4f8f, 0 16px 0 #0b4f8f;
}
.process-flow-image.dieline:before {
  width: 44px;
  height: 38px;
  border: 2px dashed #0b4f8f;
  background: linear-gradient(90deg, transparent 48%, #c5d5e7 49% 51%, transparent 52%);
}
.process-flow-image.sample:before {
  width: 42px;
  height: 30px;
  background: #d89b58;
  clip-path: polygon(18% 18%, 50% 0, 82% 18%, 82% 78%, 50% 100%, 18% 78%);
}
.process-flow-image.sample:after {
  width: 22px;
  height: 22px;
  right: 20px;
  bottom: 12px;
  border-radius: 50%;
  background: #28a745;
  box-shadow: inset 0 0 0 5px #fff;
}
.process-flow-image.printing:before {
  width: 48px;
  height: 34px;
  border-radius: 5px;
  background: #0b4f8f;
  box-shadow: inset 0 -10px 0 #dce8f4;
}
.process-flow-image.printing:after {
  width: 34px;
  height: 20px;
  bottom: 12px;
  background: linear-gradient(90deg, #00a3ff 0 25%, #ff4c4c 25% 50%, #ffd94a 50% 75%, #1bb65d 75%);
}
.process-flow-image.finishing:before {
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, #ced8e5, #fff);
  transform: skew(-14deg);
}
.process-flow-image.finishing:after {
  width: 34px;
  height: 3px;
  background: #d4a039;
  box-shadow: 0 -10px 0 #fff2a8, 0 10px 0 #9fb0c5;
  transform: rotate(-22deg);
}
.process-flow-image.diecut:before {
  width: 42px;
  height: 38px;
  border: 2px solid #0b4f8f;
  background:
    linear-gradient(90deg, transparent 48%, #0b4f8f 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, #0b4f8f 49% 51%, transparent 52%);
}
.process-flow-image.qc:before {
  width: 40px;
  height: 40px;
  border: 2px solid #0b4f8f;
  border-radius: 50%;
}
.process-flow-image.qc:after {
  width: 20px;
  height: 10px;
  border-left: 3px solid #0b4f8f;
  border-bottom: 3px solid #0b4f8f;
  transform: rotate(-45deg);
}
.process-flow-image.delivery:before {
  width: 50px;
  height: 28px;
  border-radius: 3px;
  background: #d89b58;
  box-shadow: 14px 8px 0 #0b4f8f;
}
.process-flow-image.delivery:after {
  width: 10px;
  height: 10px;
  bottom: 11px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 34px 0 0 #fff;
}
.process-flow-image span {
  z-index: 2;
}
.detail-quality-section.soft-panel {
  padding: 22px 24px 26px;
  background: linear-gradient(180deg, #f4f9fe, #eef6fc);
}
.qc-workflow-grid {
  gap: 11px;
}
.qc-workflow-step {
  min-height: 150px;
  padding: 14px 10px;
}
.qc-workflow-step span {
  font-size: 0;
}
.qc-workflow-step span:before {
  content: "";
  width: 24px;
  height: 24px;
  border: 2px solid #0b4f8f;
  border-radius: 5px;
}
.qc-workflow-step:nth-child(1) span:before {
  box-shadow: 0 -6px 0 -2px #0b4f8f, 0 6px 0 -2px #0b4f8f;
}
.qc-workflow-step:nth-child(2) span:before {
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px #fff;
  background: radial-gradient(circle, #0b4f8f 0 3px, transparent 4px);
}
.qc-workflow-step:nth-child(3) span:before {
  border-radius: 0;
  transform: rotate(45deg);
}
.qc-workflow-step:nth-child(4) span:before {
  width: 32px;
  height: 14px;
  border-radius: 2px;
  transform: rotate(-25deg);
}
.qc-workflow-step:nth-child(5) span:before {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 52%, #0b4f8f 53% 60%, transparent 61%);
}
.qc-workflow-step:nth-child(6) span:before {
  border-radius: 3px;
  background: linear-gradient(135deg, transparent 48%, rgba(11,79,143,.18) 49%);
}
.capability-machine-visual {
  min-height: 234px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05), rgba(255,255,255,.22)),
    url("assets/factory-floor.jpg") center/cover no-repeat;
}
.capability-machine-visual:before,
.capability-machine-visual:after,
.capability-machine-visual span {
  display: none;
}
.capability-point-grid article {
  min-height: 124px;
}
.capability-point-grid article:before,
.compliance-card span {
  display: grid;
  place-items: center;
}
.capability-point-grid article:nth-child(1):before { content: "PR"; }
.capability-point-grid article:nth-child(2):before { content: "FN"; }
.capability-point-grid article:nth-child(3):before { content: "PK"; }
.capability-point-grid article:nth-child(4):before { content: "EX"; }
.capability-stat-row article {
  display: grid;
  place-items: center;
  align-content: center;
}
.capability-stat-row b {
  font-size: 14px;
}
.compliance-card-grid {
  gap: 10px;
}
.compliance-card {
  min-height: 108px;
}
.compliance-card span {
  font-size: 0;
}
.compliance-card span:before {
  color: #0b4f8f;
  font-size: 14px;
  font-weight: 900;
}
.compliance-card:nth-child(1) span:before { content: "QA"; }
.compliance-card:nth-child(2) span:before { content: "FSC"; font-size: 11px; }
.compliance-card:nth-child(3) span:before { content: "MC"; }
.compliance-card:nth-child(4) span:before { content: "SAFE"; font-size: 10px; }
.compliance-card:nth-child(5) span:before { content: "DOC"; font-size: 11px; }
.product-requirements-band {
  padding: 30px 0;
}
.requirements-layout {
  grid-template-columns: 250px minmax(0, 1fr);
}
.requirements-product-visual {
  height: 164px;
}
.related-products-section h2 {
  font-size: 20px;
}
@media (max-width: 1180px) {
  .process-flow-step:nth-child(4):after {
    display: none;
  }
  .process-flow-step:not(:last-child):after {
    display: grid;
  }
}
@media (max-width: 640px) {
  .material-sample-tile .material-visual,
  .finish-sample-tile .finish-visual {
    min-height: 118px;
  }
}

/* Product detail structure-only alignment pass */
body:has(.product-detail-hero) {
  overflow-x: hidden;
}
body:has(.product-detail-hero) .topbar > .wrap,
body:has(.product-detail-hero) .cta > .wrap,
body:has(.product-detail-hero) .footer > .wrap {
  width: min(1200px, calc(100% - 42px));
}
body:has(.product-detail-hero) main > .page-hero.product-detail-hero > .wrap,
body:has(.product-detail-hero) main > .product-detail-content > .wrap,
body:has(.product-detail-hero) main > .product-requirements-band > .wrap,
body:has(.product-detail-hero) main > .related-products-section > .wrap {
  width: min(1048px, calc(100% - 42px));
  margin-inline: auto;
  box-sizing: border-box;
}
body:has(.product-detail-hero) main,
body:has(.product-detail-hero) main * {
  box-sizing: border-box;
}
.product-detail-content {
  padding: 22px 0 26px;
}
.product-detail-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  width: 100%;
}
.product-detail-stack > section {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
}
.detail-intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 376px);
  gap: 18px;
  align-items: stretch;
}
.detail-commerce-gallery,
.product-info-panel,
.detail-attribute-strip,
.detail-material-section,
.detail-finishing-section,
.detail-custom-section,
.detail-process-section,
.detail-quality-section,
.detail-capability-section,
.detail-cert-section,
.product-faq-section,
.product-requirements-band,
.related-products-section {
  max-width: 100%;
}
.detail-commerce-gallery {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
}
.detail-commerce-stage-wrap,
.detail-gallery-stage,
.product-info-panel {
  width: 100%;
  min-width: 0;
}
.detail-attribute-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.material-board-grid,
.finish-sample-board {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.customization-board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.process-flow-board {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.qc-workflow-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.capability-showcase {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}
.capability-point-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.capability-stat-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.compliance-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.product-faq-section .faq-accordion {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.requirements-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
}
.related-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1180px) {
  .material-board-grid,
  .finish-sample-board,
  .process-flow-board {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .qc-workflow-grid,
  .capability-point-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .capability-stat-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .detail-intro-section,
  .capability-showcase,
  .requirements-layout {
    grid-template-columns: 1fr;
  }
  .detail-commerce-gallery {
    grid-template-columns: 1fr;
  }
  .detail-commerce-gallery .detail-gallery-dots {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .customization-board-grid,
  .compliance-card-grid,
  .product-faq-section .faq-accordion,
  .related-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  body:has(.product-detail-hero) .topbar > .wrap,
  body:has(.product-detail-hero) .cta > .wrap,
  body:has(.product-detail-hero) .footer > .wrap,
  body:has(.product-detail-hero) main > .page-hero.product-detail-hero > .wrap,
  body:has(.product-detail-hero) main > .product-detail-content > .wrap,
  body:has(.product-detail-hero) main > .product-requirements-band > .wrap,
  body:has(.product-detail-hero) main > .related-products-section > .wrap {
    width: min(100% - 28px, 1048px);
  }
  .detail-attribute-strip,
  .material-board-grid,
  .finish-sample-board,
  .process-flow-board,
  .qc-workflow-grid,
  .capability-point-grid,
  .capability-stat-row,
  .customization-board-grid,
  .compliance-card-grid,
  .product-faq-section .faq-accordion,
  .related-product-grid,
  .product-requirements-band .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Product detail: target reference reconstruction */
body:has(.product-detail-hero) {
  background: #fff;
  color: #09284d;
}

body:has(.product-detail-hero) .wrap {
  width: min(680px, calc(100% - 44px));
  max-width: 680px;
}

body:has(.product-detail-hero) .topbar {
  position: relative;
  min-height: 34px;
  background: #fff;
  border-bottom: 1px solid #edf1f6;
}

body:has(.product-detail-hero) .nav {
  height: 34px;
  gap: 16px;
}

body:has(.product-detail-hero) .brand {
  min-width: 154px;
  gap: 6px;
}

body:has(.product-detail-hero) .brand-mark {
  width: 18px;
  height: 18px;
}

body:has(.product-detail-hero) .brand-name {
  font-size: 8px;
}

body:has(.product-detail-hero) .links {
  display: flex !important;
  gap: 18px;
  font-size: 5.8px;
  line-height: 1;
}

body:has(.product-detail-hero) .links .active:after {
  bottom: -12px;
  height: 2px;
}

body:has(.product-detail-hero) .nav-actions .btn-orange {
  min-height: 20px;
  padding: 0 14px;
  border-radius: 3px;
  font-size: 5.8px;
  box-shadow: none;
}

body:has(.product-detail-hero) .nav-actions .menu {
  display: none !important;
}

body:has(.product-detail-hero) .product-detail-hero {
  min-height: 166px;
  padding: 37px 0 28px;
  color: #fff;
  background:
    linear-gradient(90deg, #071f41 0%, #071f41 49%, rgba(7,31,65,.5) 70%, rgba(7,31,65,.05) 100%),
    var(--detail-hero-image) center right / cover no-repeat;
}

body:has(.product-detail-hero) .product-detail-hero .eyebrow {
  display: none;
}

body:has(.product-detail-hero) .product-detail-hero h1 {
  max-width: 330px;
  margin: 0 0 8px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.1;
}

body:has(.product-detail-hero) .product-detail-hero p:not(.eyebrow) {
  max-width: 310px;
  margin: 0 0 16px;
  color: rgba(255,255,255,.94);
  font-size: 9.2px;
  line-height: 1.55;
}

body:has(.product-detail-hero) .product-detail-hero .btn {
  min-height: 28px;
  padding: 0 18px;
  border-radius: 4px;
  font-size: 7px;
  box-shadow: 0 8px 18px rgba(255,90,18,.24);
}

body:has(.product-detail-hero) .product-detail-content {
  padding: 17px 0 0;
}

body:has(.product-detail-hero) .product-detail-stack {
  display: grid;
  gap: 12px;
}

body:has(.product-detail-hero) .detail-intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 14px;
  align-items: stretch;
}

body:has(.product-detail-hero) .detail-commerce-gallery {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

body:has(.product-detail-hero) .detail-server-product-visual {
  min-width: 0;
  min-height: 236px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #d9e4ef;
  border-radius: 6px;
  background: #f7f8fa;
}

body:has(.product-detail-hero) .detail-server-product-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 236px;
  object-fit: cover;
}

body:has(.product-detail-hero) .detail-commerce-thumbs,
body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-dots {
  position: static;
  order: 0 !important;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-content: start;
  padding: 0;
}

body:has(.product-detail-hero) .detail-gallery-dot {
  width: 82px;
  height: 75px;
  border: 1px solid #d3deeb;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
}

body:has(.product-detail-hero) .detail-gallery-dot.active {
  border: 2px solid #ff5a12;
}

body:has(.product-detail-hero) .detail-commerce-stage-wrap {
  position: relative;
  order: 1 !important;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d9e4ef;
  border-radius: 6px;
  background: #f7f8fa;
}

body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-stage {
  min-height: 236px;
  height: 236px;
  overflow: hidden;
}

body:has(.product-detail-hero) .detail-gallery-slide {
  background-size: cover;
  background-position: center;
}

body:has(.product-detail-hero) .detail-gallery-arrow {
  display: none;
}

body:has(.product-detail-hero) .product-info-panel {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 236px;
  padding: 13px;
  border: 1px solid #d9e4ef;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(7,31,65,.08);
}

body:has(.product-detail-hero) .product-info-panel .eyebrow {
  margin: 0;
  color: #ff5a12;
  font-size: 6.4px;
}

body:has(.product-detail-hero) .product-info-panel h2 {
  margin: 0;
  color: #08284d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.1;
}

body:has(.product-detail-hero) .product-info-panel p:not(.eyebrow) {
  margin: 0;
  color: #53677f;
  font-size: 6.8px;
  line-height: 1.38;
}

body:has(.product-detail-hero) .product-key-specs {
  display: grid;
  margin: 2px 0 0;
  border: 1px solid #dbe5f0;
  border-bottom: 0;
}

body:has(.product-detail-hero) .product-key-specs div {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  min-height: 18px;
  border-bottom: 1px solid #dbe5f0;
}

body:has(.product-detail-hero) .product-key-specs dt,
body:has(.product-detail-hero) .product-key-specs dd {
  margin: 0;
  padding: 3px 6px;
  font-size: 6.2px;
  line-height: 1.18;
}

body:has(.product-detail-hero) .product-key-specs dt {
  color: #08284d;
  font-weight: 900;
  background: #f8fbff;
}

body:has(.product-detail-hero) .product-key-specs dd {
  color: #394d66;
  border-left: 1px solid #dbe5f0;
}

body:has(.product-detail-hero) .product-panel-cta .btn {
  width: 100%;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 3px;
  font-size: 6.5px;
  box-shadow: none;
}

body:has(.product-detail-hero) .product-panel-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin-top: 6px;
  color: #64748b;
  font-size: 5.5px;
  text-align: center;
}

body:has(.product-detail-hero) .product-panel-mini span:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 3px;
  border: 1px solid #6b91ba;
  border-radius: 50%;
  vertical-align: -1px;
}

body:has(.product-detail-hero) .detail-attribute-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 35px;
  border-top: 1px solid #d9e4ef;
  border-bottom: 1px solid #d9e4ef;
  background: #fff;
}

body:has(.product-detail-hero) .detail-attribute-strip article {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 35px;
  padding: 5px 12px 5px 36px;
  border-right: 1px solid #edf2f8;
}

body:has(.product-detail-hero) .detail-attribute-strip article:before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 15px;
  height: 15px;
  border: 1.5px solid #315b85;
  border-radius: 3px;
  transform: translateY(-50%);
}

body:has(.product-detail-hero) .detail-attribute-strip b {
  color: #09284d;
  font-size: 6.8px;
}

body:has(.product-detail-hero) .detail-attribute-strip span {
  color: #526986;
  font-size: 5.8px;
  line-height: 1.2;
}

body:has(.product-detail-hero) .manufacturing-board,
body:has(.product-detail-hero) .soft-panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body:has(.product-detail-hero) .manufacturing-board .board-head,
body:has(.product-detail-hero) .product-faq-section .detail-section-head,
body:has(.product-detail-hero) .related-products-section .section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 9px;
  text-align: center;
}

body:has(.product-detail-hero) .manufacturing-board .board-head:before,
body:has(.product-detail-hero) .manufacturing-board .board-head:after,
body:has(.product-detail-hero) .product-faq-section .detail-section-head:before,
body:has(.product-detail-hero) .product-faq-section .detail-section-head:after,
body:has(.product-detail-hero) .related-products-section .section-head:before,
body:has(.product-detail-hero) .related-products-section .section-head:after {
  content: "";
  width: 54px;
  height: 1px;
  background: #bdcede;
}

body:has(.product-detail-hero) .manufacturing-board .board-head h2,
body:has(.product-detail-hero) .product-faq-section .detail-section-head h2,
body:has(.product-detail-hero) .related-products-section .section-head h2 {
  margin: 0;
  color: #08284d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12.5px;
  line-height: 1.15;
}

body:has(.product-detail-hero) .manufacturing-board .board-head p,
body:has(.product-detail-hero) .related-products-section .section-head p,
body:has(.product-detail-hero) .section-head .eyebrow {
  display: none;
}

body:has(.product-detail-hero) .detail-material-section .material-board-grid,
body:has(.product-detail-hero) .detail-finishing-section .finish-sample-board {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
}

body:has(.product-detail-hero) .material-sample-tile,
body:has(.product-detail-hero) .finish-sample-tile {
  overflow: hidden;
  border: 1px solid #cbd8e8;
  border-radius: 4px;
  background: #fff;
  text-align: center;
}

body:has(.product-detail-hero) .material-visual {
  min-height: 68px;
  background-size: cover;
  background-position: center;
}

body:has(.product-detail-hero) .ivory-board { background: linear-gradient(135deg, #fbfaf7 0 48%, #e6e0d6 49% 51%, #fff 52%); }
body:has(.product-detail-hero) .sbs-board { background: linear-gradient(145deg, #f8fafc, #e9eef4 50%, #fff 51%); }
body:has(.product-detail-hero) .ccnb { background: repeating-linear-gradient(135deg, #f7f8f9 0 20px, #d7e0ea 21px 23px, #fff 24px 44px); }
body:has(.product-detail-hero) .kraft-paper { background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(0,0,0,.08)), repeating-linear-gradient(28deg, #b58a53 0 9px, #caa16d 10px 18px); }
body:has(.product-detail-hero) .art-paper { background: linear-gradient(135deg, #fff 0 42%, #d7e2ee 43% 45%, #f8fbff 46% 100%); }
body:has(.product-detail-hero) .specialty-paper { background: repeating-linear-gradient(45deg, #eef3f9 0 12px, #d9e4ef 13px 15px, #f8fbff 16px 26px); }
body:has(.product-detail-hero) .colored-card { background: linear-gradient(135deg, #c84242 0 32%, #007c79 33% 64%, #e4c447 65%); }
body:has(.product-detail-hero) .greyboard { background: repeating-linear-gradient(30deg, #c8ccd0 0 4px, #d9dcdf 5px 8px); }
body:has(.product-detail-hero) .corrugated-board { background: repeating-linear-gradient(0deg, #9b6f3c 0 8px, #c6955a 9px 15px, #714b27 16px 19px); }

body:has(.product-detail-hero) .material-sample-tile b,
body:has(.product-detail-hero) .finish-sample-tile b {
  display: grid;
  min-height: 25px;
  place-items: center;
  padding: 4px 3px;
  color: #08284d;
  font-size: 6.6px;
  line-height: 1.1;
}

body:has(.product-detail-hero) .finish-visual {
  position: relative;
  display: grid;
  min-height: 67px;
  place-items: center;
  overflow: hidden;
  background: #182432;
}

body:has(.product-detail-hero) .finish-visual:after {
  content: "";
  position: absolute;
  inset: -20% 45% -20% auto;
  width: 18px;
  background: rgba(255,255,255,.34);
  transform: rotate(28deg);
}

body:has(.product-detail-hero) .finish-visual span {
  position: relative;
  z-index: 1;
  color: #cfd6df;
  font-size: 14px;
  font-weight: 900;
  line-height: .95;
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
}

body:has(.product-detail-hero) .spot-uv { background: linear-gradient(135deg, #454b52, #0e1218); }
body:has(.product-detail-hero) .spot-uv span { color: #111; text-shadow: 0 1px 10px rgba(255,255,255,.65); }
body:has(.product-detail-hero) .embossing { background: linear-gradient(135deg, #d6d9dd, #9ea5ad); }
body:has(.product-detail-hero) .embossing span { color: #fff; text-shadow: 1px 1px 0 rgba(0,0,0,.18), -1px -1px 0 rgba(255,255,255,.5); }
body:has(.product-detail-hero) .debossing { background: linear-gradient(135deg, #eeeeef, #c8cdd3); }
body:has(.product-detail-hero) .debossing span { color: #c1c6cc; }
body:has(.product-detail-hero) .gold-foil span { color: #e4bb4a; }
body:has(.product-detail-hero) .silver-foil span { color: #d8e1ea; }
body:has(.product-detail-hero) .matte { background: linear-gradient(135deg, #28313d, #101720); }
body:has(.product-detail-hero) .gloss { background: linear-gradient(135deg, #0d1118, #293340); }
body:has(.product-detail-hero) .soft-touch { background: linear-gradient(135deg, #111820, #1d2632); }
body:has(.product-detail-hero) .finish-sample-tile small { display: none; }

body:has(.product-detail-hero) .detail-custom-section .customization-board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

body:has(.product-detail-hero) .customization-board-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 10px;
  min-height: 122px;
  padding: 9px;
  overflow: hidden;
  border: 1px solid #cbd8e8;
  border-radius: 6px;
  background: #fff;
}

body:has(.product-detail-hero) .custom-board-visual {
  position: relative;
  min-height: 100px;
  border-radius: 4px;
  background: #f5f9fd;
}

body:has(.product-detail-hero) .structure-design-board .custom-board-visual {
  background-image: linear-gradient(#e4edf6 1px, transparent 1px), linear-gradient(90deg, #e4edf6 1px, transparent 1px);
  background-size: 16px 16px;
}

body:has(.product-detail-hero) .structure-design-board .custom-board-visual:before {
  content: "";
  position: absolute;
  inset: 18px 26px;
  border: 2px dashed #0b4f8f;
  box-shadow: -22px 20px 0 -13px #9eb5cd, 22px 20px 0 -13px #9eb5cd;
}

body:has(.product-detail-hero) .size-fit-board .custom-board-visual:before {
  content: "";
  position: absolute;
  left: 38%;
  top: 24%;
  width: 48px;
  height: 54px;
  background: #0b2d55;
  transform: skewY(-8deg);
  box-shadow: 14px 8px 0 #1e446f;
}

body:has(.product-detail-hero) .size-fit-board .custom-board-visual:after {
  content: "35cm  路  30cm  路  14cm";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  color: #315b85;
  font-size: 7px;
  text-align: center;
}

body:has(.product-detail-hero) .artwork-print-board .custom-board-visual {
  background: linear-gradient(135deg, #14304f 0 28%, #fff 29% 47%, #0a766f 48% 62%, #f15a40 63% 76%, #f1c84c 77%);
}

body:has(.product-detail-hero) .artwork-print-board .custom-board-visual:before {
  content: "YOUR\A BRAND";
  white-space: pre;
  position: absolute;
  left: 20px;
  top: 24px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f7f1e8;
  color: #9b6f3c;
  font-size: 7px;
  font-weight: 900;
  text-align: center;
}

body:has(.product-detail-hero) .custom-board-copy h3 {
  margin: 18px 0 8px;
  color: #08284d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  line-height: 1.1;
}

body:has(.product-detail-hero) .custom-board-copy ul,
body:has(.product-detail-hero) .qc-workflow-step ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

body:has(.product-detail-hero) .custom-board-copy li {
  position: relative;
  margin: 0 0 5px;
  padding-left: 9px;
  color: #405775;
  font-size: 6.5px;
  line-height: 1.25;
}

body:has(.product-detail-hero) .custom-board-copy li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0b4f8f;
}

body:has(.product-detail-hero) .detail-process-section .process-flow-board {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 9px;
}

body:has(.product-detail-hero) .process-flow-step {
  position: relative;
  display: grid;
  grid-template-rows: 52px auto;
  min-height: 99px;
  padding: 8px 5px 7px;
  border: 1px solid #cbd8e8;
  border-radius: 6px;
  background: #fff;
  text-align: center;
}

body:has(.product-detail-hero) .process-flow-step:not(:last-child):after {
  content: "";
  position: absolute;
  right: -8px;
  top: 43%;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid #315b85;
  border-right: 1.5px solid #315b85;
  transform: rotate(45deg);
}

body:has(.product-detail-hero) .process-flow-image {
  position: relative;
  height: 46px;
  border-radius: 5px;
  background: #eef5fb;
  overflow: hidden;
}

body:has(.product-detail-hero) .process-flow-image span {
  position: absolute;
  left: -5px;
  top: -5px;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: #0b2d55;
  color: #fff;
  font-size: 6.5px;
  font-weight: 900;
}

body:has(.product-detail-hero) .process-flow-image:before {
  content: "";
  position: absolute;
  inset: 11px 16px;
  border: 3px solid #0b4f8f;
  border-radius: 3px;
}

body:has(.product-detail-hero) .dieline:before { border-style: dashed; border-color: #0b4f8f #ff5a12 #0b4f8f #0b4f8f; }
body:has(.product-detail-hero) .sample:before { border-radius: 50%; border-color: #188a70; box-shadow: 14px 10px 0 #d5a067; }
body:has(.product-detail-hero) .printing:before { inset: 14px 10px; border: 0; border-radius: 2px; background: linear-gradient(90deg, #1b76bb 0 25%, #ed3b53 26% 50%, #f8d23b 51% 75%, #2aaa65 76%); }
body:has(.product-detail-hero) .finishing:before { inset: 12px 20px; border: 0; border-radius: 2px; background: linear-gradient(135deg, #172337 0 45%, #f0dca1 46% 55%, #fff 56% 62%, #cc9b45 63%); transform: skewY(-8deg); }
body:has(.product-detail-hero) .diecut:before { border-radius: 10px 2px 10px 2px; }
body:has(.product-detail-hero) .qc:before { border: 0; background: none; box-shadow: inset 0 0 0 4px #0b4f8f; border-radius: 50%; }
body:has(.product-detail-hero) .qc:after { content: ""; position:absolute; left:28px; top:22px; width:18px; height:9px; border-left:3px solid #0b4f8f; border-bottom:3px solid #0b4f8f; transform:rotate(-45deg); }
body:has(.product-detail-hero) .delivery:before { inset: 17px 13px 9px; border: 0; border-radius: 2px; background: linear-gradient(90deg, #c9904d 0 66%, #315b85 67%); box-shadow: 18px 16px 0 -13px #0b2d55; }

body:has(.product-detail-hero) .process-flow-step b {
  align-self: center;
  color: #08284d;
  font-size: 7.2px;
  line-height: 1.12;
}

body:has(.product-detail-hero) .process-flow-step p {
  display: none;
}

body:has(.product-detail-hero) .detail-quality-section.soft-panel {
  padding: 15px 14px;
  background: #eef6fc;
}

body:has(.product-detail-hero) .qc-system-visual {
  display: none;
}

body:has(.product-detail-hero) .qc-workflow-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

body:has(.product-detail-hero) .qc-workflow-step {
  display: grid;
  grid-template-rows: 40px auto 1fr;
  min-height: 116px;
  padding: 10px 8px;
  border: 1px solid #d7e4f1;
  border-radius: 5px;
  background: #fff;
  text-align: center;
}

body:has(.product-detail-hero) .qc-workflow-step span {
  display: grid;
  width: 36px;
  height: 36px;
  margin: 0 auto;
  place-items: center;
}

body:has(.product-detail-hero) .qc-workflow-step span:before {
  content: "";
  width: 22px;
  height: 22px;
  border: 2px solid #0b4f8f;
  border-radius: 4px;
}

body:has(.product-detail-hero) .qc-2 span:before { border-radius: 50%; box-shadow: inset 0 0 0 5px #fff, inset 0 0 0 8px #0b4f8f; }
body:has(.product-detail-hero) .qc-3 span:before { transform: rotate(45deg); }
body:has(.product-detail-hero) .qc-4 span:before { transform: rotate(-17deg); }
body:has(.product-detail-hero) .qc-5 span:before { border-radius: 50%; }
body:has(.product-detail-hero) .qc-6 span:before { border-radius: 2px; }

body:has(.product-detail-hero) .qc-workflow-step b {
  margin: 5px 0;
  color: #08284d;
  font-size: 7.5px;
  line-height: 1.12;
}

body:has(.product-detail-hero) .qc-workflow-step li {
  color: #5d6f86;
  font-size: 6.1px;
  line-height: 1.25;
}

body:has(.product-detail-hero) .detail-capability-section .capability-showcase {
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

body:has(.product-detail-hero) .capability-machine-visual {
  min-height: 136px;
  border-radius: 4px;
  background: url('assets/factory-floor.jpg') center / cover no-repeat;
}

body:has(.product-detail-hero) .capability-machine-visual span,
body:has(.product-detail-hero) .detail-capability-section p {
  display: none;
}

body:has(.product-detail-hero) .detail-capability-section h2 {
  margin: 0 0 9px;
  color: #08284d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12.5px;
  text-align: center;
}

body:has(.product-detail-hero) .capability-point-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

body:has(.product-detail-hero) .capability-point-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 112px;
  padding: 10px 6px;
  border: 1px solid #d7e3f0;
  border-radius: 5px;
  background: #fff;
  text-align: center;
}

body:has(.product-detail-hero) .capability-point-grid i {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 6px;
  place-items: center;
  border: 1px solid #bdd0e5;
  border-radius: 50%;
  background: #f7fbff;
  color: #0b4f8f;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

body:has(.product-detail-hero) .capability-point-grid b {
  color: #08284d;
  font-size: 7px;
  line-height: 1.18;
}

body:has(.product-detail-hero) .capability-point-grid span {
  margin-top: 5px;
  color: #61728a;
  font-size: 5.8px;
  line-height: 1.25;
}

body:has(.product-detail-hero) .capability-stat-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 8px;
  border: 1px solid #d6e2ef;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
}

body:has(.product-detail-hero) .capability-stat-row article {
  min-height: 31px;
  padding: 5px 3px;
  border-right: 1px solid #e1e9f3;
  text-align: center;
}

body:has(.product-detail-hero) .capability-stat-row b {
  display: block;
  color: #0b4f8f;
  font-size: 10px;
  line-height: 1.1;
}

body:has(.product-detail-hero) .capability-stat-row span {
  color: #526986;
  font-size: 5.8px;
}

body:has(.product-detail-hero) .detail-cert-section .compliance-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

body:has(.product-detail-hero) .compliance-card {
  display: grid;
  justify-items: center;
  min-height: 75px;
  padding: 8px 6px;
  border: 1px solid #d6e2ef;
  border-radius: 5px;
  background: #fff;
  text-align: center;
}

body:has(.product-detail-hero) .compliance-card span {
  display: grid;
  width: 30px;
  height: 30px;
  margin-bottom: 4px;
  place-items: center;
  border: 1px solid #bfd2e5;
  border-radius: 50%;
  color: #0b4f8f;
  font-size: 10px;
  font-weight: 900;
}

body:has(.product-detail-hero) .compliance-1 span:before { content: "QA"; }
body:has(.product-detail-hero) .compliance-2 span:before { content: "FSC"; color:#138a58; }
body:has(.product-detail-hero) .compliance-3 span:before { content: "MC"; }
body:has(.product-detail-hero) .compliance-4 span:before { content: "SAFE"; font-size:7px; }
body:has(.product-detail-hero) .compliance-5 span:before { content: "DOC"; }

body:has(.product-detail-hero) .compliance-card b {
  color: #08284d;
  font-size: 7.1px;
  line-height: 1.1;
}

body:has(.product-detail-hero) .compliance-card p {
  margin: 3px 0 0;
  color: #5e7188;
  font-size: 5.8px;
  line-height: 1.15;
}

body:has(.product-detail-hero) .product-faq-section.soft-panel {
  padding: 13px 16px;
  border-radius: 6px;
  background: #eef6fc;
}

body:has(.product-detail-hero) .product-faq-section .faq-accordion {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 22px;
  max-width: 100%;
}

body:has(.product-detail-hero) .product-faq-section .faq-item {
  overflow: hidden;
  border: 1px solid #d8e2ef;
  border-radius: 4px;
  background: #fff;
}

body:has(.product-detail-hero) .product-faq-section .faq-question {
  width: 100%;
  min-height: 22px;
  padding: 6px 9px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  color: #08284d;
  font-size: 6.8px;
  font-weight: 800;
  text-align: left;
}

body:has(.product-detail-hero) .product-faq-section .faq-answer {
  display: none;
}

body:has(.product-detail-hero) .product-requirements-band {
  margin-top: 0;
  padding: 18px 0;
  background: #071f41;
}

body:has(.product-detail-hero) .requirements-layout {
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

body:has(.product-detail-hero) .requirements-copy h2 {
  margin: 0 0 9px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.2;
}

body:has(.product-detail-hero) .requirements-product-visual {
  height: 112px;
  border: 0;
  border-radius: 0;
  background: var(--requirements-image) center / contain no-repeat;
}

body:has(.product-detail-hero) .product-requirements-band .section-head {
  display: none;
}

body:has(.product-detail-hero) .detail-quote-form {
  padding: 9px;
  border-radius: 5px;
  background: #fff;
}

body:has(.product-detail-hero) .product-requirements-band .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 10px;
}

body:has(.product-detail-hero) .product-requirements-band label {
  color: #08284d;
  font-size: 6.4px;
  font-weight: 800;
}

body:has(.product-detail-hero) .product-requirements-band input,
body:has(.product-detail-hero) .product-requirements-band textarea,
body:has(.product-detail-hero) .product-requirements-band select {
  min-height: 19px;
  margin-top: 2px;
  padding: 4px 6px;
  border: 1px solid #d9e2ee;
  border-radius: 3px;
  color: #526173;
  font-size: 6.4px;
}

body:has(.product-detail-hero) .product-requirements-band textarea {
  min-height: 38px;
}

body:has(.product-detail-hero) .product-requirements-band .form-more-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  color: #ff5a12;
  font-size: 7px;
  font-weight: 900;
}

body:has(.product-detail-hero) .product-requirements-band .btn {
  justify-self: center;
  min-width: 134px;
  min-height: 23px;
  padding: 0 12px;
  border-radius: 4px;
  font-size: 7px;
  box-shadow: none;
}

body:has(.product-detail-hero) .related-products-section {
  padding: 13px 0 14px;
  background: #f7fafc;
}

body:has(.product-detail-hero) .related-products-section .section-head {
  justify-content: flex-start;
  margin-bottom: 8px;
}

body:has(.product-detail-hero) .related-products-section .section-head:before,
body:has(.product-detail-hero) .related-products-section .section-head:after {
  display: none;
}

body:has(.product-detail-hero) .related-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}

body:has(.product-detail-hero) .related-product-card a {
  display: grid;
  grid-template-rows: 66px auto auto;
  min-height: 106px;
  overflow: hidden;
  border: 1px solid #d6e2ef;
  border-radius: 4px;
  background: #fff;
}

body:has(.product-detail-hero) .related-product-image {
  min-height: 66px;
  background-size: cover;
  background-position: center;
}

body:has(.product-detail-hero) .related-product-card h3 {
  margin: 7px 8px 3px;
  color: #08284d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 7px;
}

body:has(.product-detail-hero) .related-product-card b {
  margin: 0 8px 7px;
  color: #08284d;
  font-size: 6px;
}

body:has(.product-detail-hero) .cta {
  display: none;
}

body:has(.product-detail-hero) .footer {
  padding: 13px 0 8px;
  background: #041832;
}

body:has(.product-detail-hero) .footer-grid {
  grid-template-columns: 1.15fr repeat(4, .78fr) 1.1fr;
  gap: 18px;
}

body:has(.product-detail-hero) .footer .brand-mark {
  width: 18px;
  height: 18px;
}

body:has(.product-detail-hero) .footer .brand-name {
  color: #fff;
  font-size: 7px;
}

body:has(.product-detail-hero) .footer b {
  margin-bottom: 5px;
  font-size: 7px;
}

body:has(.product-detail-hero) .footer a,
body:has(.product-detail-hero) .footer span {
  margin: 3px 0;
  font-size: 5.8px;
  line-height: 1.25;
}

body:has(.product-detail-hero) .footer .social-links,
body:has(.product-detail-hero) .footer-bottom {
  display: none;
}

body:has(.product-detail-hero) .qr-grid {
  grid-template-columns: repeat(2, 42px);
  gap: 8px;
}

body:has(.product-detail-hero) .qr-card img,
body:has(.product-detail-hero) .qr-card span {
  width: 42px;
  height: 42px;
}

body:has(.product-detail-hero) .qr-card em {
  font-size: 5.5px;
}

@media (max-width: 760px) {
  body:has(.product-detail-hero) .wrap {
    width: min(680px, calc(100% - 24px));
  }

  body:has(.product-detail-hero) .links {
    display: none !important;
  }

  body:has(.product-detail-hero) .nav-actions .menu {
    display: inline-flex !important;
  }

  body:has(.product-detail-hero) .detail-intro-section,
  body:has(.product-detail-hero) .requirements-layout,
  body:has(.product-detail-hero) .detail-capability-section .capability-showcase {
    grid-template-columns: 1fr;
  }

  body:has(.product-detail-hero) .detail-commerce-gallery {
    grid-template-columns: 1fr;
  }

  body:has(.product-detail-hero) .detail-commerce-thumbs {
    grid-template-columns: repeat(3, 1fr);
    order: 2 !important;
  }

  body:has(.product-detail-hero) .detail-gallery-dot {
    width: 100%;
  }

  body:has(.product-detail-hero) .detail-material-section .material-board-grid,
  body:has(.product-detail-hero) .detail-finishing-section .finish-sample-board,
  body:has(.product-detail-hero) .detail-process-section .process-flow-board,
  body:has(.product-detail-hero) .detail-quality-section .qc-workflow-grid,
  body:has(.product-detail-hero) .detail-cert-section .compliance-card-grid,
  body:has(.product-detail-hero) .related-product-grid,
  body:has(.product-detail-hero) .product-faq-section .faq-accordion {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:has(.product-detail-hero) .detail-custom-section .customization-board-grid {
    grid-template-columns: 1fr;
  }
}

/* Product detail: target height and proportion pass */
body:has(.product-detail-hero) .product-detail-stack {
  gap: 8px;
}

body:has(.product-detail-hero) .detail-intro-section {
  align-items: start;
}

body:has(.product-detail-hero) .detail-commerce-gallery,
body:has(.product-detail-hero) .product-info-panel {
  height: 286px;
  min-height: 0;
}

body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-stage,
body:has(.product-detail-hero) .detail-commerce-stage-wrap {
  height: 286px;
  min-height: 0;
}

body:has(.product-detail-hero) .product-info-panel {
  overflow: hidden;
  gap: 5px;
  padding: 11px;
}

body:has(.product-detail-hero) .product-info-panel h2 {
  font-size: 14px;
}

body:has(.product-detail-hero) .product-info-panel p:not(.eyebrow) {
  font-size: 6.2px;
  line-height: 1.28;
}

body:has(.product-detail-hero) .product-key-specs div {
  min-height: 17px;
}

body:has(.product-detail-hero) .product-key-specs dt,
body:has(.product-detail-hero) .product-key-specs dd {
  padding: 2px 5px;
  font-size: 5.8px;
  line-height: 1.1;
}

body:has(.product-detail-hero) .product-panel-cta .btn {
  min-height: 19px;
  font-size: 6px;
}

body:has(.product-detail-hero) .detail-attribute-strip,
body:has(.product-detail-hero) .detail-attribute-strip article {
  min-height: 32px;
}

body:has(.product-detail-hero) .manufacturing-board .board-head,
body:has(.product-detail-hero) .product-faq-section .detail-section-head {
  margin-bottom: 6px;
}

body:has(.product-detail-hero) .manufacturing-board .board-head h2,
body:has(.product-detail-hero) .product-faq-section .detail-section-head h2 {
  font-size: 12px;
}

body:has(.product-detail-hero) .material-visual,
body:has(.product-detail-hero) .finish-visual {
  min-height: 58px;
}

body:has(.product-detail-hero) .material-sample-tile b,
body:has(.product-detail-hero) .finish-sample-tile b {
  min-height: 22px;
  font-size: 6.1px;
}

body:has(.product-detail-hero) .customization-board-card {
  min-height: 116px;
  padding: 8px;
}

body:has(.product-detail-hero) .custom-board-visual {
  min-height: 94px;
}

body:has(.product-detail-hero) .custom-board-copy h3 {
  margin-top: 13px;
}

body:has(.product-detail-hero) .custom-board-copy li {
  margin-bottom: 4px;
  font-size: 6.1px;
}

body:has(.product-detail-hero) .process-flow-step {
  min-height: 88px;
  grid-template-rows: 43px auto;
  padding: 7px 4px;
}

body:has(.product-detail-hero) .process-flow-image {
  height: 39px;
}

body:has(.product-detail-hero) .process-flow-step b {
  font-size: 6.6px;
}

body:has(.product-detail-hero) .detail-quality-section.soft-panel {
  padding: 12px;
}

body:has(.product-detail-hero) .qc-workflow-step {
  min-height: 96px;
  grid-template-rows: 32px auto 1fr;
  padding: 8px 6px;
}

body:has(.product-detail-hero) .qc-workflow-step span {
  width: 30px;
  height: 30px;
}

body:has(.product-detail-hero) .qc-workflow-step span:before {
  width: 19px;
  height: 19px;
}

body:has(.product-detail-hero) .qc-workflow-step b {
  font-size: 6.7px;
}

body:has(.product-detail-hero) .qc-workflow-step li {
  font-size: 5.6px;
}

body:has(.product-detail-hero) .capability-machine-visual {
  min-height: 116px;
}

body:has(.product-detail-hero) .capability-point-grid article {
  min-height: 92px;
  padding: 8px 5px;
}

body:has(.product-detail-hero) .capability-point-grid i {
  width: 28px;
  height: 28px;
  margin-bottom: 5px;
  font-size: 10px;
}

body:has(.product-detail-hero) .capability-point-grid span {
  font-size: 5.4px;
}

body:has(.product-detail-hero) .compliance-card {
  min-height: 62px;
  padding: 7px 5px;
}

body:has(.product-detail-hero) .compliance-card span {
  width: 25px;
  height: 25px;
}

body:has(.product-detail-hero) .product-faq-section.soft-panel {
  padding: 10px 14px;
}

body:has(.product-detail-hero) .product-faq-section .faq-accordion {
  width: 100%;
  max-width: 100% !important;
  gap: 6px 18px;
}

body:has(.product-detail-hero) .product-faq-section .faq-answer,
body:has(.product-detail-hero) .product-faq-section .faq-item.open .faq-answer {
  display: none !important;
}

body:has(.product-detail-hero) .product-faq-section .faq-question {
  min-height: 18px;
  padding: 4px 8px;
  font-size: 6.2px;
}

body:has(.product-detail-hero) .product-requirements-band {
  padding: 12px 0;
}

body:has(.product-detail-hero) .requirements-product-visual {
  height: 92px;
}

body:has(.product-detail-hero) .detail-quote-form {
  padding: 7px;
}

body:has(.product-detail-hero) .product-requirements-band .form-grid {
  gap: 4px 8px;
}

body:has(.product-detail-hero) .product-requirements-band input,
body:has(.product-detail-hero) .product-requirements-band textarea,
body:has(.product-detail-hero) .product-requirements-band select {
  min-height: 15px;
  padding: 2px 5px;
  font-size: 5.8px;
}

body:has(.product-detail-hero) .product-requirements-band textarea {
  min-height: 25px;
}

body:has(.product-detail-hero) .product-requirements-band .btn {
  min-height: 19px;
  font-size: 6.2px;
}

body:has(.product-detail-hero) .related-products-section {
  padding: 10px 0 11px;
}

body:has(.product-detail-hero) .related-product-card a {
  grid-template-rows: 56px auto auto;
  min-height: 92px;
}

body:has(.product-detail-hero) .related-product-image {
  min-height: 56px;
}

body:has(.product-detail-hero) .footer {
  padding: 9px 0 6px;
}

/* Product detail: final reference-fit pass */
body:has(.product-detail-hero) .product-detail-hero {
  height: 166px;
  min-height: 0;
  box-sizing: border-box;
}

body:has(.product-detail-hero) .detail-commerce-gallery,
body:has(.product-detail-hero) .product-info-panel,
body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-stage,
body:has(.product-detail-hero) .detail-commerce-stage-wrap {
  height: 270px;
}

body:has(.product-detail-hero) .detail-gallery-dot {
  height: 70px;
}

body:has(.product-detail-hero) .detail-custom-section.soft-panel {
  height: 154px;
  overflow: hidden;
}

body:has(.product-detail-hero) .detail-custom-section .customization-board-grid {
  height: 124px;
}

body:has(.product-detail-hero) .detail-custom-section .customization-board-card {
  height: 124px;
  min-height: 0;
}

body:has(.product-detail-hero) .detail-custom-section .custom-board-visual {
  min-height: 82px;
}

body:has(.product-detail-hero) .detail-custom-section .custom-board-copy h3 {
  margin-top: 8px;
}

body:has(.product-detail-hero) .detail-process-section {
  height: 112px;
  overflow: visible;
}

body:has(.product-detail-hero) .detail-process-section .process-flow-board {
  height: 82px;
}

body:has(.product-detail-hero) .detail-process-section .process-flow-step {
  min-height: 78px;
  height: 78px;
}

body:has(.product-detail-hero) .detail-quality-section.soft-panel {
  height: 172px;
  overflow: visible;
}

body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step {
  min-height: 112px;
}

body:has(.product-detail-hero) .detail-capability-section {
  height: 176px;
  overflow: hidden;
}

body:has(.product-detail-hero) .detail-capability-section .capability-machine-visual {
  min-height: 106px;
}

body:has(.product-detail-hero) .detail-capability-section .capability-point-grid article {
  min-height: 82px;
}

body:has(.product-detail-hero) .product-faq-section.soft-panel {
  height: 142px;
  overflow: hidden;
}

body:has(.product-detail-hero) .product-faq-section .faq-accordion {
  height: 92px;
  overflow: hidden;
}

body:has(.product-detail-hero) .product-faq-section .faq-question span {
  display: block;
  color: #08284d;
  font-size: 6.8px;
  line-height: 1.15;
}

body:has(.product-detail-hero) .product-requirements-band {
  height: 214px;
  overflow: hidden;
}

body:has(.product-detail-hero) .product-requirements-band .wrap {
  height: auto;
}

body:has(.product-detail-hero) .product-requirements-band .detail-quote-form {
  max-height: none;
  overflow: hidden;
}

body:has(.product-detail-hero) .related-products-section {
  height: 122px;
  overflow: hidden;
}

body:has(.product-detail-hero) .footer {
  height: 74px;
  overflow: hidden;
}


/* Product detail: attached material image replacements */
body:has(.product-detail-hero) .material-sample-tile .ivory-board {
  background-image: url('assets/material-ivory-board.jpg');
}

body:has(.product-detail-hero) .material-sample-tile .sbs-board {
  background-image: url('assets/material-sbs-ccnb.jpg');
}

body:has(.product-detail-hero) .material-sample-tile .kraft-paper {
  background-image: url('assets/material-kraft-paper.jpg');
}

body:has(.product-detail-hero) .material-sample-tile .art-paper {
  background-image: url('assets/material-art-paper.jpg');
}

body:has(.product-detail-hero) .material-sample-tile .specialty-paper {
  background-image: url('assets/material-specialty-paper.jpg');
}

body:has(.product-detail-hero) .material-sample-tile .colored-card {
  background-image: url('assets/material-colored-card-paper.jpg');
}

body:has(.product-detail-hero) .material-sample-tile .greyboard {
  background-image: url('assets/material-greyboard.jpg');
}

body:has(.product-detail-hero) .material-sample-tile .corrugated-board {
  background-image: url('assets/material-corrugated-board.jpg');
}

body:has(.product-detail-hero) .material-sample-tile .material-visual {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Product detail: larger attached material images */
body:has(.product-detail-hero) .detail-material-section .material-visual {
  min-height: 86px;
}

body:has(.product-detail-hero) .detail-material-section .material-sample-tile b {
  min-height: 24px;
}


/* Product detail: attached finishing image replacements */
body:has(.product-detail-hero) .finish-sample-tile .finish-visual.spot-uv {
  background-image: url('assets/finish-spot-uv.jpg');
}

body:has(.product-detail-hero) .finish-sample-tile .finish-visual.embossing {
  background-image: url('assets/finish-embossing.jpg');
}

body:has(.product-detail-hero) .finish-sample-tile .finish-visual.debossing {
  background-image: url('assets/finish-debossing.jpg');
}

body:has(.product-detail-hero) .finish-sample-tile .finish-visual.gold-foil {
  background-image: url('assets/finish-gold-foil.jpg');
}

body:has(.product-detail-hero) .finish-sample-tile .finish-visual.silver-foil {
  background-image: url('assets/finish-silver-foil.jpg');
}

body:has(.product-detail-hero) .finish-sample-tile .finish-visual.matte {
  background-image: url('assets/finish-matte-lamination.jpg');
}

body:has(.product-detail-hero) .finish-sample-tile .finish-visual.gloss {
  background-image: url('assets/finish-gloss-lamination.jpg');
}

body:has(.product-detail-hero) .finish-sample-tile .finish-visual.soft-touch {
  background-image: url('assets/finish-soft-touch.jpg');
}

body:has(.product-detail-hero) .finish-sample-tile .finish-visual {
  min-height: 86px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body:has(.product-detail-hero) .finish-sample-tile .finish-visual span,
body:has(.product-detail-hero) .finish-sample-tile .finish-visual:after {
  display: none;
}

body:has(.product-detail-hero) .finish-sample-tile b {
  min-height: 24px;
}


/* Product detail: attached customization image replacements */
body:has(.product-detail-hero) .structure-design-board .custom-board-visual {
  background-image: url('assets/custom-structure-design.jpg');
}

body:has(.product-detail-hero) .size-fit-board .custom-board-visual {
  background-image: url('assets/custom-size-fit.jpg');
}

body:has(.product-detail-hero) .artwork-print-board .custom-board-visual {
  background-image: url('assets/custom-artwork-printing.jpg');
}

body:has(.product-detail-hero) .detail-custom-section .custom-board-visual {
  min-height: 94px;
  background-color: #fff;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

body:has(.product-detail-hero) .detail-custom-section .custom-board-visual:before,
body:has(.product-detail-hero) .detail-custom-section .custom-board-visual:after {
  display: none;
}

/* Product detail: attached customization image fit */
body:has(.product-detail-hero) .detail-custom-section.soft-panel {
  height: 174px;
  overflow: visible;
}

body:has(.product-detail-hero) .detail-custom-section .customization-board-grid {
  height: auto;
}

body:has(.product-detail-hero) .detail-custom-section .customization-board-card {
  height: auto;
  min-height: 138px;
}

/* Product detail: attached process image replacements */
body:has(.product-detail-hero) .detail-process-section .process-flow-board {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
  height: auto;
  overflow: visible;
}

body:has(.product-detail-hero) .detail-process-section {
  height: auto;
  min-height: 136px;
  overflow: visible;
}

body:has(.product-detail-hero) .detail-process-section .process-flow-step {
  min-height: 118px;
  height: auto;
  padding: 8px 5px 10px;
  border: 1px solid #c8d6e6;
  border-radius: 8px;
  background: #fff;
  overflow: visible;
}

body:has(.product-detail-hero) .detail-process-section .process-flow-image {
  min-height: 58px;
  height: 58px;
  border-radius: 6px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

body:has(.product-detail-hero) .detail-process-section .process-flow-image:before,
body:has(.product-detail-hero) .detail-process-section .process-flow-image:after {
  display: none;
}

body:has(.product-detail-hero) .detail-process-section .process-flow-image span {
  z-index: 2;
  width: 20px;
  height: 20px;
  left: 4px;
  top: 5px;
  background: #062e66;
  color: #fff;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 800;
}

body:has(.product-detail-hero) .detail-process-section .process-flow-step b {
  margin-top: 7px;
  min-height: 0;
  height: auto;
  padding-inline: 2px;
  color: #062b5f;
  font-size: 10px;
  line-height: 1.18;
  overflow: visible;
}

body:has(.product-detail-hero) .detail-process-section .process-flow-step p {
  display: none;
}

body:has(.product-detail-hero) .detail-process-section .process-flow-step:not(:last-child):after {
  content: "";
  position: absolute;
  top: 48px;
  right: -13px;
  z-index: 3;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #063269;
  display: block;
}

body:has(.product-detail-hero) .detail-process-section .process-flow-image.requirements { background-image: url("assets/process-requirement-collection.jpg"); }
body:has(.product-detail-hero) .detail-process-section .process-flow-image.dieline { background-image: url("assets/process-structure-dieline.jpg"); }
body:has(.product-detail-hero) .detail-process-section .process-flow-image.sample { background-image: url("assets/process-sample-approval.jpg"); }
body:has(.product-detail-hero) .detail-process-section .process-flow-image.printing { background-image: url("assets/process-printing.jpg"); }
body:has(.product-detail-hero) .detail-process-section .process-flow-image.finishing { background-image: url("assets/process-surface-finishing.jpg"); }
body:has(.product-detail-hero) .detail-process-section .process-flow-image.diecut { background-image: url("assets/process-diecut-forming.jpg"); }
body:has(.product-detail-hero) .detail-process-section .process-flow-image.qc { background-image: url("assets/process-assembly-qc.jpg"); }
body:has(.product-detail-hero) .detail-process-section .process-flow-image.delivery { background-image: url("assets/process-packaging-delivery.jpg"); }

@media (max-width: 1020px) {
  body:has(.product-detail-hero) .detail-process-section .process-flow-board {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  body:has(.product-detail-hero) .detail-process-section .process-flow-step:nth-child(4):after {
    display: block;
  }
}

@media (max-width: 640px) {
  body:has(.product-detail-hero) .detail-process-section .process-flow-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:has(.product-detail-hero) .detail-process-section .process-flow-step:after {
    display: none !important;
  }

  body:has(.product-detail-hero) .detail-process-section .process-flow-step {
    min-height: 154px;
    padding: 10px 8px 12px;
  }

  body:has(.product-detail-hero) .detail-process-section .process-flow-image {
    min-height: 82px;
    height: 82px;
  }

  body:has(.product-detail-hero) .detail-process-section .process-flow-image span {
    width: 24px;
    height: 24px;
    left: 7px;
    top: 7px;
    font-size: 11px;
  }

  body:has(.product-detail-hero) .detail-process-section .process-flow-step b {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.32;
  }
}

/* Product detail: attached QC image replacements */
body:has(.product-detail-hero) .detail-quality-section.soft-panel {
  height: auto;
  min-height: 184px;
  overflow: visible;
}

body:has(.product-detail-hero) .detail-quality-section .qc-workflow-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step {
  min-height: 132px;
  height: auto;
  grid-template-rows: 52px auto 1fr;
  padding: 10px 7px 11px;
}

body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step span {
  width: 50px;
  height: 50px;
  margin: 0 auto 5px;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  box-shadow: none;
}

body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step span:before,
body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step span:after {
  display: none;
}

body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step b {
  min-height: 22px;
  height: auto;
  margin: 5px 0 4px;
  font-size: 8px;
  line-height: 1.18;
  overflow: visible;
}

body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step li {
  font-size: 6px;
  line-height: 1.28;
}

body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step:nth-child(1) span { background-image: url("assets/qc-raw-material-inspection.png"); }
body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step:nth-child(2) span { background-image: url("assets/qc-printing-quality-control.png"); }
body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step:nth-child(3) span { background-image: url("assets/qc-finishing-inspection.png"); }
body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step:nth-child(4) span { background-image: url("assets/qc-dimensional-check.png"); }
body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step:nth-child(5) span { background-image: url("assets/qc-final-product-inspection.png"); }
body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step:nth-child(6) span { background-image: url("assets/qc-safe-packing-shipping.png"); }

@media (max-width: 640px) {
  body:has(.product-detail-hero) .detail-quality-section .qc-workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step {
    min-height: 176px;
    grid-template-rows: 72px auto 1fr;
    padding: 18px 12px;
  }

  body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step span {
    width: 70px;
    height: 70px;
  }

  body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step b {
    font-size: 13px;
    line-height: 1.28;
  }

  body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step li {
    font-size: 11px;
    line-height: 1.42;
  }
}

/* Product detail: attached certification image replacements */
body:has(.product-detail-hero) .detail-cert-section .compliance-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

body:has(.product-detail-hero) .detail-cert-section .compliance-card {
  min-height: 96px;
  height: auto;
  padding: 10px 6px;
  overflow: visible;
}

body:has(.product-detail-hero) .detail-cert-section .compliance-card span {
  width: 44px;
  height: 44px;
  margin: 0 auto 7px;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  box-shadow: none;
  font-size: 0;
}

body:has(.product-detail-hero) .detail-cert-section .compliance-card span:before,
body:has(.product-detail-hero) .detail-cert-section .compliance-card span:after {
  display: none;
}

body:has(.product-detail-hero) .detail-cert-section .compliance-card b {
  min-height: 0;
  height: auto;
  font-size: 7.6px;
  line-height: 1.12;
  overflow: visible;
}

body:has(.product-detail-hero) .detail-cert-section .compliance-card p {
  display: block;
  margin: 3px 0 0;
  font-size: 5.9px;
  line-height: 1.2;
}

body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(1) span { background-image: url("assets/cert-quality-management.png"); }
body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(2) span { background-image: url("assets/cert-fsc-paper-options.png"); }
body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(3) span { background-image: url("assets/cert-material-compliance.png"); }
body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(4) span { background-image: url("assets/cert-packaging-safety.png"); }
body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(5) span { background-image: url("assets/cert-export-documentation.png"); }

@media (max-width: 640px) {
  body:has(.product-detail-hero) .detail-cert-section .compliance-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:has(.product-detail-hero) .detail-cert-section .compliance-card {
    min-height: 154px;
    padding: 18px 12px;
  }

  body:has(.product-detail-hero) .detail-cert-section .compliance-card span {
    width: 70px;
    height: 70px;
    margin-bottom: 12px;
  }

  body:has(.product-detail-hero) .detail-cert-section .compliance-card b {
    font-size: 13px;
    line-height: 1.28;
  }

  body:has(.product-detail-hero) .detail-cert-section .compliance-card p {
    font-size: 11px;
    line-height: 1.38;
  }
}

/* Product detail: attached FAQ and requirements replacements */
body:has(.product-detail-hero) .product-faq-section.soft-panel {
  height: auto;
  overflow: visible;
  padding: 14px;
}

body:has(.product-detail-hero) .product-faq-section .detail-section-head {
  margin-bottom: 10px;
}

body:has(.product-detail-hero) .product-faq-section .faq-accordion {
  height: auto;
  overflow: visible;
  width: 100%;
  max-width: 100% !important;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

body:has(.product-detail-hero) .product-faq-section .faq-item {
  border: 1px solid #d4dfec;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(8, 40, 77, .06);
  overflow: hidden;
}

body:has(.product-detail-hero) .product-faq-section .faq-question {
  min-height: 28px;
  padding: 7px 12px;
  color: #08284d;
  font-size: 8.4px;
  font-weight: 800;
  text-align: left;
}

body:has(.product-detail-hero) .product-faq-section .faq-question span {
  color: #08284d;
  font-size: 8.4px;
  line-height: 1.2;
}

body:has(.product-detail-hero) .product-faq-section .faq-question b {
  position: relative;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  color: transparent;
  font-size: 0;
}

body:has(.product-detail-hero) .product-faq-section .faq-question b:before {
  content: "";
  position: absolute;
  inset: 2px 2px 4px 2px;
  border-right: 2px solid #08284d;
  border-bottom: 2px solid #08284d;
  transform: rotate(45deg);
  transform-origin: center;
}

body:has(.product-detail-hero) .product-faq-section .faq-item.open .faq-question b:before {
  inset: 4px 2px 2px 2px;
  transform: rotate(225deg);
}

body:has(.product-detail-hero) .product-faq-section .faq-answer {
  display: none !important;
  padding: 0 12px 10px;
}

body:has(.product-detail-hero) .product-faq-section .faq-item.open .faq-answer {
  display: block !important;
}

body:has(.product-detail-hero) .product-faq-section .faq-answer p {
  margin: 0;
  color: #5b6f86;
  font-size: 7px;
  line-height: 1.45;
}

body:has(.product-detail-hero) .product-requirements-band {
  height: auto;
  overflow: visible;
  padding: 18px 0;
  background: #071f41;
}

body:has(.product-detail-hero) .requirements-product-visual {
  height: 128px;
  background: url("assets/requirements-packaging-visual.png") center / contain no-repeat !important;
}

body:has(.product-detail-hero) .product-requirements-band .detail-quote-form {
  max-height: none;
  overflow: visible;
}

body:has(.product-detail-hero) .product-requirements-band .form-more-panel:not([hidden]) {
  display: grid;
}

@media (max-width: 640px) {
  body:has(.product-detail-hero) .product-faq-section .faq-accordion {
    grid-template-columns: 1fr;
  }

  body:has(.product-detail-hero) .product-faq-section .faq-question,
  body:has(.product-detail-hero) .product-faq-section .faq-question span {
    font-size: 13px;
  }

  body:has(.product-detail-hero) .product-faq-section .faq-answer p {
    font-size: 11px;
  }

  body:has(.product-detail-hero) .requirements-product-visual {
    height: 190px;
  }
}

/* Product detail: normal page scale restoration */
body:has(.product-detail-hero) .wrap {
  width: min(1200px, calc(100% - 42px)) !important;
  max-width: 1200px !important;
}

body:has(.product-detail-hero) .nav {
  height: 74px !important;
  gap: 30px !important;
}

body:has(.product-detail-hero) .logo-mark {
  width: 34px !important;
  height: 34px !important;
}

body:has(.product-detail-hero) .logo-text,
body:has(.product-detail-hero) .links a {
  font-size: 14px !important;
}

body:has(.product-detail-hero) .nav-actions .btn-orange,
body:has(.product-detail-hero) .btn {
  min-height: 44px !important;
  padding: 0 18px !important;
  font-size: 14px !important;
}

body:has(.product-detail-hero) .page-hero.product-detail-hero {
  min-height: 430px !important;
  padding: 76px 0 !important;
}

body:has(.product-detail-hero) .page-hero.product-detail-hero h1 {
  max-width: 660px !important;
  font-size: clamp(42px, 4.7vw, 64px) !important;
  line-height: 1.06 !important;
}

body:has(.product-detail-hero) .page-hero.product-detail-hero p {
  max-width: 560px !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

body:has(.product-detail-hero) .product-detail-content {
  padding: 54px 0 64px !important;
}

body:has(.product-detail-hero) .product-detail-stack {
  gap: 48px !important;
}

body:has(.product-detail-hero) .detail-intro-section {
  grid-template-columns: minmax(0, 1fr) 430px !important;
  gap: 30px !important;
}

body:has(.product-detail-hero) .detail-commerce-gallery {
  grid-template-columns: 118px minmax(0, 1fr) !important;
  gap: 18px !important;
}

body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-dot {
  height: 118px !important;
}

body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-stage,
body:has(.product-detail-hero) .product-info-panel {
  min-height: 520px !important;
}

body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-slide {
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
}

body:has(.product-detail-hero) .product-info-panel {
  padding: 28px !important;
}

body:has(.product-detail-hero) .product-info-panel h2 {
  font-size: 30px !important;
  line-height: 1.12 !important;
}

body:has(.product-detail-hero) .product-info-panel p,
body:has(.product-detail-hero) .product-info-panel li,
body:has(.product-detail-hero) .product-info-panel td,
body:has(.product-detail-hero) .product-info-panel th {
  font-size: 14px !important;
  line-height: 1.55 !important;
}

body:has(.product-detail-hero) .detail-attribute-strip {
  min-height: 74px !important;
}

body:has(.product-detail-hero) .detail-attribute-item {
  min-height: 74px !important;
  padding: 12px 18px 12px 54px !important;
}

body:has(.product-detail-hero) .detail-attribute-item b {
  font-size: 14px !important;
}

body:has(.product-detail-hero) .detail-attribute-item span {
  font-size: 12px !important;
}

body:has(.product-detail-hero) .manufacturing-board .board-head h2,
body:has(.product-detail-hero) .product-faq-section .detail-section-head h2 {
  font-size: 30px !important;
  line-height: 1.15 !important;
}

body:has(.product-detail-hero) .manufacturing-board .board-head h2:before,
body:has(.product-detail-hero) .manufacturing-board .board-head h2:after,
body:has(.product-detail-hero) .product-faq-section .detail-section-head h2:before,
body:has(.product-detail-hero) .product-faq-section .detail-section-head h2:after {
  width: 150px !important;
}

body:has(.product-detail-hero) .material-board-grid,
body:has(.product-detail-hero) .finish-sample-board {
  gap: 16px !important;
}

body:has(.product-detail-hero) .material-visual,
body:has(.product-detail-hero) .finish-visual {
  min-height: 150px !important;
}

body:has(.product-detail-hero) .material-sample-tile b,
body:has(.product-detail-hero) .finish-sample-tile b {
  font-size: 13px !important;
}

body:has(.product-detail-hero) .customization-board-card {
  min-height: 370px !important;
  padding: 28px !important;
}

body:has(.product-detail-hero) .custom-board-visual {
  min-height: 210px !important;
}

body:has(.product-detail-hero) .customization-board-card h3 {
  font-size: 24px !important;
}

body:has(.product-detail-hero) .customization-board-card li {
  font-size: 15px !important;
  line-height: 1.55 !important;
}

body:has(.product-detail-hero) .detail-process-section {
  min-height: 250px !important;
}

body:has(.product-detail-hero) .detail-process-section .process-flow-board {
  gap: 16px !important;
}

body:has(.product-detail-hero) .detail-process-section .process-flow-step {
  min-height: 198px !important;
  padding: 14px 10px 16px !important;
}

body:has(.product-detail-hero) .detail-process-section .process-flow-image {
  min-height: 112px !important;
  height: 112px !important;
}

body:has(.product-detail-hero) .detail-process-section .process-flow-image span {
  width: 28px !important;
  height: 28px !important;
  left: 8px !important;
  top: 8px !important;
  font-size: 12px !important;
}

body:has(.product-detail-hero) .detail-process-section .process-flow-step b {
  font-size: 15px !important;
  line-height: 1.25 !important;
}

body:has(.product-detail-hero) .detail-quality-section.soft-panel {
  min-height: 300px !important;
  padding: 34px !important;
}

body:has(.product-detail-hero) .detail-quality-section .qc-workflow-grid {
  gap: 18px !important;
}

body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step {
  min-height: 226px !important;
  grid-template-rows: 92px auto 1fr !important;
  padding: 22px 16px !important;
}

body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step span {
  width: 88px !important;
  height: 88px !important;
  margin-bottom: 14px !important;
}

body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step b {
  font-size: 16px !important;
  line-height: 1.3 !important;
}

body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step li {
  font-size: 13px !important;
  line-height: 1.45 !important;
}

body:has(.product-detail-hero) .capability-showcase {
  gap: 24px !important;
}

body:has(.product-detail-hero) .capability-machine-visual {
  min-height: 310px !important;
}

body:has(.product-detail-hero) .capability-point {
  min-height: 170px !important;
  padding: 24px 18px !important;
}

body:has(.product-detail-hero) .capability-point b {
  font-size: 16px !important;
}

body:has(.product-detail-hero) .capability-point p {
  font-size: 13px !important;
}

body:has(.product-detail-hero) .detail-cert-section .compliance-card {
  min-height: 170px !important;
  padding: 24px 16px !important;
}

body:has(.product-detail-hero) .detail-cert-section .compliance-card span {
  width: 84px !important;
  height: 84px !important;
  margin-bottom: 16px !important;
}

body:has(.product-detail-hero) .detail-cert-section .compliance-card b {
  font-size: 17px !important;
  line-height: 1.25 !important;
}

body:has(.product-detail-hero) .detail-cert-section .compliance-card p {
  font-size: 14px !important;
  line-height: 1.35 !important;
}

body:has(.product-detail-hero) .product-faq-section.soft-panel {
  padding: 34px !important;
}

body:has(.product-detail-hero) .product-faq-section .faq-accordion {
  gap: 16px 34px !important;
}

body:has(.product-detail-hero) .product-faq-section .faq-question {
  min-height: 58px !important;
  padding: 16px 22px !important;
  font-size: 16px !important;
}

body:has(.product-detail-hero) .product-faq-section .faq-question span {
  font-size: 16px !important;
}

body:has(.product-detail-hero) .product-faq-section .faq-answer {
  padding: 0 22px 18px !important;
}

body:has(.product-detail-hero) .product-faq-section .faq-answer p {
  font-size: 14px !important;
}

body:has(.product-detail-hero) .product-requirements-band {
  padding: 52px 0 !important;
}

body:has(.product-detail-hero) .requirements-layout {
  grid-template-columns: 430px minmax(0, 1fr) !important;
  gap: 42px !important;
}

body:has(.product-detail-hero) .requirements-copy h2 {
  font-size: 34px !important;
  line-height: 1.1 !important;
}

body:has(.product-detail-hero) .requirements-product-visual {
  height: 310px !important;
}

body:has(.product-detail-hero) .product-requirements-band .detail-quote-form {
  padding: 28px !important;
}

body:has(.product-detail-hero) .product-requirements-band .form-grid {
  gap: 18px 24px !important;
}

body:has(.product-detail-hero) .product-requirements-band label {
  font-size: 14px !important;
}

body:has(.product-detail-hero) .product-requirements-band input,
body:has(.product-detail-hero) .product-requirements-band textarea,
body:has(.product-detail-hero) .product-requirements-band select {
  min-height: 48px !important;
  padding: 12px 14px !important;
  font-size: 14px !important;
}

body:has(.product-detail-hero) .product-requirements-band textarea {
  min-height: 120px !important;
}

body:has(.product-detail-hero) .product-requirements-band .btn {
  min-height: 48px !important;
  min-width: 280px !important;
  font-size: 16px !important;
}

body:has(.product-detail-hero) .related-product-grid {
  gap: 22px !important;
}

@media (max-width: 1020px) {
  body:has(.product-detail-hero) .detail-intro-section,
  body:has(.product-detail-hero) .requirements-layout {
    grid-template-columns: 1fr !important;
  }

  body:has(.product-detail-hero) .material-board-grid,
  body:has(.product-detail-hero) .finish-sample-board,
  body:has(.product-detail-hero) .detail-process-section .process-flow-board,
  body:has(.product-detail-hero) .detail-quality-section .qc-workflow-grid,
  body:has(.product-detail-hero) .detail-cert-section .compliance-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Product detail: gallery and info readability adjustment */
body:has(.product-detail-hero) .detail-commerce-gallery {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  height: auto !important;
  min-width: 0 !important;
  overflow: visible !important;
}

body:has(.product-detail-hero) .detail-commerce-stage-wrap {
  order: 0 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
}

body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-stage {
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 4 / 3 !important;
  background: #f7f4ef !important;
}

body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-slide {
  height: 100% !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

body:has(.product-detail-hero) .detail-commerce-thumbs,
body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-dots {
  order: 1 !important;
  display: flex !important;
  flex-direction: row !important;
  grid-template-columns: none !important;
  gap: 12px !important;
  width: 100% !important;
  padding: 0 !important;
  overflow-x: auto !important;
}

body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-dot {
  flex: 0 0 112px !important;
  width: 112px !important;
  height: 88px !important;
  border-radius: 7px !important;
  background-size: cover !important;
  background-position: center !important;
}

body:has(.product-detail-hero) .product-info-panel {
  height: auto !important;
  min-height: auto !important;
  padding: 28px !important;
  gap: 14px !important;
  overflow: visible !important;
  grid-template-rows: none !important;
}

body:has(.product-detail-hero) .product-info-panel .eyebrow {
  font-size: 13px !important;
  line-height: 1.2 !important;
}

body:has(.product-detail-hero) .product-info-panel h2 {
  font-size: 31px !important;
  line-height: 1.12 !important;
}

body:has(.product-detail-hero) .product-info-panel p:not(.eyebrow) {
  font-size: 15px !important;
  line-height: 1.55 !important;
}

body:has(.product-detail-hero) .product-key-specs {
  height: auto !important;
  margin-top: 4px !important;
  border-radius: 6px !important;
  overflow: hidden !important;
}

body:has(.product-detail-hero) .product-key-specs div {
  grid-template-columns: 128px minmax(0, 1fr) !important;
  min-height: 42px !important;
}

body:has(.product-detail-hero) .product-key-specs dt,
body:has(.product-detail-hero) .product-key-specs dd {
  padding: 10px 12px !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

body:has(.product-detail-hero) .product-panel-cta .btn {
  min-height: 48px !important;
  font-size: 15px !important;
  border-radius: 6px !important;
}

body:has(.product-detail-hero) .product-panel-mini {
  margin-top: 12px !important;
  font-size: 11px !important;
  gap: 8px !important;
}

body:has(.product-detail-hero) .detail-attribute-strip {
  display: none !important;
}

@media (max-width: 760px) {
  body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-dot {
    flex-basis: 88px !important;
    width: 88px !important;
    height: 70px !important;
  }

  body:has(.product-detail-hero) .product-key-specs div {
    grid-template-columns: 108px minmax(0, 1fr) !important;
  }

  body:has(.product-detail-hero) .product-key-specs dt,
  body:has(.product-detail-hero) .product-key-specs dd {
    font-size: 12px !important;
  }
}

/* Product detail: customization and process spacing fix */
body:has(.product-detail-hero) .detail-custom-section.soft-panel {
  position: relative !important;
  z-index: 1 !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  margin-bottom: 72px !important;
  padding-bottom: 8px !important;
}

body:has(.product-detail-hero) .detail-custom-section .customization-board-grid {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  align-items: stretch !important;
}

body:has(.product-detail-hero) .detail-custom-section .customization-board-card {
  height: auto !important;
  min-height: 420px !important;
  overflow: hidden !important;
}

body:has(.product-detail-hero) .detail-process-section {
  position: relative !important;
  z-index: 2 !important;
  clear: both !important;
  height: auto !important;
  min-height: 250px !important;
  overflow: visible !important;
  margin-top: 0 !important;
}

body:has(.product-detail-hero) .detail-process-section .detail-section-head {
  margin-bottom: 20px !important;
}

body:has(.product-detail-hero) .detail-process-section .process-flow-board {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
}

@media (max-width: 1020px) {
  body:has(.product-detail-hero) .detail-custom-section.soft-panel {
    margin-bottom: 56px !important;
  }

  body:has(.product-detail-hero) .detail-custom-section .customization-board-card {
    min-height: 360px !important;
  }
}

/* Product detail: requirements and related products refinement */
body:has(.product-detail-hero) .product-requirements-band {
  padding: 64px 0 !important;
  overflow: visible !important;
  background:
    radial-gradient(circle at 28% 48%, rgba(20, 74, 128, .48), transparent 34%),
    linear-gradient(90deg, #071f41 0%, #09284e 48%, #071f41 100%) !important;
}

body:has(.product-detail-hero) .requirements-copy {
  align-self: center !important;
}

body:has(.product-detail-hero) .requirements-product-visual {
  position: relative !important;
  height: 340px !important;
  background: none !important;
  overflow: visible !important;
  isolation: isolate !important;
}

body:has(.product-detail-hero) .requirements-product-visual::before {
  content: "" !important;
  position: absolute !important;
  inset: -46px -54px -42px -48px !important;
  z-index: 1 !important;
  background: url("assets/requirements-packaging-visual.png") center / contain no-repeat !important;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, .28)) saturate(1.02) !important;
  transform: scale(1.04) !important;
  -webkit-mask-image: radial-gradient(ellipse 58% 54% at center, #000 0 48%, rgba(0, 0, 0, .72) 63%, transparent 83%) !important;
  mask-image: radial-gradient(ellipse 58% 54% at center, #000 0 48%, rgba(0, 0, 0, .72) 63%, transparent 83%) !important;
}

body:has(.product-detail-hero) .requirements-product-visual::after {
  content: "" !important;
  position: absolute !important;
  inset: 8% 4% 0 4% !important;
  z-index: 0 !important;
  border-radius: 999px !important;
  background: radial-gradient(ellipse at center, rgba(9, 44, 86, .92), transparent 68%) !important;
  filter: blur(16px) !important;
}

body:has(.product-detail-hero) .product-requirements-band .form-more-toggle {
  margin-top: 10px !important;
  padding: 4px 0 !important;
  color: #ff5a12 !important;
  font-size: 15px !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
}

body:has(.product-detail-hero) .related-products-section {
  height: auto !important;
  min-height: 360px !important;
  padding: 34px 0 42px !important;
  background: #f7fafc !important;
  overflow: visible !important;
}

body:has(.product-detail-hero) .related-products-section .section-head {
  margin-bottom: 20px !important;
}

body:has(.product-detail-hero) .related-products-section .section-head h2 {
  font-size: 26px !important;
  line-height: 1.2 !important;
}

body:has(.product-detail-hero) .related-product-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch !important;
}

body:has(.product-detail-hero) .related-product-card a {
  display: grid !important;
  grid-template-rows: 180px auto auto !important;
  min-height: 258px !important;
  height: auto !important;
  overflow: hidden !important;
  border: 1px solid #d6e2ef !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 12px 28px rgba(8, 40, 77, .08) !important;
}

body:has(.product-detail-hero) .related-product-image {
  min-height: 180px !important;
  height: 180px !important;
  background-size: cover !important;
  background-position: center !important;
}

body:has(.product-detail-hero) .related-product-card h3 {
  margin: 14px 16px 6px !important;
  color: #08284d !important;
  font-size: 16px !important;
  line-height: 1.25 !important;
}

body:has(.product-detail-hero) .related-product-card b {
  margin: 0 16px 16px !important;
  color: #08284d !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
}

@media (max-width: 1020px) {
  body:has(.product-detail-hero) .related-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  body:has(.product-detail-hero) .requirements-product-visual {
    height: 260px !important;
  }

  body:has(.product-detail-hero) .related-product-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Product detail: remove banner and stack overview */
body:has(.product-detail-hero) .page-hero.product-detail-hero {
  display: none !important;
}

body:has(.product-detail-hero) .product-detail-content {
  padding-top: 44px !important;
}

body:has(.product-detail-hero) .detail-intro-section {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 28px !important;
  align-items: start !important;
  max-width: 1200px !important;
  margin-inline: auto !important;
}

body:has(.product-detail-hero) .detail-commerce-gallery {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

body:has(.product-detail-hero) .detail-commerce-stage-wrap {
  width: 100% !important;
  border-radius: 8px !important;
}

body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-stage {
  aspect-ratio: 16 / 9 !important;
  max-height: 680px !important;
  min-height: 520px !important;
  background: #fff !important;
}

body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-slide {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

body:has(.product-detail-hero) .detail-commerce-thumbs,
body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-dots {
  justify-content: center !important;
  padding-top: 2px !important;
}

body:has(.product-detail-hero) .product-info-panel {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  padding: 34px !important;
  border-radius: 8px !important;
  box-shadow: 0 16px 38px rgba(8, 40, 77, .08) !important;
}

body:has(.product-detail-hero) .product-info-panel .eyebrow {
  font-size: 14px !important;
}

body:has(.product-detail-hero) .product-info-panel h2 {
  max-width: 860px !important;
  font-size: 34px !important;
  line-height: 1.14 !important;
}

body:has(.product-detail-hero) .product-info-panel p:not(.eyebrow) {
  max-width: 900px !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
}

body:has(.product-detail-hero) .product-key-specs {
  width: 100% !important;
  margin-top: 10px !important;
}

body:has(.product-detail-hero) .product-key-specs div {
  grid-template-columns: 180px minmax(0, 1fr) !important;
  min-height: 50px !important;
}

body:has(.product-detail-hero) .product-key-specs dt,
body:has(.product-detail-hero) .product-key-specs dd {
  padding: 13px 16px !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

body:has(.product-detail-hero) .product-panel-cta {
  max-width: 520px !important;
  margin-top: 8px !important;
}

body:has(.product-detail-hero) .product-panel-cta .btn {
  min-height: 50px !important;
  font-size: 15px !important;
}

body:has(.product-detail-hero) .product-panel-mini {
  font-size: 12px !important;
}

@media (max-width: 760px) {
  body:has(.product-detail-hero) .product-detail-content {
    padding-top: 28px !important;
  }

  body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-stage {
    aspect-ratio: 4 / 3 !important;
    min-height: 300px !important;
  }

  body:has(.product-detail-hero) .product-info-panel {
    padding: 22px !important;
  }

  body:has(.product-detail-hero) .product-info-panel h2 {
    font-size: 26px !important;
  }

  body:has(.product-detail-hero) .product-key-specs div {
    grid-template-columns: 120px minmax(0, 1fr) !important;
  }
}

/* Product detail: process qc cert faq refinements */
body:has(.product-detail-hero) .detail-process-section {
  min-height: 280px !important;
}

body:has(.product-detail-hero) .detail-process-section .process-flow-step {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  grid-template-rows: none !important;
  min-height: 220px !important;
  height: auto !important;
  padding: 14px 8px 18px !important;
  overflow: visible !important;
}

body:has(.product-detail-hero) .detail-process-section .process-flow-image {
  width: 100% !important;
  flex: 0 0 110px !important;
  align-self: stretch !important;
  height: 110px !important;
  min-height: 110px !important;
  margin-bottom: 8px !important;
}

body:has(.product-detail-hero) .detail-process-section .process-flow-step b {
  display: block !important;
  min-height: 40px !important;
  height: auto !important;
  margin-top: 8px !important;
  padding: 0 4px !important;
  overflow: visible !important;
  white-space: normal !important;
  word-break: normal !important;
  text-overflow: clip !important;
  color: #08284d !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
  text-align: center !important;
}

body:has(.product-detail-hero) .detail-process-section .process-flow-step:nth-child(4) b,
body:has(.product-detail-hero) .detail-process-section .process-flow-step:nth-child(7) b {
  font-size: 13.5px !important;
}

body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step {
  min-height: 175px !important;
  grid-template-rows: 88px auto !important;
  align-content: center !important;
  padding: 24px 14px !important;
}

body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step ul,
body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step li {
  display: none !important;
}

body:has(.product-detail-hero) .detail-quality-section .qc-workflow-step b {
  min-height: 0 !important;
  font-size: 16px !important;
  line-height: 1.28 !important;
}

body:has(.product-detail-hero) .detail-cert-section .compliance-card {
  min-height: 190px !important;
  overflow: visible !important;
}

body:has(.product-detail-hero) .detail-cert-section .compliance-card span {
  width: 96px !important;
  height: 96px !important;
  margin-bottom: 14px !important;
  overflow: visible !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

body:has(.product-detail-hero) .detail-cert-section .compliance-card span::before,
body:has(.product-detail-hero) .detail-cert-section .compliance-card span::after {
  display: none !important;
}

body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(3) span,
body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(4) span {
  width: 108px !important;
  height: 108px !important;
  margin-top: -4px !important;
  margin-bottom: 6px !important;
}

body:has(.product-detail-hero) .product-faq-section.soft-panel {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  padding: 42px 44px !important;
}

body:has(.product-detail-hero) .product-faq-section .faq-accordion {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
  width: 100% !important;
  max-width: 1040px !important;
  height: auto !important;
  margin: 0 auto !important;
  overflow: visible !important;
}

body:has(.product-detail-hero) .product-faq-section .faq-item {
  width: 100% !important;
}

body:has(.product-detail-hero) .product-faq-section .faq-question {
  width: 100% !important;
  min-height: 64px !important;
  padding: 18px 24px !important;
  border-radius: 8px !important;
}

body:has(.product-detail-hero) .product-faq-section .faq-question span {
  font-size: 16px !important;
  line-height: 1.25 !important;
}

body:has(.product-detail-hero) .product-faq-section .faq-answer p {
  font-size: 14px !important;
  line-height: 1.55 !important;
}

@media (max-width: 1020px) {
  body:has(.product-detail-hero) .detail-process-section .process-flow-board {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  body:has(.product-detail-hero) .detail-process-section .process-flow-step:nth-child(4):after {
    display: none !important;
  }
}

/* Product detail: attached capacity equipment replacements */
body:has(.product-detail-hero) .detail-capability-section {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  padding: 42px 0 22px !important;
}

body:has(.product-detail-hero) .detail-capability-section .capability-showcase {
  display: grid !important;
  grid-template-columns: minmax(360px, 420px) minmax(0, 1fr) !important;
  gap: 24px !important;
  align-items: stretch !important;
}

body:has(.product-detail-hero) .detail-capability-section .capability-showcase > div:last-child {
  display: contents !important;
}

body:has(.product-detail-hero) .detail-capability-section h2 {
  grid-column: 1 / -1 !important;
  grid-row: 1 !important;
  margin: 0 0 28px !important;
  color: #08284d !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 42px !important;
  line-height: 1.12 !important;
  text-align: center !important;
}

body:has(.product-detail-hero) .detail-capability-section p {
  display: none !important;
}

body:has(.product-detail-hero) .capability-machine-visual {
  grid-column: 1 !important;
  grid-row: 2 !important;
  width: 100% !important;
  min-height: 360px !important;
  height: auto !important;
  align-self: stretch !important;
  border-radius: 12px !important;
  background: url("assets/capacity-heidelberg-machine-optimized.jpg") center / cover no-repeat !important;
  box-shadow: 0 18px 34px rgba(8, 40, 77, .12) !important;
  overflow: hidden !important;
}

body:has(.product-detail-hero) .capability-machine-visual::before,
body:has(.product-detail-hero) .capability-machine-visual::after,
body:has(.product-detail-hero) .capability-machine-visual span {
  display: none !important;
}

body:has(.product-detail-hero) .capability-point-grid {
  grid-column: 2 !important;
  grid-row: 2 !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

body:has(.product-detail-hero) .capability-point-grid article {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  min-height: 360px !important;
  height: auto !important;
  padding: 42px 18px 34px !important;
  border: 1px solid #dce6f1 !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: 0 16px 30px rgba(8, 40, 77, .08) !important;
  text-align: center !important;
  overflow: visible !important;
}

body:has(.product-detail-hero) .capability-point-grid article::before {
  display: none !important;
}

body:has(.product-detail-hero) .capability-point-grid i {
  display: block !important;
  width: 112px !important;
  height: 112px !important;
  margin: 0 0 24px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

body:has(.product-detail-hero) .capability-point-grid article:nth-child(1) i {
  background-image: url("assets/capacity-icon-printing.png") !important;
}

body:has(.product-detail-hero) .capability-point-grid article:nth-child(2) i {
  background-image: url("assets/capacity-icon-finishing.png") !important;
}

body:has(.product-detail-hero) .capability-point-grid article:nth-child(3) i {
  background-image: url("assets/capacity-icon-assembly.png") !important;
}

body:has(.product-detail-hero) .capability-point-grid article:nth-child(4) i {
  background-image: url("assets/capacity-icon-export.png") !important;
}

body:has(.product-detail-hero) .capability-point-grid b {
  display: block !important;
  min-height: 58px !important;
  color: #08284d !important;
  font-size: 22px !important;
  line-height: 1.22 !important;
  font-weight: 900 !important;
}

body:has(.product-detail-hero) .capability-point-grid b::after {
  content: "" !important;
  display: block !important;
  width: 90px !important;
  height: 3px !important;
  margin: 24px auto 0 !important;
  border-radius: 99px !important;
  background: #d9e5f0 !important;
}

body:has(.product-detail-hero) .capability-point-grid span {
  display: block !important;
  margin-top: 28px !important;
  color: #08284d !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

body:has(.product-detail-hero) .capability-stat-row {
  display: none !important;
}

@media (max-width: 1120px) {
  body:has(.product-detail-hero) .detail-capability-section .capability-showcase {
    grid-template-columns: 1fr !important;
  }

  body:has(.product-detail-hero) .capability-machine-visual,
  body:has(.product-detail-hero) .capability-point-grid {
    grid-column: 1 !important;
  }

  body:has(.product-detail-hero) .capability-machine-visual {
    grid-row: 2 !important;
  }

  body:has(.product-detail-hero) .capability-point-grid {
    grid-row: 3 !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}



/* Product detail: compact capacity equipment layout */
body:has(.product-detail-hero) .detail-capability-section {
  padding: 34px 0 46px !important;
}

body:has(.product-detail-hero) .detail-capability-section .capability-showcase {
  display: grid !important;
  grid-template-columns: minmax(420px, 470px) minmax(0, 1fr) !important;
  gap: 34px !important;
  align-items: center !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

body:has(.product-detail-hero) .detail-capability-section .capability-showcase > div:last-child {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 22px !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-items: start !important;
}

body:has(.product-detail-hero) .detail-capability-section h2 {
  grid-column: auto !important;
  grid-row: auto !important;
  margin: 0 !important;
  font-size: 34px !important;
  line-height: 1.16 !important;
  text-align: center !important;
}

body:has(.product-detail-hero) .capability-machine-visual {
  grid-column: 1 !important;
  grid-row: 1 !important;
  min-height: 0 !important;
  height: 430px !important;
  align-self: center !important;
}

body:has(.product-detail-hero) .capability-point-grid {
  grid-column: auto !important;
  grid-row: auto !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
  align-items: stretch !important;
}

body:has(.product-detail-hero) .capability-point-grid article {
  min-height: 336px !important;
  padding: 26px 13px 22px !important;
  border-radius: 13px !important;
}

body:has(.product-detail-hero) .capability-point-grid i {
  width: 82px !important;
  height: 82px !important;
  margin-bottom: 18px !important;
}

body:has(.product-detail-hero) .capability-point-grid b {
  min-height: 48px !important;
  font-size: 19px !important;
  line-height: 1.18 !important;
}

body:has(.product-detail-hero) .capability-point-grid b::after {
  width: 72px !important;
  height: 2px !important;
  margin-top: 16px !important;
}

body:has(.product-detail-hero) .capability-point-grid span {
  margin-top: 18px !important;
  font-size: 13.5px !important;
  line-height: 1.48 !important;
}

@media (max-width: 1120px) {
  body:has(.product-detail-hero) .detail-capability-section .capability-showcase {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  body:has(.product-detail-hero) .capability-machine-visual,
  body:has(.product-detail-hero) .detail-capability-section .capability-showcase > div:last-child {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  body:has(.product-detail-hero) .capability-machine-visual {
    height: 360px !important;
  }

  body:has(.product-detail-hero) .capability-point-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Product detail: complete certification icons 3 and 4 */
body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(3) span,
body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(4) span {
  width: 96px !important;
  height: 86px !important;
  margin-bottom: 12px !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: contain !important;
  overflow: visible !important;
}

body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(3) span {
  background-image: url("assets/cert-material-compliance.png") !important;
}

body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(4) span {
  background-image: url("assets/cert-packaging-safety.png") !important;
}

body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(3) span::before,
body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(3) span::after,
body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(4) span::before,
body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(4) span::after {
  display: none !important;
  content: none !important;
}

/* Product detail: restore shared header and footer */
body:has(.product-detail-hero) .topbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 50 !important;
  min-height: 0 !important;
  background: rgba(255, 255, 255, .98) !important;
  border-bottom: 1px solid #edf1f6 !important;
  backdrop-filter: blur(12px) !important;
}

body:has(.product-detail-hero) .topbar > .wrap,
body:has(.product-detail-hero) .footer > .wrap {
  width: min(1200px, calc(100% - 42px)) !important;
  max-width: 1200px !important;
}

body:has(.product-detail-hero) .nav {
  height: 74px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
}

body:has(.product-detail-hero) .brand {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  min-width: 250px !important;
  color: #071f41 !important;
  font-weight: 900 !important;
}

body:has(.product-detail-hero) .brand-mark {
  width: 42px !important;
  height: 42px !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

body:has(.product-detail-hero) .brand-name {
  color: #071f41 !important;
  font-size: 18px !important;
  line-height: 1.55 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
}

body:has(.product-detail-hero) .links {
  display: flex !important;
  align-items: center !important;
  gap: 22px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.55 !important;
}

body:has(.product-detail-hero) .links a {
  color: #15263d !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  white-space: nowrap !important;
}

body:has(.product-detail-hero) .links a:hover,
body:has(.product-detail-hero) .links .active {
  color: #ff5a12 !important;
}

body:has(.product-detail-hero) .links .active:after {
  bottom: -25px !important;
  height: 3px !important;
  background: #ff5a12 !important;
}

body:has(.product-detail-hero) .nav-actions {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

body:has(.product-detail-hero) .nav-actions .btn-orange {
  min-height: 44px !important;
  padding: 0 18px !important;
  font-size: 14px !important;
}

body:has(.product-detail-hero) .footer {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  padding: 46px 0 24px !important;
  background: #041832 !important;
  color: rgba(255, 255, 255, .76) !important;
}

body:has(.product-detail-hero) .footer-grid {
  display: grid !important;
  grid-template-columns: 1.35fr repeat(5, 1fr) !important;
  gap: 28px !important;
  align-items: start !important;
}

body:has(.product-detail-hero) .footer .brand {
  min-width: 0 !important;
  color: #fff !important;
}

body:has(.product-detail-hero) .footer .brand-mark {
  width: 42px !important;
  height: 42px !important;
}

body:has(.product-detail-hero) .footer .brand-name {
  color: #fff !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

body:has(.product-detail-hero) .footer b {
  display: block !important;
  margin-bottom: 12px !important;
  color: #fff !important;
  font-size: 16px !important;
  line-height: 1.25 !important;
}

body:has(.product-detail-hero) .footer a,
body:has(.product-detail-hero) .footer span {
  display: block !important;
  margin: 7px 0 !important;
  color: rgba(255, 255, 255, .76) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

body:has(.product-detail-hero) .footer .social-links {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 16px !important;
}

body:has(.product-detail-hero) .footer .social-links a {
  width: 32px !important;
  height: 32px !important;
  margin: 0 !important;
  display: inline-grid !important;
  place-items: center !important;
  color: #fff !important;
  font-size: 11px !important;
  line-height: 1 !important;
}

body:has(.product-detail-hero) .qr-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 82px) !important;
  gap: 10px !important;
}

body:has(.product-detail-hero) .qr-card img,
body:has(.product-detail-hero) .qr-card span {
  width: 82px !important;
  height: 82px !important;
  margin: 0 !important;
}

body:has(.product-detail-hero) .qr-card em {
  width: 82px !important;
  color: rgba(255, 255, 255, .72) !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
}

body:has(.product-detail-hero) .footer-bottom {
  display: flex !important;
  justify-content: space-between !important;
  gap: 20px !important;
  margin-top: 30px !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(255, 255, 255, .12) !important;
  font-size: 12px !important;
}

@media (max-width: 900px) {
  body:has(.product-detail-hero) .links {
    display: none !important;
  }

  body:has(.product-detail-hero) .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  body:has(.product-detail-hero) .brand {
    min-width: 0 !important;
  }

  body:has(.product-detail-hero) .brand-mark {
    width: 36px !important;
    height: 36px !important;
  }

  body:has(.product-detail-hero) .brand-name {
    font-size: 15px !important;
  }

  body:has(.product-detail-hero) .footer-grid {
    grid-template-columns: 1fr !important;
  }
}


/* Extracted from styles.css lines 10904-11046 */
body:has(.product-detail-hero) .detail-commerce-stage-wrap {
  position: relative !important;
}

body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-arrow {
  display: inline-grid !important;
  place-items: center !important;
  position: absolute !important;
  top: 50% !important;
  z-index: 8 !important;
  width: 46px !important;
  height: 46px !important;
  padding: 0 !important;
  border: 1px solid rgba(8, 40, 77, .14) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, .94) !important;
  color: #08284d !important;
  box-shadow: 0 14px 28px rgba(8, 40, 77, .18) !important;
  font-size: 34px !important;
  line-height: 1 !important;
  font-weight: 400 !important;
  cursor: pointer !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(-50%) !important;
}

body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-arrow.prev {
  left: 18px !important;
}

body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-arrow.next {
  right: 18px !important;
}

body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-arrow:hover,
body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-arrow:focus-visible {
  background: #08284d !important;
  color: #fff !important;
  outline: none !important;
}

body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(3) span,
body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(4) span {
  width: 96px !important;
  height: 86px !important;
  background-position: center center !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  image-rendering: auto !important;
}

body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(3) span {
  background-image: url("assets/cert-material-compliance.png") !important;
}

body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(4) span {
  background-image: url("assets/cert-packaging-safety.png") !important;
}

body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(3) span::before,
body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(3) span::after,
body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(4) span::before,
body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(4) span::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 640px) {
  .footer .qr-grid,
  body:has(.product-detail-hero) .footer .qr-grid {
    grid-template-columns: repeat(2, 82px) !important;
  }

  body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-arrow {
    width: 40px !important;
    height: 40px !important;
    font-size: 30px !important;
  }
}



/* Product detail: reveal full certification icon bottoms */
body:has(.product-detail-hero) .detail-cert-section .compliance-card {
  min-height: 222px !important;
  height: auto !important;
  padding-top: 26px !important;
  padding-bottom: 24px !important;
  overflow: visible !important;
}

body:has(.product-detail-hero) .detail-cert-section .compliance-card span,
body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(1) span,
body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(2) span,
body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(3) span,
body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(4) span,
body:has(.product-detail-hero) .detail-cert-section .compliance-card:nth-child(5) span {
  display: block !important;
  width: 104px !important;
  height: 112px !important;
  margin: 0 auto 8px !important;
  background-position: center center !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  overflow: visible !important;
}

body:has(.product-detail-hero) .detail-cert-section .compliance-card span::before,
body:has(.product-detail-hero) .detail-cert-section .compliance-card span::after {
  content: none !important;
  display: none !important;
}


/* Product detail: center gallery arrow glyphs */
body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-arrow {
  display: grid !important;
  place-items: center !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-arrow::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 10px !important;
  height: 10px !important;
  border-top: 3px solid currentColor !important;
  border-right: 3px solid currentColor !important;
  pointer-events: none !important;
}

body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-arrow.prev::before {
  transform: translate(-38%, -50%) rotate(-135deg) !important;
}

body:has(.product-detail-hero) .detail-commerce-gallery .detail-gallery-arrow.next::before {
  transform: translate(-62%, -50%) rotate(45deg) !important;
}


/* Extracted from styles.css lines 11325-11345 */
@media (max-width: 640px) {
  body:has(.product-detail-hero),
  body:has(.product-detail-hero) main {
    overflow-x: hidden !important;
  }

  body:has(.product-detail-hero) .product-requirements-band {
    overflow: hidden !important;
  }

  body:has(.product-detail-hero) .requirements-product-visual {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  body:has(.product-detail-hero) .requirements-product-visual::before {
    inset: -18px -8px -20px -8px !important;
    transform: none !important;
  }
}

/* Extracted from styles.css lines 11413-11508 */
/* Product detail mobile menu fix */
@media (max-width: 980px) {
  body:has(.product-detail-hero) .topbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    overflow: visible !important;
  }

  body:has(.product-detail-hero) .nav {
    position: relative !important;
    overflow: visible !important;
  }

  body:has(.product-detail-hero) .nav-actions {
    position: relative !important;
    z-index: 1002 !important;
  }

  body:has(.product-detail-hero) .nav-actions .menu,
  body:has(.product-detail-hero) .btn.menu {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px !important;
    padding: 0 16px !important;
    border: 1px solid #c6d4e4 !important;
    border-radius: 6px !important;
    background: #fff !important;
    color: #071f41 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    cursor: pointer !important;
  }

  body:has(.product-detail-hero) .links {
    display: none !important;
  }

  body:has(.product-detail-hero) .nav.open .links {
    display: grid !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: calc(100% + 1px) !important;
    z-index: 1001 !important;
    gap: 0 !important;
    padding: 8px 0 !important;
    border: 1px solid #d9e3ee !important;
    border-radius: 0 0 8px 8px !important;
    background: #fff !important;
    box-shadow: 0 18px 44px rgba(7, 31, 65, .18) !important;
  }

  body:has(.product-detail-hero) .nav.open .links a {
    display: block !important;
    padding: 14px 18px !important;
    color: #071f41 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
    border-bottom: 1px solid #edf2f7 !important;
  }

  body:has(.product-detail-hero) .nav.open .links a:last-child {
    border-bottom: 0 !important;
  }

  body:has(.product-detail-hero) .nav.open .links .active:after {
    display: none !important;
  }
}

@media (max-width: 640px) {
  body:has(.product-detail-hero) .nav-actions .btn-orange {
    display: none !important;
  }

  body:has(.product-detail-hero) .product-requirements-band .detail-quote-form {
    padding: 22px !important;
  }

  body:has(.product-detail-hero) .product-requirements-band .form-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body:has(.product-detail-hero) .product-requirements-band .span-2,
  body:has(.product-detail-hero) .product-requirements-band .btn {
    grid-column: 1 / -1 !important;
    justify-self: stretch !important;
    width: 100% !important;
    min-width: 0 !important;
  }
}


/* Extracted from styles.css lines 16778-16812 */
body:has(.product-detail-hero) .detail-buying-section {
  padding: 30px;
  background: linear-gradient(180deg, #f8fbff, #fff);
}

body:has(.product-detail-hero) .buying-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body:has(.product-detail-hero) .buying-info-grid article {
  min-height: 112px;
  padding: 18px;
  border: 1px solid #dce6f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(7,31,65,.035);
}

body:has(.product-detail-hero) .buying-info-grid b {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.25;
}

body:has(.product-detail-hero) .buying-info-grid span {
  display: block;
  color: #53677f;
  font-size: 13px;
  line-height: 1.6;
}


/* Extracted from styles.css lines 16987-17017 */
body:has(.product-detail-hero) .detail-buyer-questions {
  background: #f8fbff;
}

body:has(.product-detail-hero) .product-buyer-question-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body:has(.product-detail-hero) .product-buyer-question-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  min-height: 170px;
  box-shadow: 0 16px 36px rgba(7, 31, 65, 0.06);
}

body:has(.product-detail-hero) .product-buyer-question-grid b {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 12px;
}

body:has(.product-detail-hero) .product-buyer-question-grid p {
  color: #53677f;
  line-height: 1.7;
}
