:root {
  --font-display: "Open Sans", Arial, Helvetica, system-ui, sans-serif;
  --font-body: "Open Sans", Arial, Helvetica, system-ui, sans-serif;
  --blue: #0073b5;
  --blue-dark: #003f70;
  --ink: #111111;
  --charcoal: #202428;
  --paper: #f7f8fa;
  --white: #ffffff;
  --warm: #ffb703;
  --orange: #f97316;
  --cyan: #00a7e1;
  --magenta: #e4007c;
  --yellow: #ffd400;
  --muted: #5f6872;
  --line: #d9dee5;
  --line-dark: #aeb8c4;
  --soft: #f4f6f8;
  --max: 1200px;
}

body[data-page="search"] .search-page-hero {
  padding: clamp(28px, 4vw, 54px) 0 26px;
  background: #f4f8fc;
  border-bottom: 1px solid #d7e1ed;
}

body[data-page="search"] .search-page-hero-inner {
  max-width: 940px;
}

body[data-page="search"] .search-page-hero h1 {
  margin: 0 0 12px;
  max-width: 780px;
  color: #1e2633;
  font-size: clamp(3rem, 6.4vw, 6.4rem);
  line-height: .88;
  letter-spacing: .035em;
  text-transform: uppercase;
}

body[data-page="search"] .search-page-hero p:not(.kicker) {
  max-width: 720px;
  margin: 0;
  color: #263449;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.55;
}

.search-page-form {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 760px;
  margin-top: 24px;
}

.search-page-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid #cbd3df;
  border-radius: 999px;
  background: #fff;
  color: #1e2633;
  font: 400 1rem/1 var(--font-body);
}

.search-page-form input:focus {
  border-color: #8fc5e8;
  outline: 3px solid rgba(0, 116, 183, .12);
}

.search-results-section {
  padding-top: clamp(22px, 3vw, 38px);
  background: #fff;
}

.compact-search-page-form {
  margin: 0 0 22px;
}

.search-results-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.search-results-meta h2 {
  margin: 0 0 4px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.search-results-meta p {
  margin: 0;
  color: #59677b;
}

.search-browse-link {
  flex: 0 0 auto;
  color: var(--miq-blue);
  font-weight: 700;
  text-decoration: none;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.search-result-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  min-height: 150px;
  padding: 12px;
  border: 1px solid #d7e1ed;
  border-radius: 6px;
  background: #fff;
  color: #1e2633;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.search-result-card:hover,
.search-result-card:focus-visible {
  border-color: #2f6df6;
  box-shadow: 0 14px 34px rgba(47, 109, 246, .14);
  color: #1e2633;
  transform: translateY(-2px);
}

.search-result-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border: 1px solid #d7e1ed;
  border-radius: 4px;
  background: #f7f9fc;
}

.search-result-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.search-result-kicker {
  color: #005aa9;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.search-result-body strong {
  color: #08182f;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.55vw, 1.45rem);
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.search-result-body span:not(.search-result-kicker) {
  color: #4b5a70;
  font-size: .94rem;
  line-height: 1.42;
}

.search-result-body b {
  color: var(--miq-blue);
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 650;
  letter-spacing: .02em;
}

.search-no-results {
  grid-column: 1 / -1;
  max-width: 720px;
  padding: 28px;
  border: 1px solid #d7e1ed;
  border-radius: 6px;
  background: #f7f9fc;
}

.search-no-results h2 {
  margin-top: 0;
}

.search-no-results p {
  color: #4b5a70;
}

@media (max-width: 760px) {
  .search-page-form,
  .search-results-meta {
    align-items: stretch;
    flex-direction: column;
  }

  .search-results-grid {
    grid-template-columns: 1fr;
  }

  .search-result-card {
    grid-template-columns: 96px 1fr;
    gap: 12px;
    min-height: 122px;
  }
}

*, *::before, *::after { box-sizing: border-box; }

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

[id] { scroll-margin-top: 118px; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  padding-bottom: 64px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--blue); }
button, input, textarea { font: inherit; font-family: var(--font-body); }
img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

img { display: block; }

h1, h2, h3,
.main-nav,
.button,
.kicker,
.same-day-pill,
.category-copy small,
.storefront-card small,
.product-card,
.product-index h3,
.product-index p,
.start-columns span,
.quote-count,
.spec-grid b,
.package-grid b,
.package-grid strong,
.faq-list summary {
  font-family: var(--font-display);
}

h1,
h2,
h3,
.nav-menu a,
.button,
.kicker,
.category-copy small,
.storefront-card small,
.product-index h3,
.product-index p,
.start-columns h3,
.start-columns span,
.quote-count,
.same-day-pill,
.selected-price span,
.subtotal-box h2,
.site-footer h2,
.site-footer h3,
.faq-list summary {
  text-transform: uppercase;
}

p,
li,
label,
input,
textarea,
.hero-subhead,
.quote-form,
.site-footer,
.category-copy p,
.section-heading p {
  font-family: var(--font-body);
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.narrow { max-width: 850px; }
.section { padding: 86px 0; }
.section-rule { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fafbfc; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.utility-bar {
  background: var(--ink);
  color: var(--white);
  font-size: .85rem;
}

.utility-inner,
.utility-links,
.nav-inner,
.nav-menu,
.hero-actions,
.strip-inner,
.cta-grid {
  display: flex;
  align-items: center;
}

.utility-inner {
  justify-content: space-between;
  gap: 16px;
  min-height: 34px;
}

.utility-links { gap: 20px; }
.utility-links a { color: var(--white); opacity: .86; }

.main-nav, .nav-inner { min-height: 72px; }

.nav-inner {
  justify-content: space-between;
  gap: 24px;
}

.logo {
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 850;
  letter-spacing: 0;
}

.logo::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  background: var(--blue);
  vertical-align: -1px;
}

.nav-menu {
  gap: 26px;
  font-size: .94rem;
  font-weight: 750;
}

.nav-menu a {
  position: relative;
  min-height: 72px;
  display: inline-flex;
  align-items: center;
}

.nav-menu a.is-active::after,
.nav-menu a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--blue);
}

.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.button:hover { transform: translateY(-1px); }

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

.button-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
}

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

.button-secondary:hover {
  background: var(--charcoal);
  color: var(--white);
}

.button-ghost:hover { border-color: var(--blue); color: var(--blue); }

.hero {
  min-height: 690px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr);
  gap: 58px;
  align-items: center;
}

.kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.7vw, 6.15rem);
  line-height: .96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-subhead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.product-wall,
.canva-wall {
  position: relative;
  min-height: 560px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
}

.wall-piece,
.template {
  position: absolute;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 8px 8px 0 rgba(17, 19, 21, .08);
}

.wall-piece span,
.template span {
  position: absolute;
  left: 12px;
  top: 10px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.wall-piece strong,
.template strong {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  font-size: clamp(1rem, 2vw, 1.45rem);
  line-height: 1;
}

.wall-banner {
  left: 4%;
  top: 7%;
  width: 72%;
  height: 132px;
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue-dark);
}

.wall-banner span { color: rgba(255,255,255,.72); }

.wall-blueprint {
  right: 0;
  top: 28%;
  width: 56%;
  height: 238px;
  background: #f2f8fc;
  border-color: #789cb8;
}

.wall-blueprint i {
  position: absolute;
  display: block;
  background: #79a9cc;
}

.wall-blueprint i:nth-child(2) { left: 28px; right: 28px; top: 62px; height: 1px; }
.wall-blueprint i:nth-child(3) { left: 52px; top: 84px; width: 1px; height: 116px; }
.wall-blueprint i:nth-child(4) { right: 58px; top: 84px; width: 1px; height: 116px; }
.wall-blueprint i:nth-child(5) { left: 52px; right: 58px; bottom: 48px; height: 1px; }

.wall-photo {
  left: 9%;
  bottom: 10%;
  width: 42%;
  height: 230px;
  background: linear-gradient(135deg, #111315 0 18%, #e8ecef 18% 44%, #c86d2f 44% 66%, #006eb6 66%);
}

.wall-card {
  left: 17%;
  top: 36%;
  width: 36%;
  height: 116px;
  background: repeating-linear-gradient(0deg, #fff, #fff 16px, #f1f3f5 16px, #f1f3f5 18px);
}

.wall-sign {
  right: 7%;
  bottom: 4%;
  width: 48%;
  height: 128px;
  background: #fff;
  border: 3px solid var(--warm);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.category-panel {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 260px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.category-media {
  min-height: 100%;
  border-right: 1px solid var(--line);
  background: var(--soft);
  position: relative;
  overflow: hidden;
}

.category-media::before,
.category-media::after {
  content: "";
  position: absolute;
  border: 1px solid var(--ink);
  background: var(--white);
}

.media-signs::before { inset: 44px 26px auto; height: 84px; background: var(--blue); }
.media-signs::after { left: 42px; right: 42px; bottom: 42px; height: 66px; border-color: var(--warm); }
.media-business::before { left: 34px; top: 42px; width: 58%; height: 96px; }
.media-business::after { right: 28px; bottom: 36px; width: 48%; height: 86px; background: #111315; }
.media-plans { background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 28px 28px; }
.media-plans::before { inset: 42px 30px 42px; background: rgba(255,255,255,.76); border-color: #87a9c4; }
.media-photo::before { inset: 38px 34px 38px; background: linear-gradient(145deg, #111315, #006eb6 54%, #c86d2f); }
.media-decals::before { left: 40px; top: 45px; width: 70px; height: 70px; border-radius: 50%; }
.media-decals::after { right: 42px; bottom: 50px; width: 90px; height: 56px; }
.media-custom::before { left: 34px; top: 38px; width: 64%; height: 74px; }
.media-custom::after { right: 30px; bottom: 38px; width: 62%; height: 92px; background: #f7f7f7; }

.category-copy {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.category-copy p,
.category-copy small,
.product-heading p,
.quote-section p,
.seo-block p,
.footer-grid p,
.footer-bottom p,
.check-list,
.local-grid li {
  color: var(--muted);
}

.category-copy small {
  display: block;
  margin: auto 0 20px;
  font-weight: 750;
}

.category-copy a,
.product-index a,
.start-columns a {
  color: var(--blue);
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

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

.start-columns article {
  min-height: 290px;
  padding: 34px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--white);
}

.start-columns span {
  display: block;
  margin-bottom: 54px;
  color: var(--blue);
  font-weight: 950;
}

.start-columns p { color: var(--muted); }

.canva-strip {
  padding: 54px 0;
  background: var(--blue);
  color: var(--white);
}

.canva-strip .kicker,
.section-black .kicker { color: rgba(255,255,255,.72); }

.strip-inner {
  justify-content: space-between;
  gap: 28px;
}

.strip-inner h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.canva-strip .button-primary,
.section-black .button-primary {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.product-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 410px);
  gap: 30px;
  align-items: end;
}

.product-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.product-index article {
  min-height: 176px;
  padding: 22px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background 140ms ease;
}

.product-index article:hover { background: #f7fbff; }
.product-index p { margin-bottom: 6px; color: var(--blue); font-size: 1.28rem; font-weight: 950; }
.product-index small { display: block; margin-bottom: 22px; color: var(--muted); }

.section-black {
  background: var(--ink);
  color: var(--white);
}

.local-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 54px;
}

.local-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.22);
}

.local-grid li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.76);
}

.seo-block { border-bottom: 1px solid var(--line); }
.seo-block p { font-size: 1.1rem; }

.quote-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--ink);
}

.quote-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 13px 12px;
  border: 1px solid var(--line-dark);
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  box-shadow: inset 0 0 0 1px var(--blue);
}

.full-field,
.quote-form button,
.form-message { grid-column: 1 / -1; }

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 850;
}

.site-footer {
  padding: 58px 0 88px;
  background: #f3f5f7;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr .9fr .8fr;
  gap: 36px;
}

.footer-lead h2 { font-size: 2rem; }
.site-footer a { color: var(--blue); font-weight: 800; }

.footer-bottom {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-bottom p { max-width: 940px; font-size: .9rem; }

.mobile-bottom-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 40;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--ink);
  background: var(--white);
}

.mobile-bottom-bar a {
  min-width: 0;
  display: grid;
  place-items: center;
  min-height: 52px;
  color: var(--ink);
  font-weight: 900;
  border-right: 1px solid var(--ink);
}

.mobile-bottom-bar a:nth-child(2) {
  background: var(--blue);
  color: var(--white);
}

.mobile-bottom-bar a:last-child { border-right: 0; }

.photo-mobile-bottom {
  grid-template-columns: 1fr;
}

.photo-mobile-bottom a {
  background: var(--blue);
  color: var(--white);
  border-right: 0;
}

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

.hero-canva .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(390px, .85fr); }

.canva-wall {
  min-height: 520px;
  background-size: 64px 64px;
}

.template-flyer { left: 7%; top: 8%; width: 48%; height: 280px; }
.template-menu { right: 4%; top: 20%; width: 43%; height: 210px; background: #111315; color: var(--white); }
.template-menu span { color: rgba(255,255,255,.68); }
.template-card { left: 16%; bottom: 11%; width: 42%; height: 118px; border-color: var(--blue); }
.template-sign { right: 9%; bottom: 5%; width: 48%; height: 150px; border: 3px solid var(--warm); }
.template-flyer { background: linear-gradient(180deg, #fff 0 24%, #006eb6 24% 45%, #fff 45%); }

.step-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.step-list li {
  min-height: 180px;
  padding: 24px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--white);
}

.step-list span {
  display: block;
  margin-bottom: 42px;
  color: var(--blue);
  font-weight: 950;
}

.two-column {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 50px;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.check-list li {
  padding: 16px 0 16px 34px;
  border-bottom: 1px solid var(--line-dark);
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 23px;
  width: 12px;
  height: 12px;
  background: var(--blue);
}

.warning-section { padding-top: 0; }

.warning-box {
  padding: 38px;
  border: 2px solid var(--warm);
  background: #fff8f3;
}

.warning-box p:last-child {
  max-width: 850px;
  color: var(--charcoal);
  font-size: 1.08rem;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.project-list span {
  padding: 18px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  font-weight: 850;
}

.cta-grid {
  justify-content: space-between;
  gap: 36px;
}

.cta-grid h2 {
  max-width: 780px;
  margin: 0;
}

@media (max-width: 1000px) {
  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 46px;
    height: 46px;
    place-content: center;
    border: 1px solid var(--ink);
    background: var(--white);
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 21px;
    height: 2px;
    background: var(--ink);
  }

  .nav-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 106px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--ink);
    background: var(--white);
  }

  .nav-menu.is-open { display: flex; }
  .nav-menu a { min-height: 54px; padding: 0 18px; border-bottom: 1px solid var(--line); }
  .nav-menu a.is-active::after, .nav-menu a:hover::after { display: none; }

  .hero-grid,
  .quote-grid,
  .local-grid,
  .product-heading,
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero { padding: 66px 0; }
  .category-grid { grid-template-columns: 1fr; }
  .product-index { grid-template-columns: repeat(3, 1fr); }
  .step-list { grid-template-columns: repeat(3, 1fr); }
  .project-list { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 58px 0; }
  .utility-inner { flex-direction: column; align-items: flex-start; justify-content: center; gap: 2px; padding: 8px 0; }
  .main-nav, .nav-inner { min-height: 66px; }
  .nav-menu { top: 120px; left: 14px; right: 14px; }
  h1 { font-size: clamp(3rem, 14vw, 4.35rem); }
  h2 { font-size: 2rem; }
  .hero-actions, .strip-inner, .cta-grid { align-items: stretch; flex-direction: column; }
  .hero-actions .button, .strip-inner .button, .cta-grid .button { width: 100%; }
  .product-wall, .canva-wall { min-height: 390px; }
  .wall-banner { height: 92px; }
  .wall-blueprint { height: 168px; }
  .wall-photo { height: 155px; }
  .wall-card { height: 86px; }
  .wall-sign { height: 96px; }
  .category-panel { grid-template-columns: 1fr; }
  .category-media { min-height: 180px; border-right: 0; border-bottom: 1px solid var(--line); }
  .start-columns, .quote-form, .footer-grid { grid-template-columns: 1fr; }
  .product-index { grid-template-columns: repeat(2, 1fr); }
  .product-index article { min-height: 158px; padding: 18px; }
  .step-list, .project-list { grid-template-columns: 1fr; }
  .quote-form button, .form-message { grid-column: auto; }
  .mobile-bottom-bar { display: grid; }
}

/* Real image blocks replacing CSS placeholder artwork. */
.hero-image,
.category-image,
.design-image {
  margin: 0;
}

.hero-image img,
.category-image img,
.design-image img,
.product-index article img,
.photo-hero img,
.related-product img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

.hero-image img {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-dark);
}

.category-image {
  min-height: 100%;
  border-right: 1px solid var(--line);
  background: var(--soft);
}

.category-image img {
  height: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

.design-strip-inner {
  display: grid;
  grid-template-columns: minmax(220px, .75fr) 1fr auto;
  align-items: center;
}

.design-image img {
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,.48);
}

.product-index article img {
  width: calc(100% + 44px);
  margin: -22px -22px 18px;
  aspect-ratio: 1.45 / 1;
  border-bottom: 1px solid var(--line-dark);
  border-radius: 0;
}

@media (max-width: 1000px) {
  .design-strip-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero-image img {
    aspect-ratio: 1.1 / 1;
  }

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

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

  .product-index article img {
    width: calc(100% + 36px);
    margin: -18px -18px 16px;
  }
}

.quote-count {
  border: 1px solid var(--line);
  padding: 7px 10px;
  font-size: .84rem;
}

.breadcrumbs {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .9rem;
}

.breadcrumbs a {
  color: var(--blue);
  font-weight: 700;
}

.photo-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.photo-hero figure {
  margin: 0;
}

.photo-hero img {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-dark);
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.spec-grid div {
  padding: 20px;
  background: var(--white);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.spec-grid b {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
}

.spec-grid span {
  color: var(--muted);
}

.photo-intro-grid,
.photo-builder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.photo-price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.photo-price-table th,
.photo-price-table td {
  border: 1px solid var(--line-dark);
  padding: 12px;
  text-align: left;
}

.photo-price-table th,
.photo-price-table td:last-child {
  font-family: var(--font-display);
}

.photo-form-panel,
.photo-estimate-panel,
.related-box {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--ink);
}

.photo-option-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 18px 0 22px;
}

.photo-option-grid label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 700;
}

.photo-option-grid input,
.photo-option-grid select {
  min-height: 44px;
  padding: 10px 11px;
  border: 1px solid var(--line-dark);
  background: var(--white);
}

.photo-check {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.photo-check input {
  min-height: auto;
  width: auto;
}

.photo-estimate-panel dl {
  margin: 0 0 18px;
}

.photo-estimate-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.photo-estimate-panel dt {
  color: var(--muted);
}

.photo-estimate-panel dd {
  margin: 0;
  text-align: right;
  font-family: var(--font-display);
  font-weight: 800;
}

.photo-warnings {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.photo-warnings p {
  margin: 0;
  padding: 10px 12px;
  border-left: 4px solid var(--warm);
  background: #fff8f3;
  color: var(--ink);
}

.photo-package-grid,
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.photo-package-grid article,
.related-product {
  padding: 18px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--white);
}

.photo-package-grid article {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.photo-package-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
}

.photo-package-grid b,
.photo-package-grid strong,
.related-product b {
  display: block;
  font-family: var(--font-display);
}

.photo-package-grid strong {
  margin: 8px 0;
  color: var(--blue);
}

.photo-package-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.photo-package-grid .package-select {
  width: 100%;
  margin-top: auto;
}

.minimum-note {
  margin: 14px 0;
  padding: 14px;
  border: 1px solid #d8ad55;
  background: #fff7e6;
  color: var(--ink);
}

.minimum-note b {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.perfect-for-panel,
.workflow-grid ol {
  padding: 22px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.perfect-for-panel ul,
.workflow-grid ol {
  margin: 0;
}

.perfect-for-panel li {
  padding: 8px 0;
  color: var(--muted);
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.workflow-grid ol {
  list-style: none;
  counter-reset: workflow;
}

.workflow-grid li {
  counter-increment: workflow;
  padding: 14px 0 14px 42px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.workflow-grid li:last-child {
  border-bottom: 0;
}

.workflow-grid li::before {
  content: counter(workflow, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 800;
}

.workflow-grid b,
.workflow-grid span {
  display: block;
}

.workflow-grid span {
  color: var(--muted);
}

.photo-tip-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.photo-tip-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--muted);
}

.related-product img {
  aspect-ratio: 1.45 / 1;
  margin-bottom: 14px;
  border: 1px solid var(--line);
}

.faq-list details {
  border-top: 1px solid var(--line-dark);
  padding: 17px 0;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 800;
}

@media (min-width: 760px) {
  .photo-hero,
  .photo-intro-grid,
  .photo-builder {
    grid-template-columns: 1fr .9fr;
  }

  .spec-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .photo-option-grid,
  .photo-package-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 1060px) {
  .photo-package-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .photo-estimate-panel {
    position: sticky;
    top: 120px;
    align-self: start;
  }
}

/* Photo Prints retail configurator */
.product-config {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 36px 0 64px;
}

.product-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
}

.purchase-panel {
  display: grid;
  gap: 20px;
  align-content: start;
  min-width: 0;
  max-width: 100%;
}

.same-day-pill {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 800;
}

.product-subtitle {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
}

.product-proof-points {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.product-proof-points span {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.selected-price {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--ink);
  background: #fafafa;
}

.selected-price span {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.selected-price strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  line-height: 1;
  text-align: right;
}

.config-section {
  display: grid;
  gap: 12px;
}

.config-section h2 {
  margin: 0;
  font-size: 1.18rem;
}

.tile-grid,
.segmented-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.config-tile,
.package-image-tile {
  min-width: 0;
  min-height: 76px;
  padding: 13px;
  border: 1px solid var(--line-dark);
  background: var(--white);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  border-radius: 4px;
}

.config-tile b,
.package-image-tile b,
.package-image-tile strong {
  display: block;
  font-family: var(--font-display);
}

.config-tile span,
.package-image-tile span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .9rem;
}

.config-tile.is-selected,
.package-image-tile.is-selected {
  border: 2px solid var(--ink);
  background: #f2f7fb;
  padding: 12px;
}

.custom-tile {
  width: 100%;
}

.custom-size-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.custom-size-fields label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.custom-size-fields input {
  min-height: 44px;
  padding: 10px 11px;
  border: 1px solid var(--line-dark);
}

.package-tile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.package-image-tile img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 10px;
}

.package-image-tile strong {
  margin-top: 4px;
  color: var(--blue);
}

.quantity-stepper {
  display: grid;
  grid-template-columns: 44px minmax(72px, 100px) 44px;
  gap: 0;
  width: fit-content;
  border: 1px solid var(--ink);
}

.quantity-stepper button,
.quantity-stepper input {
  min-height: 44px;
  border: 0;
  background: var(--white);
  text-align: center;
}

.quantity-stepper button {
  font-family: var(--font-display);
  font-size: 1.2rem;
  cursor: pointer;
}

.quantity-stepper input {
  border-left: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
}

.proof-toggle {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line-dark);
}

.proof-toggle input {
  margin-top: 4px;
}

.subtotal-box {
  padding: 18px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.subtotal-box h2 {
  font-size: 1.25rem;
}

.subtotal-box dl {
  margin: 0;
}

.subtotal-box dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.subtotal-box dt {
  color: var(--muted);
}

.subtotal-box dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  text-align: right;
}

.purchase-actions {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.purchase-actions .button {
  width: 100%;
  min-height: 48px;
}

@media (min-width: 760px) {
  .product-config {
    grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
    gap: 46px;
    align-items: start;
    padding-top: 54px;
  }

  .product-media {
    position: sticky;
    top: 118px;
  }

  .tile-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .segmented-tiles {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .purchase-actions {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .product-config.container {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .product-media,
  .purchase-panel {
    min-width: 0;
    max-width: 100%;
  }

  .purchase-panel p,
  .product-subtitle {
    overflow-wrap: anywhere;
  }

  .tile-grid,
  .segmented-tiles {
    grid-template-columns: 1fr;
  }

  .selected-price,
  .subtotal-box dl div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .selected-price strong,
  .subtotal-box dd {
    text-align: left;
  }

  .purchase-actions {
    grid-template-columns: 1fr;
  }

  .mobile-bottom-bar {
    left: 8px;
    right: auto;
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
  }
}

@media (min-width: 1180px) {
  .package-tile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .product-config {
    padding-bottom: 34px;
  }

  .purchase-panel h1 {
    font-size: 3rem;
  }

  .tile-grid,
  .segmented-tiles {
    grid-template-columns: 1fr 1fr;
  }

  .package-image-tile {
    padding: 12px;
  }
}

@media (max-width: 520px) {
  .tile-grid,
  .segmented-tiles {
    grid-template-columns: 1fr;
  }

  .mobile-bottom-bar {
    left: 8px;
    right: auto;
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .photo-mobile-bottom {
    grid-template-columns: 1fr;
  }

  .mobile-bottom-bar a {
    min-width: 0;
    font-size: .9rem;
    white-space: nowrap;
  }
}

/* 2026 retail refresh: Open Sans, product energy, compact mobile-first layouts. */
.nav-menu {
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.button {
  min-height: 46px;
  border-radius: 4px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .04em;
}

h1 {
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.02em;
  word-spacing: .06em;
}

h2 {
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.03em;
}

h3 {
  font-weight: 900;
  letter-spacing: -.01em;
}

p,
li {
  font-weight: 450;
}

.kicker {
  letter-spacing: .08em;
  font-weight: 900;
}

.hero-retail {
  min-height: auto;
  padding: 58px 0 44px;
  background:
    linear-gradient(90deg, rgba(0, 115, 181, .06), transparent 42%),
    var(--white);
}

.hero-retail .hero-grid {
  grid-template-columns: minmax(0, .92fr) minmax(340px, 1.08fr);
  gap: 48px;
}

.hero-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
}

.hero-retail h1 {
  max-width: 620px;
  font-size: clamp(3rem, 7.6vw, 6.4rem);
}

.hero-support {
  max-width: 650px;
  color: var(--ink);
  font-weight: 800;
}

.hero-collage {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 18px 18px 58px;
  isolation: isolate;
}

.hero-collage::before,
.product-photo-frame::before {
  content: "";
  position: absolute;
  inset: 9px 9px 49px 9px;
  border: 1px solid var(--line-dark);
  transform: translate(9px, 9px);
  z-index: -1;
}

.collage-main {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  border: 1px solid var(--ink);
  border-radius: 4px;
}

.collage-card {
  position: absolute;
  object-fit: cover;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 8px 8px 0 rgba(17, 17, 17, .12);
}

.collage-photo {
  left: 0;
  bottom: 3px;
  width: 42%;
  aspect-ratio: 1.25 / 1;
}

.collage-card-small {
  right: 2%;
  bottom: 22px;
  width: 34%;
  aspect-ratio: 1.55 / 1;
}

.collage-plan {
  right: 0;
  top: 9%;
  width: 32%;
  aspect-ratio: .88 / 1;
}

.local-badge {
  position: absolute;
  left: 28px;
  top: 30px;
  padding: 8px 10px;
  background: var(--warm);
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.cmyk-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 118px;
  height: 14px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.hero-collage .cmyk-strip {
  position: absolute;
  right: 26px;
  top: 24px;
}

.cmyk-strip i:nth-child(1) { background: var(--cyan); }
.cmyk-strip i:nth-child(2) { background: var(--magenta); }
.cmyk-strip i:nth-child(3) { background: var(--yellow); }
.cmyk-strip i:nth-child(4) { background: var(--ink); }

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.proof-grid div {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: var(--white);
}

.proof-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 900;
}

.proof-grid b {
  display: block;
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 28px;
  align-items: end;
}

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

.storefront-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line-dark);
  background: var(--white);
  transition: border-color 140ms ease, transform 140ms ease;
}

.storefront-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.storefront-card.featured {
  border-color: var(--blue);
  box-shadow: inset 0 -4px 0 var(--blue);
}

.storefront-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border-bottom: 1px solid var(--line-dark);
}

.storefront-card div {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.storefront-card h3,
.storefront-card p,
.storefront-card small {
  margin: 0;
}

.storefront-card small {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.storefront-card a {
  width: fit-content;
  color: var(--blue);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.retail-steps article {
  position: relative;
  overflow: hidden;
}

.retail-steps article::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 46px;
  height: 10px;
  background: linear-gradient(90deg, var(--cyan) 0 25%, var(--magenta) 25% 50%, var(--yellow) 50% 75%, var(--ink) 75%);
  border: 1px solid var(--ink);
}

.design-band {
  background: var(--ink);
  color: var(--white);
}

.design-band p {
  max-width: 640px;
  color: rgba(255, 255, 255, .76);
}

.strip-actions,
.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.button-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
  background: transparent;
}

.shoppable-index {
  gap: 0;
}

.shoppable-index article {
  min-width: 0;
  background: var(--white);
}

.shoppable-index article:hover {
  background: #f2f9ff;
}

.promo-band {
  padding: 42px 0;
  background: var(--warm);
  color: var(--ink);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.promo-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.promo-inner h2,
.promo-inner p {
  margin-bottom: 6px;
}

.promo-inner .kicker {
  color: var(--ink);
}

.local-trust {
  background: var(--paper);
}

.local-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(300px, 1fr);
  gap: 40px;
  align-items: center;
}

.local-trust ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.local-trust li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--charcoal);
  font-weight: 700;
}

.local-trust figure {
  margin: 0;
}

.local-trust img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
}

.product-config {
  gap: 34px;
}

.product-photo-frame {
  position: relative;
  margin: 0;
  padding-bottom: 18px;
}

.product-photo-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--ink);
  border-radius: 4px;
}

.product-photo-frame .cmyk-strip {
  position: absolute;
  left: 16px;
  bottom: 0;
}

.purchase-panel h1 {
  margin-bottom: 0;
  font-size: clamp(3rem, 7vw, 5.2rem);
}

.same-day-pill {
  border-radius: 999px;
  letter-spacing: .03em;
}

.selected-price {
  border-width: 2px;
  background: linear-gradient(90deg, #f2f9ff, var(--white));
}

.selected-price strong {
  color: var(--blue-dark);
}

.size-tile-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.config-tile,
.package-image-tile {
  min-height: 60px;
  padding: 10px;
  border-radius: 4px;
}

.config-tile b {
  font-size: .86rem;
  letter-spacing: .02em;
}

.config-tile span,
.package-image-tile span {
  font-size: .78rem;
}

.config-tile.is-selected,
.package-image-tile.is-selected {
  padding: 9px;
  border: 2px solid var(--ink);
  background: #eef7ff;
}

.segmented-tiles {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.package-tile-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.package-image-tile {
  display: grid;
  align-content: start;
  gap: 6px;
}

.package-image-tile img {
  max-height: 150px;
  margin-bottom: 4px;
}

.package-image-tile strong {
  font-size: .96rem;
}

.subtotal-box {
  background: var(--paper);
}

.subtotal-box dl div:last-child {
  margin-top: 4px;
  border-bottom: 0;
}

.subtotal-box dl div:last-child dd {
  color: var(--blue-dark);
  font-size: 1.4rem;
}

.minimum-note {
  border-color: #d49b25;
  background: #fff6db;
}

.related-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

@media (min-width: 760px) {
  .size-tile-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .segmented-tiles {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .package-tile-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (min-width: 1120px) {
  .size-tile-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 1000px) {
  .hero-retail .hero-grid,
  .split-heading,
  .local-trust-grid,
  .promo-inner {
    grid-template-columns: 1fr;
  }

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

  .promo-inner {
    display: grid;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 72px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .utility-links {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-retail {
    padding: 38px 0 34px;
  }

  .hero-retail h1,
  .purchase-panel h1 {
    font-size: clamp(2.65rem, 13vw, 3.65rem);
    line-height: .92;
  }

  .hero-subhead {
    font-size: 1rem;
  }

  .hero-actions,
  .strip-actions,
  .promo-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-collage {
    padding: 10px 10px 44px;
  }

  .collage-main {
    aspect-ratio: 1.05 / 1;
  }

  .collage-plan {
    display: none;
  }

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

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

  .storefront-card img {
    aspect-ratio: 1.45 / 1;
  }

  .product-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-index article {
    min-width: 0;
  }

  .product-index article img {
    aspect-ratio: 1.25 / 1;
  }

  .product-config.container {
    width: min(calc(100% - 28px), var(--max));
    max-width: calc(100vw - 28px);
  }

  .product-media {
    position: static;
  }

  .size-tile-grid,
  .segmented-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .custom-size-fields {
    grid-template-columns: 1fr 1fr;
  }

  .package-tile-grid {
    grid-template-columns: 1fr;
  }

  .package-image-tile img {
    max-height: 165px;
  }

  .selected-price,
  .subtotal-box dl div {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 430px) {
  .proof-grid,
  .product-index,
  .size-tile-grid,
  .segmented-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .config-tile {
    min-height: 58px;
    padding: 9px;
  }

  .config-tile.is-selected {
    padding: 8px;
  }

  .selected-price strong {
    font-size: 1.55rem;
  }

  .subtotal-box dl div {
    gap: 10px;
  }

  .mobile-bottom-bar {
    left: 8px;
    right: auto;
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
  }

  .photo-mobile-bottom {
    grid-template-columns: 1fr;
  }
}

/* Lighter premium retail pass. */
:root {
  --ink: #17202f;
  --muted: #5f6673;
  --paper: #f7f9fc;
  --white: #ffffff;
  --line: #d8dee8;
  --line-dark: #b8c3d1;
  --blue: #0073b5;
  --blue-dark: #003f70;
  --sky: #e8f5ff;
  --yellow: #ffd84d;
  --yellow-soft: #fff6c7;
  --red: #ef4444;
  --red-soft: #ffe9e9;
  --cyan: #22c8e5;
  --cyan-soft: #e8fbff;
  --warm: #ffd84d;
  --soft: #f7f9fc;
}

/* GotPrint-inspired storefront pass with MailroomIQ-style text highlights. */
:root {
  --charcoal-text: #17202f;
  --soft-shadow: 0 18px 45px rgba(23, 32, 47, .09);
  --card-shadow: 0 10px 28px rgba(23, 32, 47, .075);
}

body {
  color: var(--charcoal-text);
}

.headline-highlight {
  display: inline;
  padding: .02em .12em .06em;
  background: linear-gradient(180deg, transparent 18%, var(--sky) 18% 88%, transparent 88%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.headline-highlight.yellow {
  background: linear-gradient(180deg, transparent 18%, var(--yellow-soft) 18% 88%, transparent 88%);
}

.headline-highlight.cyan {
  background: linear-gradient(180deg, transparent 18%, var(--cyan-soft) 18% 88%, transparent 88%);
}

.hero-retail {
  background:
    radial-gradient(circle at 80% 16%, rgba(34, 200, 229, .18), transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, #fff 72%);
}

.hero-retail .hero-grid {
  grid-template-columns: minmax(0, .86fr) minmax(360px, 1.14fr);
  align-items: start;
}

.hero-retail h1 {
  color: var(--charcoal-text);
  font-size: clamp(2.8rem, 5.6vw, 5.25rem);
}

.hero-support {
  color: #263244;
}

.product-finder {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--card-shadow);
}

.product-finder b,
.shop-nav-inner span {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-finder div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-finder a,
.shop-nav-inner a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.hero-collage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 18px;
  background:
    linear-gradient(135deg, #fff, #f4fbff 64%, #fffdf0);
  border: 1px solid #dbe7f3;
  box-shadow: var(--soft-shadow);
}

.hero-collage::before {
  display: none;
}

.weprint-logo-card {
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 14px;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(23, 32, 47, .08);
}

.weprint-logo-card img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.collage-main {
  aspect-ratio: 1.4 / 1;
}

.collage-card {
  box-shadow: 0 10px 25px rgba(23, 32, 47, .12);
}

.local-badge {
  top: auto;
  left: 28px;
  bottom: 24px;
}

.hero-collage .cmyk-strip {
  top: calc(120px + 42px);
}

.subject-tag {
  border-radius: 999px;
}

.shop-nav {
  position: sticky;
  top: 107px;
  z-index: 20;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
}

.shop-nav-inner {
  display: flex;
  gap: 10px;
  align-items: center;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: none;
}

.shop-nav-inner::-webkit-scrollbar {
  display: none;
}

.proof-grid div,
.storefront-card,
.shoppable-index article {
  box-shadow: var(--card-shadow);
}

.storefront-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.storefront-card {
  border-radius: 10px;
  overflow: hidden;
}

.storefront-card img {
  aspect-ratio: 1.72 / 1;
}

.storefront-card h3 {
  color: var(--charcoal-text);
}

.storefront-card p {
  color: #566173;
}

.storefront-card a,
.product-index a,
.start-columns a {
  border-bottom: 0;
  color: var(--blue);
}

.storefront-card a::after,
.product-index a::after,
.start-columns a::after {
  content: " →";
}

.retail-steps article {
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.design-band {
  background:
    radial-gradient(circle at 16% 20%, rgba(34, 200, 229, .16), transparent 30%),
    linear-gradient(135deg, #fff, #f0f9ff 68%, #fff7cc);
}

.shoppable-index {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shoppable-index article {
  border-radius: 10px;
  overflow: hidden;
}

.shoppable-index article img {
  aspect-ratio: 1.55 / 1;
}

.promo-band {
  background:
    linear-gradient(135deg, #fff8cf, #fff 58%, #e8fbff);
}

.local-trust-grid {
  box-shadow: var(--soft-shadow);
}

@media (max-width: 1000px) {
  .hero-retail .hero-grid,
  .storefront-grid {
    grid-template-columns: 1fr;
  }

  .shop-nav {
    top: 104px;
  }

  .shoppable-index {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hero-retail h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.15rem);
  }

  .product-finder {
    padding: 12px;
  }

  .hero-collage {
    padding: 12px;
  }

  .weprint-logo-card img {
    max-height: 88px;
  }

  .collage-main {
    aspect-ratio: 1.18 / 1;
  }

  .local-badge {
    left: 22px;
    bottom: 18px;
  }

  .shop-nav {
    position: relative;
    top: auto;
  }

  .shop-nav-inner {
    padding: 10px 0;
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .shoppable-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

body {
  background:
    radial-gradient(circle at 8% 8%, rgba(34, 200, 229, .12), transparent 26%),
    linear-gradient(180deg, #fff, var(--paper) 58%, #fff);
  color: var(--ink);
}

.site-header {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 30px rgba(17, 24, 39, .05);
}

.utility-bar {
  background: var(--sky);
  color: var(--blue-dark);
  border-bottom: 1px solid #cde9fb;
}

.utility-links a {
  color: var(--blue-dark);
  opacity: 1;
}

.nav-inner {
  gap: 18px;
}

.logo.brand-lockup {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.logo.brand-lockup::before {
  display: none;
}

.brand-lockup img {
  width: clamp(118px, 16vw, 168px);
  height: auto;
  flex: 0 0 auto;
}

.brand-lockup span {
  min-width: 0;
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.brand-lockup b {
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 850;
  letter-spacing: -.01em;
}

.brand-lockup small {
  max-width: 230px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
  text-transform: none;
}

.nav-menu {
  gap: 18px;
}

.nav-menu a {
  color: #1f2937;
}

.button {
  border-color: #b8c3d1;
  box-shadow: 0 8px 18px rgba(17, 24, 39, .06);
}

.button-primary {
  border-color: var(--blue);
  background: var(--blue);
}

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

.button-secondary:hover,
.button-ghost:hover {
  border-color: var(--blue);
  background: var(--sky);
  color: var(--blue-dark);
}

h1 {
  font-weight: 850;
  letter-spacing: -.03em;
  word-spacing: .03em;
}

h2 {
  font-weight: 850;
}

h3 {
  font-weight: 820;
}

.hero-retail {
  padding: 64px 0 58px;
  border-bottom: 0;
  background:
    linear-gradient(135deg, rgba(232, 245, 255, .95), rgba(255, 255, 255, .82) 50%, rgba(255, 246, 199, .58)),
    var(--white);
}

.hero-retail .hero-grid {
  gap: 56px;
}

.hero-pill {
  background: var(--white);
  color: var(--blue-dark);
  border: 1px solid #bfe6fb;
  box-shadow: 0 8px 22px rgba(0, 115, 181, .08);
}

.hero-retail h1 {
  max-width: 660px;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  color: #0f172a;
}

.inside-badge {
  display: inline-flex;
  width: fit-content;
  margin: -6px 0 20px;
  padding: 8px 12px;
  background: var(--yellow-soft);
  color: #6b4d00;
  border: 1px solid #ecd26c;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero-subhead {
  color: #4b5563;
}

.hero-support {
  color: #273244;
  font-weight: 700;
}

.hero-collage {
  padding: 24px 24px 64px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--sky), var(--white));
  box-shadow: 0 26px 60px rgba(17, 24, 39, .11);
}

.hero-collage::before,
.product-photo-frame::before {
  border-color: rgba(0, 115, 181, .22);
}

.collage-main,
.collage-card,
.product-photo-frame img {
  border-color: rgba(17, 24, 39, .18);
  box-shadow: 0 14px 30px rgba(17, 24, 39, .11);
}

.local-badge {
  background: var(--yellow);
  border-color: rgba(17, 24, 39, .22);
  box-shadow: 0 10px 24px rgba(17, 24, 39, .1);
}

.subject-tag {
  position: absolute;
  padding: 7px 9px;
  border: 1px solid rgba(17, 24, 39, .14);
  border-radius: 4px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(17, 24, 39, .08);
}

.tag-photo { left: 9%; bottom: 36px; background: var(--red-soft); }
.tag-banner { right: 18%; top: 11%; background: var(--cyan-soft); }
.tag-blueprint { right: 5%; top: 42%; background: var(--sky); }
.tag-cards { right: 6%; bottom: 74px; background: var(--yellow-soft); }

.proof-strip {
  background: var(--white);
  border-top: 1px solid rgba(216, 222, 232, .8);
}

.proof-grid {
  gap: 14px;
  padding: 22px 0;
  border-left: 0;
}

.proof-grid div {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(17, 24, 39, .06);
}

.proof-grid div:nth-child(1) { background: var(--sky); }
.proof-grid div:nth-child(2) { background: var(--yellow-soft); }
.proof-grid div:nth-child(3) { background: var(--cyan-soft); }
.proof-grid div:nth-child(4) { background: var(--red-soft); }

.proof-grid div::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
}

.proof-grid div:nth-child(1)::after { background: var(--blue); }
.proof-grid div:nth-child(2)::after { background: var(--yellow); }
.proof-grid div:nth-child(3)::after { background: var(--cyan); }
.proof-grid div:nth-child(4)::after { background: var(--red); }

.proof-grid span {
  color: rgba(17, 24, 39, .48);
}

.proof-grid b {
  color: var(--ink);
}

.storefront-grid {
  gap: 22px;
}

.storefront-card,
.shoppable-index article,
.start-columns article,
.quote-form,
.perfect-for-panel,
.subtotal-box {
  border-color: rgba(184, 195, 209, .85);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, .07);
}

.storefront-card {
  background: linear-gradient(180deg, var(--white), #fbfdff);
}

.storefront-card:hover {
  border-color: rgba(0, 115, 181, .45);
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(0, 115, 181, .12);
}

.storefront-card.featured {
  border-color: rgba(0, 115, 181, .42);
  box-shadow: 0 22px 50px rgba(0, 115, 181, .12), inset 0 -4px 0 var(--blue);
}

.storefront-card img,
.shoppable-index article img {
  background: var(--sky);
}

.storefront-card div {
  gap: 12px;
  padding: 22px;
}

.storefront-card small {
  width: fit-content;
  padding: 5px 8px;
  color: var(--blue-dark);
  background: var(--sky);
  border-radius: 4px;
}

.storefront-card:nth-child(2n) small { background: var(--yellow-soft); color: #6b4d00; }
.storefront-card:nth-child(3n) small { background: var(--cyan-soft); color: #07566b; }

.section-rule {
  background: linear-gradient(180deg, #fff, var(--paper));
}

.retail-steps {
  gap: 18px;
  border: 0;
}

.retail-steps article {
  min-height: 250px;
  border: 1px solid var(--line);
}

.retail-steps article::after {
  border: 0;
  border-radius: 99px;
}

.design-band {
  background: linear-gradient(135deg, var(--sky), #fff 58%, var(--cyan-soft));
  color: var(--ink);
  border-top: 1px solid #cde9fb;
  border-bottom: 1px solid #cde9fb;
}

.design-band .kicker {
  color: var(--blue-dark);
}

.design-band p {
  color: var(--muted);
}

.design-band .design-image img {
  border-color: rgba(0, 115, 181, .24);
  box-shadow: 0 18px 40px rgba(0, 115, 181, .12);
}

.design-band .button-primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.design-band .button-light {
  color: var(--blue-dark);
  border-color: rgba(0, 115, 181, .32);
  background: var(--white);
}

.shoppable-index {
  gap: 18px;
  border: 0;
}

.shoppable-index article {
  padding: 18px;
  border: 1px solid var(--line);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.shoppable-index article:hover {
  border-color: rgba(0, 115, 181, .4);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(0, 115, 181, .11);
}

.product-index article img {
  width: calc(100% + 36px);
  margin: -18px -18px 16px;
  border-bottom-color: var(--line);
}

.product-index p {
  color: var(--blue-dark);
  font-weight: 850;
}

.promo-band {
  background: linear-gradient(135deg, var(--yellow-soft), #fff8d9);
  border-color: #eed56f;
}

.promo-inner .kicker {
  color: #745400;
}

.promo-inner h2 {
  color: var(--ink);
}

.local-trust {
  background: var(--white);
}

.local-trust-grid {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(135deg, #fff, var(--paper));
  box-shadow: 0 20px 50px rgba(17, 24, 39, .07);
}

.local-trust li {
  color: #374151;
}

.site-footer {
  background: var(--paper);
}

.footer-logo {
  width: min(210px, 80%);
  height: auto;
  margin-bottom: 18px;
}

@media (max-width: 1000px) {
  .brand-lockup small {
    display: none;
  }

  .nav-menu {
    box-shadow: 0 18px 40px rgba(17, 24, 39, .13);
  }
}

@media (max-width: 680px) {
  .brand-lockup img {
    width: 112px;
  }

  .brand-lockup b {
    font-size: .86rem;
  }

  .hero-retail {
    padding: 40px 0;
  }

  .hero-retail h1 {
    font-size: clamp(2.45rem, 11.5vw, 3.35rem);
  }

  .hero-collage {
    padding: 14px 14px 48px;
  }

  .subject-tag {
    display: none;
  }

  .proof-grid {
    gap: 10px;
  }

  .proof-grid div {
    padding: 16px 12px;
  }

  .proof-grid b {
    font-size: .76rem;
  }

  .storefront-card div {
    padding: 18px;
  }

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

  .local-trust-grid {
    padding: 18px;
  }
}

@media (max-width: 430px) {
  .nav-inner {
    gap: 10px;
  }

  .brand-lockup img {
    width: 104px;
  }

  .brand-lockup b {
    display: none;
  }

  .quote-count {
    padding: 7px 8px;
    font-size: .72rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .mobile-bottom-bar {
    left: 8px;
    right: 8px;
    width: auto;
    max-width: none;
  }
}

@media (max-width: 680px) {
  .product-config.container {
    width: auto;
    max-width: none;
    margin-left: 14px;
    margin-right: 14px;
  }

  .purchase-panel,
  .product-media,
  .purchase-panel > * {
    width: 100%;
    max-width: 100%;
  }

  .purchase-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .purchase-panel > * {
    min-width: 0;
  }

  .config-section,
  .tile-grid,
  .segmented-tiles {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .config-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .size-tile-grid,
  .segmented-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .custom-size-fields {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .custom-size-fields label,
  .custom-size-fields input {
    min-width: 0;
    max-width: 100%;
  }
}

/* GotPrint-style homepage reset. Uses Open Sans, dark charcoal, thin controls. */
body[data-page="home"] {
  --ink: #263246;
  --charcoal-text: #263246;
  --muted: #596477;
  --blue: #0074b7;
  --blue-dark: #064f86;
  --gp-bg: #eef3fb;
  background: #fff;
  color: var(--charcoal-text);
}

body[data-page="home"] .site-header,
body[data-page="home"] .hero-retail,
body[data-page="home"] .shop-nav {
  display: none;
}

.gp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 0 #e7ebf0;
}

.gp-topbar {
  background: #eaf6ff;
  border-bottom: 1px solid #c9e7f9;
  color: #084a76;
  font-size: .82rem;
}

.gp-topbar-inner,
.gp-topbar-inner div,
.gp-mainbar,
.gp-nav .nav-menu {
  display: flex;
  align-items: center;
}

.gp-topbar-inner {
  min-height: 34px;
  justify-content: space-between;
  gap: 18px;
}

.gp-topbar-inner div {
  gap: 22px;
}

.gp-mainbar {
  min-height: 76px;
  gap: 26px;
}

.gp-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}

.gp-brand img {
  width: 140px;
  flex: 0 0 auto;
}

.gp-brand span {
  display: grid;
  line-height: 1.05;
}

.gp-brand b {
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 800;
}

.gp-brand small {
  max-width: 205px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
}

.site-search {
  flex: 1;
  max-width: 420px;
}

.site-search input {
  width: 100%;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid #ccd5df;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 1px 2px rgba(38, 50, 70, .06);
}

.site-search input:focus {
  border-color: #8fc5e8;
  outline: 3px solid rgba(0, 116, 183, .12);
}

.gp-call {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: .86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gp-nav {
  border-top: 1px solid #eef1f5;
  border-bottom: 1px solid #e1e6ee;
  background: #fff;
}

.gp-nav .nav-menu {
  min-height: 58px;
  justify-content: center;
  gap: 34px;
  font-size: .86rem;
}

.gp-nav .nav-menu a {
  min-height: auto;
  color: #253044;
  font-weight: 800;
  letter-spacing: 0;
}

body[data-page="home"] .button {
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid #cbd5df;
  border-radius: 999px;
  box-shadow: none;
  font-size: .86rem;
  letter-spacing: 0;
  text-transform: none;
}

body[data-page="home"] .button-primary {
  border-color: #3f3f46;
  background: #3f3f46;
  color: #fff;
}

body[data-page="home"] .button-secondary,
body[data-page="home"] .button-ghost {
  background: #fff;
  color: var(--ink);
}

.gp-hero {
  position: relative;
  min-height: 342px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(390px, 650px) minmax(220px, 1fr);
  align-items: center;
  gap: 20px;
  overflow: hidden;
  background: #e8edf6;
}

.gp-hero-center {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  padding: 34px 12px;
  text-align: center;
}

.gp-hero .weprint-logo-card {
  width: min(420px, 100%);
  margin: 0 0 16px;
  padding: 12px 18px;
  border: 1px solid #d8dee8;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(38, 50, 70, .08);
}

.gp-hero .weprint-logo-card img {
  width: 100%;
  max-height: 82px;
  object-fit: contain;
}

.gp-hero .hero-pill {
  min-height: 28px;
  margin: 0 0 12px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid #b8dff5;
  color: #075985;
  box-shadow: none;
  font-size: .72rem;
  letter-spacing: .04em;
}

.gp-hero h1 {
  max-width: 700px;
  margin: 0 0 12px;
  color: #2b3850;
  font-size: clamp(2.2rem, 4.5vw, 4.1rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.025em;
  text-transform: none;
}

.gp-hero .headline-highlight {
  background: linear-gradient(180deg, transparent 48%, rgba(255, 216, 77, .7) 48% 84%, transparent 84%);
}

.gp-hero .hero-subhead {
  max-width: 720px;
  margin-bottom: 8px;
  color: #3f4b5f;
  font-size: 1.1rem;
}

.gp-hero .hero-support {
  margin-bottom: 24px;
  color: #344258;
  font-size: 1rem;
  font-weight: 600;
}

.gp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.gp-hero-art {
  position: relative;
  min-height: 342px;
}

.gp-hero-art img {
  position: absolute;
  width: 68%;
  max-width: 390px;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 22px 42px rgba(38, 50, 70, .2);
}

.gp-left-art img:first-child {
  left: -8%;
  top: 34px;
  transform: rotate(2deg);
}

.gp-left-art img:last-child {
  right: 5%;
  bottom: 28px;
  width: 54%;
  transform: rotate(-4deg);
}

.gp-right-art img:first-child {
  left: 6%;
  top: 30px;
  transform: rotate(-3deg);
}

.gp-right-art img:last-child {
  right: -5%;
  bottom: 34px;
  width: 58%;
  transform: rotate(4deg);
}

.gp-category-row {
  padding: 32px 0 30px;
  background: #fff;
  border-bottom: 1px solid #e5eaf0;
}

.gp-category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.gp-category-grid a {
  min-width: 0;
  display: grid;
  gap: 8px;
  color: #3a3f48;
  text-align: center;
}

.gp-category-grid img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border-radius: 4px;
  background: #f1f3f6;
}

.gp-category-grid b {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.gp-category-grid span {
  color: #555f6e;
  font-size: .86rem;
}

body[data-page="home"] h2 {
  color: #2b3850;
  font-weight: 800;
  text-transform: none;
}

body[data-page="home"] h3 {
  color: #333b49;
  font-weight: 750;
  text-transform: none;
}

body[data-page="home"] .kicker {
  color: #0074b7;
}

body[data-page="home"] .storefront-card,
body[data-page="home"] .shoppable-index article,
body[data-page="home"] .retail-steps article {
  border: 0;
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
}

body[data-page="home"] .storefront-card img,
body[data-page="home"] .shoppable-index article img {
  border-radius: 4px;
  background: #f1f3f6;
}

body[data-page="home"] .storefront-card:hover,
body[data-page="home"] .shoppable-index article:hover {
  transform: none;
  box-shadow: none;
}

body[data-page="home"] .storefront-card small {
  background: #f1f5fb;
}

body[data-page="home"] .mobile-bottom-bar {
  border: 1px solid #cbd5df;
  box-shadow: 0 8px 22px rgba(38, 50, 70, .12);
}

@media (max-width: 1000px) {
  .gp-mainbar {
    min-height: 70px;
  }

  .site-search,
  .gp-call,
  .gp-header-actions {
    display: none;
  }

  .gp-nav .nav-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 112px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: auto;
    border: 1px solid #d8dee8;
    background: #fff;
  }

  .gp-nav .nav-menu.is-open {
    display: flex;
  }

  .gp-nav .nav-menu a {
    min-height: 48px;
    padding: 0 16px;
    border-bottom: 1px solid #edf0f4;
  }

  .gp-hero {
    grid-template-columns: 1fr;
    padding: 24px 14px;
  }

  .gp-hero-art {
    display: none;
  }

  .gp-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .gp-topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding: 7px 0;
  }

  .gp-topbar-inner div {
    flex-wrap: wrap;
    gap: 12px;
  }

  .gp-brand img {
    width: 116px;
  }

  .gp-brand b,
  .gp-brand small {
    display: none;
  }

  .gp-hero {
    min-height: auto;
  }

  .gp-hero-center {
    padding: 12px 0;
  }

  .gp-hero .weprint-logo-card {
    max-width: 320px;
  }

  .gp-hero h1 {
    font-size: clamp(2rem, 9.5vw, 3rem);
  }

  .gp-hero .hero-subhead {
    font-size: .98rem;
  }

  .gp-hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

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

  .gp-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gp-category-grid b {
    font-size: .92rem;
  }
}

/* Premium typography/header pass: lighter Open Sans, WePrintEagle-first branding. */
:root {
  --font-display: "Open Sans", Arial, Helvetica, system-ui, sans-serif;
  --font-body: "Open Sans", Arial, Helvetica, system-ui, sans-serif;
}

body {
  color: #232832;
  font-weight: 400;
  letter-spacing: .006em;
}

h1 {
  font-weight: 660;
  letter-spacing: .052em;
  text-transform: uppercase;
}

h2 {
  font-weight: 600;
  letter-spacing: .02em;
}

h3 {
  font-weight: 580;
  letter-spacing: .014em;
}

.button,
button,
.nav-menu a,
.gp-nav a,
.gp-call,
.kicker {
  font-weight: 560;
}

.button {
  border-width: 1px;
  box-shadow: none;
  letter-spacing: .018em;
}

body[data-page="home"] {
  --ink: #232832;
  --charcoal-text: #232832;
  --muted: #657082;
}

body[data-page="home"] .gp-header {
  background: rgba(255, 255, 255, .98);
}

body[data-page="home"] .gp-mainbar {
  min-height: 78px;
}

body[data-page="home"] .gp-brand {
  min-width: 236px;
}

body[data-page="home"] .gp-brand img {
  width: 228px;
  max-height: 58px;
  padding: 2px 0;
  object-fit: contain;
}

body[data-page="home"] .gp-brand span {
  display: none;
}

body[data-page="home"] .site-search input {
  font-weight: 400;
  letter-spacing: .012em;
}

body[data-page="home"] .gp-call,
body[data-page="home"] .gp-nav a {
  color: #1f2530;
  font-size: .82rem;
  font-weight: 590;
  letter-spacing: .045em;
}

body[data-page="home"] .gp-topbar-inner {
  justify-content: center;
  min-height: 34px;
  text-align: center;
}

body[data-page="home"] .gp-topbar-inner span {
  width: 100%;
}

.gp-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: #232832;
  font-size: .82rem;
  font-weight: 560;
  white-space: nowrap;
}

.gp-header-actions a {
  color: inherit;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid transparent;
  border-radius: 999px;
}

.cart-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-link:hover {
  border-color: #cbd3df;
  background: #f7f9fb;
}

body[data-page="home"] .button {
  min-height: 42px;
  padding: 0 25px;
  border-color: #cbd3df;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 540;
  letter-spacing: .012em;
}

body[data-page="home"] .button-primary {
  border-color: #34363c;
  background: #34363c;
}

body[data-page="home"] .button-secondary,
body[data-page="home"] .button-ghost {
  border-color: #c9d2df;
}

body[data-page="home"] .gp-hero h1 {
  color: #2a3446;
  font-weight: 660;
  letter-spacing: .05em;
  line-height: 1.08;
  text-transform: uppercase;
}

body[data-page="home"] .headline-highlight {
  padding-inline: .04em;
}

body[data-page="home"] .gp-hero .hero-subhead {
  color: #3d4859;
  font-weight: 400;
  letter-spacing: .01em;
}

body[data-page="home"] .gp-hero .hero-support {
  color: #263244;
  font-weight: 560;
}

body[data-page="home"] h2 {
  color: #2a3446;
  font-weight: 600;
  letter-spacing: .02em;
}

body[data-page="home"] h3,
body[data-page="home"] .gp-category-grid b {
  color: #303743;
  font-weight: 560;
  letter-spacing: .012em;
}

body[data-page="home"] .kicker,
body[data-page="home"] .hero-pill {
  font-weight: 650;
  letter-spacing: .09em;
}

body[data-page="home"] .product-index p,
body[data-page="home"] .shoppable-index article p {
  font-weight: 620;
}

body[data-page="home"] .footer-logo {
  width: min(240px, 100%);
  max-height: 72px;
  object-fit: contain;
  background: #fff;
}

body[data-page="home"] .gp-category-grid a,
body[data-page="home"] .storefront-card,
body[data-page="home"] .shoppable-index article,
body[data-page="home"] .service-product-strip a,
.config-tile,
.package-image-tile,
.related-card {
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

body[data-page="home"] .gp-category-grid a:hover,
body[data-page="home"] .storefront-card:hover,
body[data-page="home"] .shoppable-index article:hover,
body[data-page="home"] .service-product-strip a:hover,
.config-tile:hover,
.package-image-tile:hover,
.related-card:hover {
  transform: scale(1.018);
  border-color: rgba(0, 115, 181, .55);
  box-shadow: 0 0 0 3px rgba(0, 115, 181, .11);
}

body[data-page="home"] .gp-category-grid a:hover img {
  box-shadow: 0 0 0 3px rgba(0, 115, 181, .12);
}

.service-product-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.service-product-strip a {
  display: grid;
  gap: 2px;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid #d9e0ea;
  border-radius: 4px;
  background: #fff;
  color: #232832;
}

.service-product-strip span {
  font-weight: 560;
  letter-spacing: .018em;
}

.service-product-strip small {
  color: #657082;
  font-size: .78rem;
}

.footer-grid {
  align-items: start;
}

.footer-visit a {
  display: inline-block;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 560;
}

.footer-map {
  min-width: 0;
}

.footer-map iframe {
  width: 100%;
  min-height: 190px;
  aspect-ratio: 4 / 3;
  border: 1px solid #d9e0ea;
  border-radius: 4px;
  background: #eef2f7;
}

@media (min-width: 760px) {
  .service-product-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body[data-page="home"] .gp-mainbar {
    min-height: 68px;
  }

  body[data-page="home"] .gp-brand {
    min-width: 0;
  }

  body[data-page="home"] .gp-brand img {
    width: 184px;
    max-height: 48px;
  }

  body[data-page="home"] .gp-hero h1 {
    font-size: clamp(1.95rem, 8.8vw, 2.8rem);
    letter-spacing: .028em;
    line-height: 1.12;
  }
}

/* Stronger print-color headline highlights. */
.headline-highlight {
  background: linear-gradient(180deg, transparent 50%, rgba(0, 116, 183, .28) 50% 88%, transparent 88%);
}

.headline-highlight.yellow,
.gp-hero .headline-highlight {
  background: linear-gradient(180deg, transparent 50%, rgba(255, 207, 0, .9) 50% 88%, transparent 88%);
}

body[data-page="home"] .gp-hero .headline-highlight {
  padding-inline: 0;
  background: transparent;
}

/* Marketing category and product pages use the same product framework as Photos. */
body[data-page="marketing-category"],
body[data-page="flyers-posters-category"],
body[data-page="brochures"],
body[data-page="booklets"],
body[data-page="postcards"],
body[data-page="posters"],
body[data-page="flyers-handouts"] {
  background: #f4f7fb;
}

body[data-page="marketing-category"] .nav-inner,
body[data-page="flyers-posters-category"] .nav-inner,
body[data-page="brochures"] .nav-inner,
body[data-page="booklets"] .nav-inner,
body[data-page="postcards"] .nav-inner,
body[data-page="posters"] .nav-inner,
body[data-page="flyers-handouts"] .nav-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(190px, 240px) 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

body[data-page="marketing-category"] .brand-lockup img,
body[data-page="flyers-posters-category"] .brand-lockup img,
body[data-page="brochures"] .brand-lockup img,
body[data-page="booklets"] .brand-lockup img,
body[data-page="postcards"] .brand-lockup img,
body[data-page="posters"] .brand-lockup img,
body[data-page="flyers-handouts"] .brand-lockup img {
  width: 220px;
  max-width: 100%;
  max-height: 76px;
  object-fit: contain;
}

body[data-page="marketing-category"] .cart-count-link,
body[data-page="flyers-posters-category"] .cart-count-link,
body[data-page="brochures"] .cart-count-link,
body[data-page="booklets"] .cart-count-link,
body[data-page="postcards"] .cart-count-link,
body[data-page="posters"] .cart-count-link,
body[data-page="flyers-handouts"] .cart-count-link {
  grid-column: 2;
  justify-self: center;
}

body[data-page="marketing-category"] .menu-toggle,
body[data-page="flyers-posters-category"] .menu-toggle,
body[data-page="brochures"] .menu-toggle,
body[data-page="booklets"] .menu-toggle,
body[data-page="postcards"] .menu-toggle,
body[data-page="posters"] .menu-toggle,
body[data-page="flyers-handouts"] .menu-toggle {
  grid-column: 4;
  justify-self: end;
}

body[data-page="marketing-category"] .nav-menu,
body[data-page="flyers-posters-category"] .nav-menu,
body[data-page="brochures"] .nav-menu,
body[data-page="booklets"] .nav-menu,
body[data-page="postcards"] .nav-menu,
body[data-page="posters"] .nav-menu,
body[data-page="flyers-handouts"] .nav-menu {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.2vw, 36px);
  min-height: 92px;
}

body[data-page="marketing-category"] .nav-menu a,
body[data-page="flyers-posters-category"] .nav-menu a,
body[data-page="brochures"] .nav-menu a,
body[data-page="booklets"] .nav-menu a,
body[data-page="postcards"] .nav-menu a,
body[data-page="posters"] .nav-menu a,
body[data-page="flyers-handouts"] .nav-menu a {
  min-height: 40px;
  color: #1f2933;
}

body[data-page="marketing-category"] .nav-menu a[aria-current="page"],
body[data-page="flyers-posters-category"] .nav-menu a[aria-current="page"],
body[data-page="brochures"] .nav-menu a[aria-current="page"],
body[data-page="booklets"] .nav-menu a[aria-current="page"],
body[data-page="postcards"] .nav-menu a[aria-current="page"],
body[data-page="posters"] .nav-menu a[aria-current="page"],
body[data-page="flyers-handouts"] .nav-menu a[aria-current="page"] {
  color: var(--miq-blue) !important;
}

body[data-page="brochures"] .product-photo-frame.photo-gallery,
body[data-page="booklets"] .product-photo-frame.photo-gallery,
body[data-page="postcards"] .product-photo-frame.photo-gallery,
body[data-page="posters"] .product-photo-frame.photo-gallery,
body[data-page="flyers-handouts"] .product-photo-frame.photo-gallery {
  max-width: 100%;
  overflow: visible;
  padding-bottom: 0;
  background: transparent;
  border: 0;
}

body[data-page="brochures"] .product-photo-frame.photo-gallery > img#brochure-gallery-main,
body[data-page="booklets"] .product-photo-frame.photo-gallery > img#booklet-gallery-main,
body[data-page="postcards"] .product-photo-frame.photo-gallery > img#postcard-gallery-main,
body[data-page="posters"] .product-photo-frame.photo-gallery > img#poster-gallery-main,
body[data-page="flyers-handouts"] .product-photo-frame.photo-gallery > img#flyer-gallery-main {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 6px;
  box-shadow: none;
}

.marketing-addons {
  margin-top: 12px;
}

.compact-tile {
  min-height: 72px;
  padding: 12px 14px;
}

.compact-tile b {
  line-height: 1.15;
}

.compact-tile span {
  font-size: .78rem;
  line-height: 1.25;
}

.field-warning {
  display: block;
  margin-top: 7px;
  color: #b42318;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.35;
}

.field-warning[hidden] {
  display: none !important;
}

.booklet-detail-grid {
  align-items: start;
}

.booklet-detail-grid .field-warning-row {
  margin-top: 7px;
  padding-bottom: 0;
}

body[data-page="brochures"] [hidden],
body[data-page="booklets"] [hidden],
body[data-page="postcards"] [hidden],
body[data-page="posters"] [hidden],
body[data-page="flyers-handouts"] [hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  body[data-page="marketing-category"] .nav-inner,
  body[data-page="flyers-posters-category"] .nav-inner,
  body[data-page="brochures"] .nav-inner,
  body[data-page="booklets"] .nav-inner,
  body[data-page="postcards"] .nav-inner,
  body[data-page="posters"] .nav-inner,
  body[data-page="flyers-handouts"] .nav-inner {
    grid-template-columns: minmax(150px, 1fr) 48px auto;
    min-height: 76px;
  }

  body[data-page="marketing-category"] .brand-lockup img,
  body[data-page="flyers-posters-category"] .brand-lockup img,
  body[data-page="brochures"] .brand-lockup img,
  body[data-page="booklets"] .brand-lockup img,
  body[data-page="postcards"] .brand-lockup img,
  body[data-page="posters"] .brand-lockup img,
  body[data-page="flyers-handouts"] .brand-lockup img {
    width: 180px;
  }

  body[data-page="marketing-category"] .cart-count-link,
  body[data-page="flyers-posters-category"] .cart-count-link,
  body[data-page="brochures"] .cart-count-link,
  body[data-page="booklets"] .cart-count-link,
  body[data-page="postcards"] .cart-count-link,
  body[data-page="posters"] .cart-count-link,
  body[data-page="flyers-handouts"] .cart-count-link {
    grid-column: 2;
  }

  body[data-page="marketing-category"] .menu-toggle,
  body[data-page="flyers-posters-category"] .menu-toggle,
  body[data-page="brochures"] .menu-toggle,
  body[data-page="booklets"] .menu-toggle,
  body[data-page="postcards"] .menu-toggle,
  body[data-page="posters"] .menu-toggle,
  body[data-page="flyers-handouts"] .menu-toggle {
    grid-column: 3;
  }

  body[data-page="marketing-category"] .nav-menu,
  body[data-page="flyers-posters-category"] .nav-menu,
  body[data-page="brochures"] .nav-menu,
  body[data-page="booklets"] .nav-menu,
  body[data-page="postcards"] .nav-menu,
  body[data-page="posters"] .nav-menu,
  body[data-page="flyers-handouts"] .nav-menu {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .booklet-detail-grid .field-warning-row {
    margin-top: 7px;
  }
}

body[data-page="design-online"] .design-online-hero {
  padding: clamp(24px, 3vw, 42px) 0;
  background: #f4f8fc;
  border-bottom: 1px solid #d7e1ed;
}

body[data-page="design-online"] .design-online-grid {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(480px, 1.18fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

body[data-page="design-online"] .design-online-copy h1 {
  max-width: 520px;
  margin: 0 0 14px;
  color: #1e2633;
  font-size: clamp(2.8rem, 4.4vw, 4.75rem);
  line-height: .94;
  letter-spacing: .045em;
  text-transform: uppercase;
}

body[data-page="design-online"] .design-online-copy p:not(.kicker) {
  max-width: 560px;
  color: #1f2b3c;
  font-size: clamp(.98rem, 1.12vw, 1.1rem);
  line-height: 1.44;
  margin-bottom: 10px;
}

body[data-page="design-online"] .designer-option-list {
  display: grid;
  gap: 10px;
}

body[data-page="design-online"] .designer-option-card {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 104px;
  padding: 12px;
  border: 1px solid #cbd8e6;
  border-radius: 8px;
  background: #ffffff;
  color: #1e2633;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(18, 31, 53, .06);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

body[data-page="design-online"] .designer-option-card:hover {
  border-color: #2f6df6;
  box-shadow: 0 18px 44px rgba(47, 109, 246, .16);
  transform: translateY(-2px);
}

body[data-page="design-online"] .designer-option-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border: 1px solid #dde6f0;
  border-radius: 6px;
  background: #ffffff;
  padding: 10px;
}

body[data-page="design-online"] .designer-option-card:first-child img {
  object-fit: cover;
  padding: 0;
}

body[data-page="design-online"] .designer-option-card h2 {
  margin: 0 0 4px;
  font-size: clamp(1.1rem, 1.35vw, 1.42rem);
  letter-spacing: .018em;
  text-transform: none;
}

body[data-page="design-online"] .designer-option-card p {
  margin: 0;
  color: #4b5a70;
  font-size: .9rem;
  line-height: 1.34;
}

body[data-page="design-online"] .design-online-notes {
  background: #ffffff;
}

body[data-page="design-online"] .design-online-note-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
}

body[data-page="design-online"] .design-online-note-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #d7e1ed;
}

body[data-page="design-online"] .design-online-note-grid li {
  padding: 11px 0;
  border-bottom: 1px solid #d7e1ed;
  color: #263449;
  font-size: .95rem;
}

@media (max-width: 900px) {
  body[data-page="design-online"] .design-online-grid,
  body[data-page="design-online"] .design-online-note-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="design-online"] .designer-option-card {
    grid-template-columns: 88px 1fr;
    gap: 14px;
    min-height: 96px;
  }
}

@media (max-width: 560px) {
  body[data-page="design-online"] .design-online-hero {
    padding: 26px 0;
  }

  body[data-page="design-online"] .design-online-copy h1 {
    font-size: clamp(2.45rem, 11vw, 3.4rem);
  }

  body[data-page="design-online"] .designer-option-card {
    grid-template-columns: 1fr;
  }

  body[data-page="design-online"] .designer-option-card img {
    aspect-ratio: 16 / 9;
  }
}

.headline-highlight.cyan {
  background: linear-gradient(180deg, transparent 50%, rgba(0, 166, 223, .52) 50% 88%, transparent 88%);
}

/* Late visual unification pass for GotPrint-like retail density. */
body[data-page="home"] .gp-mainbar {
  min-height: 96px;
}

body[data-page="home"] .gp-brand {
  min-width: 330px;
}

body[data-page="home"] .gp-brand img {
  width: 310px;
  max-height: 86px;
}

body[data-page="home"] .site-search {
  max-width: 460px;
}

body[data-page="home"] .gp-nav .nav-menu {
  justify-content: center;
  gap: clamp(18px, 2.15vw, 34px);
  min-height: 64px;
}

body[data-page="home"] .gp-nav a {
  font-weight: 520;
  letter-spacing: .055em;
}

.headline-logo-wrap {
  display: inline-flex;
  justify-content: center;
  width: min(560px, 92vw);
  margin-top: .08em;
  padding: .04em 0 0;
  background: transparent;
}

.headline-logo-wrap img {
  width: min(520px, 86vw);
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(38, 50, 70, .13));
}

body[data-page="home"] .gp-category-grid {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

body[data-page="home"] .gp-category-grid b {
  font-weight: 520;
}

body[data-page="home"] .proof-strip {
  background: #fff;
}

body[data-page="home"] .proof-grid {
  gap: 0;
  border: 1px solid #d8dee8;
  border-width: 1px 0;
}

body[data-page="home"] .proof-grid div {
  min-height: 78px;
  border: 0;
  border-right: 1px solid #d8dee8;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

body[data-page="home"] .proof-grid div:last-child {
  border-right: 0;
}

body[data-page="home"] .proof-grid div::after {
  height: 3px;
}

body[data-page="home"] .proof-grid b {
  font-weight: 520;
  letter-spacing: .055em;
}

body[data-page="home"] .proof-grid span {
  color: #7b8493;
  font-weight: 600;
}

body[data-page="home"] .storefront-grid {
  display: none;
}

.visual-category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.visual-category {
  position: relative;
  display: block;
  min-height: 212px;
  overflow: hidden;
  border: 1px solid #d8dee8;
  border-radius: 0;
  color: #fff;
  background: #111827;
}

.visual-category img {
  width: 100%;
  height: 100%;
  min-height: 212px;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  filter: brightness(.62) saturate(.95);
  transition: transform 180ms ease, filter 180ms ease;
}

.visual-category span {
  position: absolute;
  inset: auto 18px 18px;
  display: grid;
  gap: 6px;
  text-align: center;
  text-shadow: 0 1px 16px rgba(0, 0, 0, .45);
}

.visual-category b {
  font-size: clamp(1.12rem, 1.75vw, 1.62rem);
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.12;
  text-transform: uppercase;
}

.visual-category small {
  font-size: .92rem;
  font-weight: 400;
}

.visual-category:hover img {
  transform: scale(1.035);
  filter: brightness(.72) saturate(1.04);
}

body[data-page="home"] .service-product-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

body[data-page="home"] .service-product-strip a {
  border-radius: 0;
}

body[data-page="home"] .service-product-strip span {
  font-weight: 520;
}

.footer-pa-logo {
  width: min(280px, 100%);
  max-height: 96px;
  background: transparent;
}

@media (min-width: 760px) {
  .visual-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .service-product-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .visual-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .visual-category,
  .visual-category img {
    min-height: 205px;
  }
}

@media (min-width: 1440px) {
  .visual-category,
  .visual-category img {
    min-height: 220px;
  }
}

@media (max-width: 1000px) {
  body[data-page="home"] .gp-nav .nav-menu {
    justify-content: flex-start;
    gap: 0;
  }
}

@media (max-width: 680px) {
  body[data-page="home"] .gp-brand img {
    width: 220px;
    max-height: 64px;
  }

  body[data-page="home"] .gp-mainbar {
    min-height: 82px;
  }

  body[data-page="home"] .gp-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Apply landing-page visual system to subpages. */
body[data-page="canva"],
body[data-page="photo-prints"] {
  color: #232832;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: .006em;
}

body[data-page="canva"] .site-header,
body[data-page="photo-prints"] .site-header,
body[data-page="canvas-prints"] .site-header,
body[data-page="photos-canvas"] .site-header,
body[data-page="banners"] .site-header,
body[data-page="retractable-banners"] .site-header,
body[data-page="banner-category"] .site-header,
body[data-page="blueprints"] .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid #d8dee8;
  background: #fff;
  box-shadow: none;
}

body[data-page="canva"] .utility-bar,
body[data-page="photo-prints"] .utility-bar,
body[data-page="canvas-prints"] .utility-bar,
body[data-page="photos-canvas"] .utility-bar,
body[data-page="banners"] .utility-bar,
body[data-page="retractable-banners"] .utility-bar,
body[data-page="banner-category"] .utility-bar,
body[data-page="blueprints"] .utility-bar {
  border-bottom: 1px solid #c9e7f8;
  background: #eaf7ff;
  color: #00558b;
}

body[data-page="canva"] .utility-inner,
body[data-page="photo-prints"] .utility-inner,
body[data-page="canvas-prints"] .utility-inner,
body[data-page="photos-canvas"] .utility-inner,
body[data-page="banners"] .utility-inner,
body[data-page="retractable-banners"] .utility-inner,
body[data-page="banner-category"] .utility-inner,
body[data-page="blueprints"] .utility-inner {
  justify-content: center;
  min-height: 34px;
  text-align: center;
}

body[data-page="canva"] .main-nav,
body[data-page="photo-prints"] .main-nav,
body[data-page="canvas-prints"] .main-nav,
body[data-page="photos-canvas"] .main-nav,
body[data-page="banners"] .main-nav,
body[data-page="retractable-banners"] .main-nav,
body[data-page="banner-category"] .main-nav,
body[data-page="blueprints"] .main-nav {
  border-bottom: 0;
  background: #fff;
}

body[data-page="canva"] .nav-inner,
body[data-page="photo-prints"] .nav-inner {
  min-height: 92px;
  gap: 24px;
}

body[data-page="canva"] .logo,
body[data-page="photo-prints"] .logo {
  display: inline-flex;
  align-items: center;
  min-width: 290px;
  color: #232832;
}

body[data-page="canva"] .logo::before,
body[data-page="photo-prints"] .logo::before {
  display: none;
}

body[data-page="canva"] .brand-lockup img,
body[data-page="photo-prints"] .brand-lockup img {
  width: 285px;
  max-height: 82px;
  object-fit: contain;
}

body[data-page="canva"] .nav-menu,
body[data-page="photo-prints"] .nav-menu {
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 30px);
}

body[data-page="canva"] .nav-menu a,
body[data-page="photo-prints"] .nav-menu a {
  color: #1f2530;
  font-size: .82rem;
  font-weight: 520;
  letter-spacing: .055em;
  text-transform: uppercase;
}

body[data-page="canva"] h1,
body[data-page="photo-prints"] h1 {
  font-weight: 660;
  letter-spacing: .052em;
  text-transform: uppercase;
}

body[data-page="canva"] h2,
body[data-page="photo-prints"] h2 {
  font-weight: 600;
  letter-spacing: .02em;
}

body[data-page="canva"] h3,
body[data-page="photo-prints"] h3 {
  font-weight: 580;
  letter-spacing: .014em;
}

body[data-page="canva"] .button,
body[data-page="photo-prints"] .button {
  border-radius: 999px;
  font-weight: 540;
  letter-spacing: .012em;
  text-transform: none;
}

body[data-page="canva"] .footer-grid,
body[data-page="photo-prints"] .footer-grid {
  grid-template-columns: minmax(220px, 1.1fr) minmax(170px, .75fr) minmax(230px, 1fr) minmax(180px, .75fr) minmax(170px, .7fr);
}

/* Photo Prints product gallery and package option selector. */
body[data-page="photo-prints"] {
  --line: #e2e7ef;
  --line-dark: #c9d2df;
}

body[data-page="photo-prints"] .product-config {
  gap: 54px;
}

body[data-page="photo-prints"] .purchase-panel {
  gap: 18px;
}

body[data-page="photo-prints"] .product-photo-frame {
  overflow: hidden;
  background: #f7f9fc;
}

body[data-page="photo-prints"] .product-photo-frame::before {
  display: none;
}

.photo-gallery {
  position: relative;
}

body[data-page="photo-prints"] .product-photo-frame.photo-gallery > img#photo-gallery-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f7f9fc;
  border-color: rgba(17, 24, 39, .16);
  box-shadow: none;
  transition: opacity 180ms ease;
}

.gallery-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(17, 24, 39, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #232832;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
}

.gallery-prev {
  left: 12px;
}

.gallery-next {
  right: 12px;
}

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

.gallery-thumbs button {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d8dee8;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}

.gallery-thumbs button.is-selected {
  border-color: #232832;
  box-shadow: 0 0 0 2px rgba(0, 115, 181, .16);
}

.gallery-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f7f9fc;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.product-option-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.product-option-tabs button {
  min-height: 46px;
  border: 1px solid #cfd8e5;
  border-radius: 999px;
  background: #fff;
  color: #232832;
  font-weight: 520;
  letter-spacing: .012em;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.product-option-tabs button.is-selected {
  border-color: #232832;
  background: #232832;
  color: #fff;
}

.option-help {
  margin: 0;
  color: #657082;
  font-size: .95rem;
}

.package-selector-panel {
  display: grid;
  gap: 12px;
}

.package-selector-panel select {
  min-height: 48px;
  border: 1px solid #cfd8e5;
  border-radius: 2px;
  background-color: #fff;
}

.selected-package-preview {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid #dfe5ed;
  border-radius: 2px;
  background: #fff;
}

.selected-package-preview img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border: 1px solid #dfe5ed;
  border-radius: 2px;
  background: #f7f9fc;
}

.package-preview-zoom {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.package-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(13, 22, 34, .74);
}

.package-lightbox[hidden] {
  display: none !important;
}

.package-lightbox-inner {
  position: relative;
  width: min(980px, 94vw);
  max-height: 90vh;
  overflow: hidden;
  background: #fff;
  border: 1px solid #cfd8e3;
  border-radius: 6px;
  box-shadow: 0 22px 60px rgba(13, 22, 34, .28);
}

.package-lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  background: #fff;
}

.package-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #cfd8e3;
  background: rgba(255, 255, 255, .96);
  color: #111827;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(13, 22, 34, .12);
}

.package-lightbox-close:hover {
  border-color: var(--miq-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .16);
}

.selected-package-preview b,
.selected-package-preview strong,
.selected-package-preview span {
  display: block;
}

.selected-package-preview strong {
  margin: 2px 0;
  color: #0074b7;
}

.package-image-tile em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 8px;
  border: 1px solid #cbd3df;
  border-radius: 999px;
  color: #232832;
  font-style: normal;
  font-weight: 540;
}

.package-empty-state {
  grid-column: 1 / -1;
  color: #657082;
  font-size: .95rem;
}

body[data-page="photo-prints"] .selected-price {
  border: 1px solid #dfe5ed;
  background: rgba(255, 255, 255, .74);
}

body[data-page="photo-prints"] .config-tile,
body[data-page="photo-prints"] .package-image-tile {
  border-color: #d4dce8;
  border-radius: 2px;
  background: rgba(255, 255, 255, .82);
  box-shadow: none;
}

body[data-page="photo-prints"] .package-image-tile img {
  width: 100%;
  max-height: none;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #f7f9fc;
}

body[data-page="photo-prints"] .config-tile.is-selected,
body[data-page="photo-prints"] .package-image-tile.is-selected {
  border: 1px solid #232832;
  background: #f7fbff;
  box-shadow: 0 0 0 3px rgba(0, 115, 181, .08);
  padding: 10px;
}

body[data-page="photo-prints"] .quantity-stepper {
  border-color: #232832;
  border-radius: 2px;
}

body[data-page="photo-prints"] .subtotal-box,
body[data-page="photo-prints"] .proof-toggle {
  border: 1px solid #dfe5ed;
  border-radius: 2px;
  background: rgba(255, 255, 255, .76);
}

body[data-page="photo-prints"] .button {
  border-radius: 999px;
}

.package-image-tile.is-selected em {
  border-color: #232832;
  background: #232832;
  color: #fff;
}

@media (min-width: 680px) {
  .product-option-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-thumbs {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 1000px) {
  body[data-page="canva"] .nav-menu,
  body[data-page="photo-prints"] .nav-menu {
    align-items: stretch;
    gap: 0;
  }

  body[data-page="canva"] .nav-inner,
  body[data-page="photo-prints"] .nav-inner {
    min-height: 78px;
  }
}

@media (max-width: 680px) {
  body[data-page="canva"] .logo,
  body[data-page="photo-prints"] .logo {
    min-width: 0;
  }

  body[data-page="canva"] .brand-lockup img,
  body[data-page="photo-prints"] .brand-lockup img {
    width: 215px;
    max-height: 64px;
  }

  body[data-page="canva"] .footer-grid,
  body[data-page="photo-prints"] .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Photo Prints option visibility and frameless carousel refinements. */
body[data-page="photo-prints"] [hidden] {
  display: none !important;
}

body[data-page="yard-signs"] [hidden],
body[data-page="a-frame-signs"] [hidden],
body[data-page="mounted-signs"] [hidden],
body[data-page="realtor-signs"] [hidden] {
  display: none !important;
}

body[data-page="photo-prints"] .product-photo-frame.photo-gallery {
  overflow: visible;
  padding-bottom: 0;
  background: transparent;
  border: 0;
}

body[data-page="photo-prints"] .product-photo-frame.photo-gallery > img#photo-gallery-main {
  width: 100%;
  height: auto;
  max-height: 680px;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body[data-page="photo-prints"] .product-photo-frame.photo-gallery .cmyk-strip {
  bottom: -20px;
}

body[data-page="photo-prints"] .gallery-thumbs {
  margin-top: 26px;
}

body[data-page="photo-prints"] .gallery-thumbs button {
  border-color: transparent;
  background: transparent;
}

body[data-page="photo-prints"] .gallery-thumbs button.is-selected {
  border-color: #232832;
  box-shadow: none;
}

body[data-page="photo-prints"] .gallery-thumbs img {
  background: transparent;
}

body[data-page="photo-prints"] .custom-pricing-note {
  grid-column: 1 / -1;
  margin: 0;
  color: #526074;
  font-size: .95rem;
}

.product-page-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 16px;
}

.product-page-tabs a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid #cfd8e3;
  border-radius: 999px;
  background: #fff;
  color: #1f2933;
  font-size: 12px;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.product-page-tabs a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 12px;
}

.product-page-tabs a:hover,
.product-page-tabs a.is-active {
  border-color: #2563eb;
  background: #eff6ff;
  color: #1e5bb8;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(16, 36, 58, .05);
}

.category-layout {
  display: grid;
  grid-template-columns: minmax(220px, .32fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.category-layout.no-filter {
  grid-template-columns: minmax(0, 1fr);
}

.category-filter,
.category-product-card {
  background: #fff;
  border: 1px solid #d9e0ea;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(16, 36, 58, .05);
}

.category-filter {
  position: sticky;
  top: 112px;
  padding: 18px;
}

.category-filter h2,
.category-filter h3 {
  margin: 0;
}

.category-filter h2 {
  font-size: 1rem;
}

.category-filter div {
  padding: 14px 0;
  border-top: 1px solid #e8edf2;
}

.category-filter p,
.category-filter ul {
  margin: 8px 0 0;
  color: #667085;
}

.category-filter ul {
  padding-left: 18px;
}

.category-sort {
  margin-bottom: 12px;
  color: #667085;
  font-size: 13px;
  font-weight: 600;
  text-align: right;
}

.category-product-grid {
  display: grid;
  gap: 18px;
}

.category-product-card {
  display: grid;
  grid-template-columns: minmax(220px, .42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 14px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.category-product-card:hover {
  border-color: #b9c7d8;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(16, 36, 58, .12);
}

.category-product-card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.category-product-card h2 {
  margin: 4px 0 8px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.category-product-card p {
  color: #667085;
}

.category-product-card strong {
  display: block;
  margin: 14px 0;
  color: #2563eb;
  font-size: 1.1rem;
}

body[data-page="photos-canvas"] .section-heading {
  align-items: end;
}

body[data-page="photos-canvas"] .section-heading p {
  max-width: 640px;
}

@media (max-width: 860px) {
  .category-layout,
  .category-product-card {
    grid-template-columns: 1fr;
  }

  .category-filter {
    position: static;
  }

  .category-sort {
    text-align: left;
  }

  body[data-page="photos-canvas"] .section-heading {
    display: grid;
    grid-template-columns: 1fr;
  }

  body[data-page="photos-canvas"] h1 {
    max-width: 100%;
    font-size: clamp(3.2rem, 17vw, 4.7rem);
    line-height: .98;
    overflow-wrap: anywhere;
  }

  body[data-page="photos-canvas"] .section-heading p,
  body[data-page="photos-canvas"] .category-product-card p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  body[data-page="photos-canvas"] .category-product-card {
    overflow: hidden;
  }
}

/* MIQ platform visual experiment - reversible layer.
   Roll back by restoring styles.before-miq-experiment.css. */
:root {
  --font-display: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --miq-bg: #f4f7fb;
  --miq-panel: #ffffff;
  --miq-panel-soft: #f8fafc;
  --miq-text: #182230;
  --miq-muted: #667085;
  --miq-muted-2: #98a2b3;
  --miq-line: #d9e0ea;
  --miq-line-soft: #e8edf2;
  --miq-header: #f1f4f7;
  --miq-blue: #2563eb;
  --miq-blue-dark: #1d4ed8;
  --miq-blue-soft: #eff6ff;
  --miq-green: #059669;
  --miq-amber: #f59e0b;
  --miq-red: #dc2626;
  --miq-cyan: #06b6d4;
  --miq-radius-sm: 4px;
  --miq-radius-md: 6px;
  --miq-radius-lg: 8px;
  --miq-radius-pill: 999px;
  --miq-shadow-panel: 0 8px 20px rgba(16, 36, 58, .05);
  --miq-shadow-hover: 0 14px 32px rgba(16, 36, 58, .12);
  --miq-focus: 0 0 0 3px rgba(37, 99, 235, .24);
  --blue: var(--miq-blue);
  --blue-dark: var(--miq-blue-dark);
  --ink: var(--miq-text);
  --charcoal: #1f2933;
  --paper: var(--miq-bg);
  --muted: var(--miq-muted);
  --line: var(--miq-line);
  --line-dark: #cfd8e3;
  --soft: var(--miq-panel-soft);
}

body {
  background: var(--miq-bg);
  color: var(--miq-text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
}

a:hover {
  color: var(--miq-blue);
}

h1,
h2,
h3,
.section-heading h2,
.purchase-panel h1 {
  color: var(--miq-text);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .01em;
}

h1 {
  letter-spacing: .035em;
}

h2 {
  letter-spacing: .025em;
}

p,
li,
label,
input,
select,
textarea,
.hero-subhead,
.product-subtitle,
.site-footer {
  color: inherit;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.site-header {
  background: rgba(244, 247, 251, .94);
  border-bottom: 1px solid var(--miq-line);
  box-shadow: 0 8px 20px rgba(16, 36, 58, .04);
}

.utility-bar {
  background: var(--miq-header);
  border-bottom: 1px solid var(--miq-line);
  color: #334155;
  font-size: 12px;
  font-weight: 600;
}

.main-nav {
  background: rgba(255, 255, 255, .92);
}

.nav-inner {
  min-height: 76px;
}

.nav-menu a {
  color: #1f2933;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  border-radius: var(--miq-radius-pill);
  transition: transform 160ms ease, color 160ms ease, background-color 160ms ease;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--miq-blue);
  background: var(--miq-blue-soft);
  transform: translateY(-1px);
}

.search-input,
input,
select,
textarea,
.quote-form input,
.quote-form textarea,
.custom-size-fields input,
.package-selector-panel select {
  min-height: 40px;
  border: 1px solid #cbd5e1;
  border-radius: var(--miq-radius-lg);
  background: #ffffff;
  color: var(--miq-text);
  font: 400 14px/1.4 var(--font-body);
  box-shadow: none;
}

.search-input:focus,
input:focus,
select:focus,
textarea:focus,
.quote-form input:focus,
.quote-form textarea:focus,
.custom-size-fields input:focus,
.package-selector-panel select:focus {
  outline: none;
  border-color: var(--miq-blue);
  box-shadow: var(--miq-focus);
}

.button,
button,
.quote-count,
.same-day-pill,
.kicker,
.product-card a,
.category-copy a,
.related-product b,
.package-image-tile em {
  font-family: var(--font-display);
}

.button,
.purchase-actions .button,
.mobile-action-bar a,
.quote-count,
.product-option-tabs button,
.config-tile,
.package-image-tile em,
.quantity-stepper button,
.menu-toggle {
  min-height: 36px;
  border-radius: var(--miq-radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button-primary,
.purchase-actions .button-primary,
.mobile-action-bar a:nth-child(2),
.quote-form button[type="submit"] {
  border-color: var(--miq-blue);
  background: var(--miq-blue);
  color: #ffffff;
  box-shadow: none;
}

.button-primary:hover,
.purchase-actions .button-primary:hover,
.quote-form button[type="submit"]:hover {
  border-color: var(--miq-blue-dark);
  background: var(--miq-blue-dark);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: var(--miq-shadow-hover);
}

.button-secondary,
.button-ghost,
.purchase-actions .button-secondary,
.purchase-actions .button-ghost,
.mobile-action-bar a,
.quote-count,
.product-option-tabs button,
.quantity-stepper button {
  border: 1px solid #cfd8e3;
  background: #ffffff;
  color: #1f2933;
  box-shadow: none;
}

.button-secondary:hover,
.button-ghost:hover,
.purchase-actions .button-secondary:hover,
.purchase-actions .button-ghost:hover,
.mobile-action-bar a:hover,
.quote-count:hover,
.product-option-tabs button:hover,
.quantity-stepper button:hover {
  border-color: #b9c7d8;
  background: #f8fbff;
  color: #1f2933;
  transform: translateY(-1px);
  box-shadow: var(--miq-shadow-panel);
}

.button:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--miq-focus);
}

.hero,
.gp-hero,
.page-hero,
.product-config,
.section-rule,
.photo-packages-section,
.site-footer {
  background: var(--miq-bg);
}

.hero,
.gp-hero {
  border-bottom: 1px solid var(--miq-line);
}

.hero-highlight,
.highlight-text,
.headline-highlight,
mark {
  background: #dbeafe;
  color: var(--miq-text);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.same-day-pill,
.kicker,
.badge,
.minimum-note b {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: var(--miq-radius-sm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}

.same-day-pill {
  padding: 4px 8px;
  border: 1px solid #bfdbfe;
  background: var(--miq-blue-soft);
  color: #1e5bb8;
}

.kicker {
  color: #1e5bb8;
}

.gp-category-card,
.storefront-card,
.shoppable-index article,
.category-panel,
.service-card,
.start-card,
.advantage-card,
.product-card,
.related-card,
.related-product,
.perfect-for-panel,
.subtotal-box,
.proof-toggle,
.selected-price,
.selected-package-preview,
.package-image-tile,
.config-tile,
.quote-form,
.footer-map,
.footer-lead,
.service-product-strip a {
  background: var(--miq-panel);
  border: 1px solid var(--miq-line);
  border-radius: var(--miq-radius-lg);
  box-shadow: var(--miq-shadow-panel);
}

.gp-category-card:hover,
.storefront-card:hover,
.shoppable-index article:hover,
.category-panel:hover,
.service-card:hover,
.start-card:hover,
.advantage-card:hover,
.product-card:hover,
.related-card:hover,
.related-product:hover,
.package-image-tile:hover,
.config-tile:hover,
.service-product-strip a:hover {
  border-color: #b9c7d8;
  background: #ffffff;
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--miq-shadow-hover);
}

.config-tile,
.package-image-tile {
  border-radius: var(--miq-radius-md);
  text-transform: none;
  font-weight: 500;
}

.config-tile b,
.package-image-tile b,
.package-image-tile strong {
  font-size: 1rem;
  line-height: 1.22;
  letter-spacing: .005em;
  text-transform: none;
}

.config-tile span,
.package-image-tile span,
.package-image-tile em {
  font-weight: 400;
  text-transform: none;
}

.config-tile.is-selected,
.package-image-tile.is-selected,
.product-option-tabs button.is-selected {
  border-color: var(--miq-blue);
  background: var(--miq-blue-soft);
  color: var(--miq-text);
  box-shadow: inset 3px 0 0 var(--miq-blue), var(--miq-shadow-panel);
}

.product-option-tabs button.is-selected {
  color: #1e5bb8;
}

.selected-price,
.subtotal-box,
.quote-form,
.perfect-for-panel {
  padding: 18px;
}

.selected-price {
  border-color: var(--miq-line);
  background: #ffffff;
}

.selected-price strong,
.subtotal-box dl div:last-child dd,
.selected-package-preview strong,
.package-image-tile strong,
.price,
.price-badge {
  color: var(--miq-blue);
  font-weight: 800;
}

.subtotal-box dl div,
.local-trust li,
.product-proof-points span,
.faq-list details,
.site-footer {
  border-color: var(--miq-line-soft);
}

.minimum-note {
  border: 1px solid #f6c453;
  border-radius: var(--miq-radius-lg);
  background: #fff7ed;
  color: #92400e;
}

.photo-warnings p {
  border: 1px solid #bfdbfe;
  border-radius: var(--miq-radius-md);
  background: var(--miq-blue-soft);
  color: #1e5bb8;
}

.quantity-stepper {
  border: 1px solid #cbd5e1;
  border-radius: var(--miq-radius-lg);
  background: #ffffff;
}

.quantity-stepper input {
  border: 0;
  border-left: 1px solid var(--miq-line);
  border-right: 1px solid var(--miq-line);
  border-radius: 0;
}

.proof-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.25;
}

.proof-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  margin: 0;
  accent-color: var(--miq-blue);
}

.proof-toggle span {
  display: block;
  color: var(--miq-text);
}

.product-photo-frame.photo-gallery,
body[data-page="photo-prints"] .product-photo-frame.photo-gallery,
body[data-page="canvas-prints"] .product-photo-frame.photo-gallery,
body[data-page="banners"] .product-photo-frame.photo-gallery,
body[data-page="retractable-banners"] .product-photo-frame.photo-gallery {
  background: transparent;
  box-shadow: none;
}

.gallery-arrow {
  border: 1px solid #cfd8e3;
  background: rgba(255, 255, 255, .95);
  color: var(--miq-text);
  box-shadow: var(--miq-shadow-panel);
}

.gallery-arrow:hover {
  border-color: var(--miq-blue);
  color: var(--miq-blue);
  transform: translateY(-50%) scale(1.04);
}

.product-photo-frame.photo-gallery .gallery-arrow,
body[data-page="photo-prints"] .product-photo-frame.photo-gallery .gallery-arrow,
body[data-page="canvas-prints"] .product-photo-frame.photo-gallery .gallery-arrow,
body[data-page="banners"] .product-photo-frame.photo-gallery .gallery-arrow,
body[data-page="retractable-banners"] .product-photo-frame.photo-gallery .gallery-arrow {
  top: 50%;
  z-index: 3;
}

.product-photo-frame.photo-gallery .gallery-prev,
.product-photo-frame.photo-gallery .banner-gallery-prev,
.product-photo-frame.photo-gallery .retractable-gallery-prev,
.product-photo-frame.photo-gallery .canvas-gallery-prev,
.product-photo-frame.photo-gallery .blueprint-gallery-prev,
.product-photo-frame.photo-gallery .business-card-gallery-prev {
  left: 14px;
  right: auto;
}

.product-photo-frame.photo-gallery .gallery-next,
.product-photo-frame.photo-gallery .banner-gallery-next,
.product-photo-frame.photo-gallery .retractable-gallery-next,
.product-photo-frame.photo-gallery .canvas-gallery-next,
.product-photo-frame.photo-gallery .blueprint-gallery-next,
.product-photo-frame.photo-gallery .business-card-gallery-next {
  right: 14px;
  left: auto;
}

.gallery-thumbs button {
  border-radius: var(--miq-radius-md);
}

.site-footer {
  color: var(--miq-muted);
}

.site-footer h2,
.site-footer h3,
.footer-lead h2,
.footer-lead h3 {
  color: var(--miq-text);
}

.site-footer a {
  color: var(--miq-blue);
  font-weight: 700;
}

.mobile-action-bar {
  background: rgba(255, 255, 255, .94);
  border-top: 1px solid var(--miq-line);
  box-shadow: 0 -8px 20px rgba(16, 36, 58, .06);
}

.mobile-action-bar a {
  min-height: 42px;
  font-size: 12px;
}

@media (max-width: 760px) {
  body {
    font-size: 14px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 54px 0;
  }

  .button,
  .purchase-actions .button,
  .mobile-action-bar a {
    min-height: 44px;
    font-size: 13px;
  }

  .selected-price,
  .subtotal-box,
  .quote-form,
  .perfect-for-panel {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* Signs section additions: keep new sign pages aligned with the Photo Prints page shell. */
body[data-page="sign-category"],
body[data-page="yard-signs"],
body[data-page="a-frame-signs"],
body[data-page="mounted-signs"],
body[data-page="realtor-signs"] {
  color: #232832;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: .006em;
}

body[data-page="sign-category"] .site-header,
body[data-page="yard-signs"] .site-header,
body[data-page="a-frame-signs"] .site-header,
body[data-page="mounted-signs"] .site-header,
body[data-page="realtor-signs"] .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid #d8dee8;
  background: #fff;
  box-shadow: none;
}

body[data-page="sign-category"] .utility-bar,
body[data-page="yard-signs"] .utility-bar,
body[data-page="a-frame-signs"] .utility-bar,
body[data-page="mounted-signs"] .utility-bar,
body[data-page="realtor-signs"] .utility-bar {
  border-bottom: 1px solid #c9e7f8;
  background: #eaf7ff;
  color: #00558b;
}

body[data-page="sign-category"] .utility-inner,
body[data-page="yard-signs"] .utility-inner,
body[data-page="a-frame-signs"] .utility-inner,
body[data-page="mounted-signs"] .utility-inner,
body[data-page="realtor-signs"] .utility-inner {
  justify-content: center;
  min-height: 34px;
  text-align: center;
}

body[data-page="sign-category"] .main-nav,
body[data-page="yard-signs"] .main-nav,
body[data-page="a-frame-signs"] .main-nav,
body[data-page="mounted-signs"] .main-nav,
body[data-page="realtor-signs"] .main-nav {
  border-bottom: 0;
  background: #fff;
}

body[data-page="sign-category"] .nav-inner,
body[data-page="yard-signs"] .nav-inner,
body[data-page="a-frame-signs"] .nav-inner,
body[data-page="mounted-signs"] .nav-inner,
body[data-page="realtor-signs"] .nav-inner {
  min-height: 92px;
  gap: 24px;
}

body[data-page="sign-category"] .logo,
body[data-page="yard-signs"] .logo,
body[data-page="a-frame-signs"] .logo,
body[data-page="mounted-signs"] .logo,
body[data-page="realtor-signs"] .logo {
  display: inline-flex;
  align-items: center;
  min-width: 290px;
  color: #232832;
}

body[data-page="sign-category"] .logo::before,
body[data-page="yard-signs"] .logo::before,
body[data-page="a-frame-signs"] .logo::before,
body[data-page="mounted-signs"] .logo::before,
body[data-page="realtor-signs"] .logo::before {
  display: none;
}

body[data-page="sign-category"] .brand-lockup img,
body[data-page="yard-signs"] .brand-lockup img,
body[data-page="a-frame-signs"] .brand-lockup img,
body[data-page="mounted-signs"] .brand-lockup img,
body[data-page="realtor-signs"] .brand-lockup img {
  width: 285px;
  max-height: 82px;
  object-fit: contain;
}

body[data-page="sign-category"] .nav-menu,
body[data-page="yard-signs"] .nav-menu,
body[data-page="a-frame-signs"] .nav-menu,
body[data-page="mounted-signs"] .nav-menu,
body[data-page="realtor-signs"] .nav-menu {
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 30px);
}

body[data-page="sign-category"] .nav-menu a,
body[data-page="yard-signs"] .nav-menu a,
body[data-page="a-frame-signs"] .nav-menu a,
body[data-page="mounted-signs"] .nav-menu a,
body[data-page="realtor-signs"] .nav-menu a {
  color: #1f2530;
  font-size: .82rem;
  font-weight: 520;
  letter-spacing: .055em;
  text-transform: uppercase;
}

body[data-page="sign-category"] h1,
body[data-page="yard-signs"] h1,
body[data-page="a-frame-signs"] h1,
body[data-page="mounted-signs"] h1,
body[data-page="realtor-signs"] h1 {
  font-weight: 660;
  letter-spacing: .052em;
  text-transform: uppercase;
}

body[data-page="sign-category"] .button,
body[data-page="yard-signs"] .button,
body[data-page="a-frame-signs"] .button,
body[data-page="mounted-signs"] .button,
body[data-page="realtor-signs"] .button {
  border-radius: 999px;
  font-weight: 540;
  letter-spacing: .012em;
  text-transform: none;
}

body[data-page="sign-category"] .product-card,
body[data-page="yard-signs"] .config-tile,
body[data-page="a-frame-signs"] .config-tile,
body[data-page="mounted-signs"] .config-tile,
body[data-page="realtor-signs"] .config-tile {
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background-color .18s ease;
}

body[data-page="sign-category"] .product-card:hover,
body[data-page="yard-signs"] .config-tile:hover,
body[data-page="a-frame-signs"] .config-tile:hover,
body[data-page="mounted-signs"] .config-tile:hover,
body[data-page="realtor-signs"] .config-tile:hover {
  color: inherit;
  border-color: rgba(37, 99, 235, .55);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .13), 0 16px 35px rgba(16, 36, 58, .08);
  transform: translateY(-2px) scale(1.01);
}

body[data-page="yard-signs"] .product-photo-frame.photo-gallery,
body[data-page="a-frame-signs"] .product-photo-frame.photo-gallery,
body[data-page="mounted-signs"] .product-photo-frame.photo-gallery,
body[data-page="realtor-signs"] .product-photo-frame.photo-gallery {
  background: transparent;
  box-shadow: none;
}

body[data-page="yard-signs"] .product-photo-frame::before,
body[data-page="a-frame-signs"] .product-photo-frame::before,
body[data-page="mounted-signs"] .product-photo-frame::before,
body[data-page="realtor-signs"] .product-photo-frame::before {
  display: none;
}

body[data-page="yard-signs"] .product-photo-frame.photo-gallery > img#yard-gallery-main,
body[data-page="a-frame-signs"] .product-photo-frame.photo-gallery > img#aframe-gallery-main,
body[data-page="mounted-signs"] .product-photo-frame.photo-gallery > img#mounted-gallery-main,
body[data-page="realtor-signs"] .product-photo-frame.photo-gallery > img#realtor-gallery-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: transparent;
  border-color: rgba(17, 24, 39, .16);
}

.product-photo-frame.photo-gallery .yard-gallery-prev,
.product-photo-frame.photo-gallery .aframe-gallery-prev,
.product-photo-frame.photo-gallery .mounted-gallery-prev,
.product-photo-frame.photo-gallery .realtor-gallery-prev {
  left: 14px;
  right: auto;
}

.product-photo-frame.photo-gallery .yard-gallery-next,
.product-photo-frame.photo-gallery .aframe-gallery-next,
.product-photo-frame.photo-gallery .mounted-gallery-next,
.product-photo-frame.photo-gallery .realtor-gallery-next {
  right: 14px;
  left: auto;
}

body[data-page="sign-category"] .category-intro-copy {
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  line-height: 1.45;
}

@media (max-width: 760px) {
  body[data-page="sign-category"] .nav-inner,
  body[data-page="yard-signs"] .nav-inner,
  body[data-page="a-frame-signs"] .nav-inner,
  body[data-page="mounted-signs"] .nav-inner,
  body[data-page="realtor-signs"] .nav-inner {
    min-height: 76px;
  }

  body[data-page="sign-category"] .logo,
  body[data-page="yard-signs"] .logo,
  body[data-page="a-frame-signs"] .logo,
  body[data-page="mounted-signs"] .logo,
  body[data-page="realtor-signs"] .logo {
    min-width: 180px;
  }

  body[data-page="sign-category"] .brand-lockup img,
  body[data-page="yard-signs"] .brand-lockup img,
  body[data-page="a-frame-signs"] .brand-lockup img,
  body[data-page="mounted-signs"] .brand-lockup img,
  body[data-page="realtor-signs"] .brand-lockup img {
    width: 190px;
    max-height: 62px;
  }
}

/* MIQ experiment tightening for current WePrintEagle layouts. */
body[data-page="home"] .button-primary,
body[data-page="home"] .gp-hero-actions .button-primary,
body[data-page="home"] .mobile-action-bar a:nth-child(2),
body[data-page="photo-prints"] .button-primary,
body[data-page="canva"] .button-primary {
  border-color: var(--miq-blue);
  background: var(--miq-blue);
  color: #ffffff;
}

body[data-page="home"] .button-primary:hover,
body[data-page="home"] .gp-hero-actions .button-primary:hover,
body[data-page="photo-prints"] .button-primary:hover,
body[data-page="canva"] .button-primary:hover {
  border-color: var(--miq-blue-dark);
  background: var(--miq-blue-dark);
  color: #ffffff;
}

body[data-page="home"] .headline-logo-wrap {
  display: inline-flex;
  justify-content: center;
  max-width: min(520px, 100%);
}

body[data-page="home"] .located-in-label {
  display: block;
  margin: 8px 0 4px;
  color: #4b5563;
  font-size: clamp(.72rem, 1vw, .9rem);
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

body[data-page="home"] .headline-logo-wrap img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}

body[data-page="home"] .gp-mainbar,
body[data-page="home"] .gp-nav,
body[data-page="home"] .gp-category-row,
body[data-page="home"] .gp-hero,
body[data-page="home"] .gp-category-grid {
  max-width: 100%;
}

body[data-page="home"] .gp-header-actions {
  min-width: 0;
}

body[data-page="photo-prints"] .selected-price {
  gap: 10px;
  overflow: hidden;
}

body[data-page="photo-prints"] .selected-price strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: normal;
}

@media (max-width: 1000px) {
  body[data-page="home"] .site-search,
  body[data-page="home"] .gp-header-actions {
    display: none !important;
  }
}

@media (max-width: 680px) {
  body[data-page="home"] .gp-mainbar {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
  }

  body[data-page="home"] .gp-brand {
    min-width: 0;
  }

  body[data-page="home"] .gp-brand img {
    width: 150px;
    max-width: 58vw;
  }

  body[data-page="home"] .gp-hero {
    overflow: hidden;
  }

  body[data-page="home"] .gp-hero-center {
    min-width: 0;
    max-width: 100%;
  }

  body[data-page="home"] .headline-logo-wrap {
    width: 76vw !important;
    max-width: 300px !important;
    overflow: hidden;
  }

  body[data-page="home"] .headline-logo-wrap img {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  body[data-page="home"] .gp-category-row {
    overflow: hidden;
  }

  body[data-page="home"] .gp-category-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    overflow: hidden;
  }

  body[data-page="home"] .gp-category-grid a,
  body[data-page="home"] .gp-category-grid img {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  body[data-page="home"] .hero-pill,
  body[data-page="photo-prints"] .same-day-pill {
    justify-content: center;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  body[data-page="photo-prints"] .selected-price {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  body[data-page="photo-prints"] .selected-price strong {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }
}

/* Cleaner active nav pill: less blob, more intentional tab. */
.nav-menu a[aria-current="page"],
.nav-menu a.is-active {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #f8fbff;
  color: #1d4ed8;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, .08);
}

.nav-menu a[aria-current="page"]:hover,
.nav-menu a.is-active:hover {
  border-color: #93c5fd;
  background: #eff6ff;
  transform: translateY(-1px);
}

body[data-page="canvas-prints"] #canvas-custom-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  width: 100%;
  margin-top: 12px;
}

body[data-page="canvas-prints"] [hidden] {
  display: none !important;
}

body[data-page="canvas-prints"] #canvas-custom-fields .custom-pricing-note {
  grid-column: 1 / -1 !important;
}

@media (max-width: 520px) {
  body[data-page="canvas-prints"] #canvas-custom-fields {
    grid-template-columns: 1fr;
  }
}

body[data-page="canvas-prints"] .product-photo-frame.photo-gallery > img#canvas-gallery-main {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 680px;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 6px;
  box-shadow: none;
}

body[data-page="canvas-prints"] .product-photo-frame.photo-gallery {
  max-width: 100%;
  overflow: visible;
  padding-bottom: 0;
  background: transparent;
  border: 0;
}

body[data-page="photo-prints"] .product-photo-frame.photo-gallery .cmyk-strip,
body[data-page="canvas-prints"] .product-photo-frame.photo-gallery .cmyk-strip,
body[data-page="banners"] .product-photo-frame.photo-gallery .cmyk-strip,
body[data-page="retractable-banners"] .product-photo-frame.photo-gallery .cmyk-strip {
  display: none;
}

body[data-page="canvas-prints"] .product-media {
  min-width: 0;
}

.site-footer .footer-lead {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.site-footer .footer-logo,
body[data-page="home"] .site-footer .footer-logo,
.site-footer .footer-pa-logo {
  display: block;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Latest navigation, cart, and tile-hover refinements. */
.gp-nav .nav-menu,
.nav-menu {
  justify-content: center;
  text-align: center;
}

.gp-nav .nav-menu a,
.nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

body[data-page="home"] .gp-nav .nav-menu a span {
  display: block;
}

body[data-page="home"] .gp-nav .nav-menu a.nav-stack {
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}

body[data-page="home"] .gp-nav .nav-menu a.nav-flyers-posters {
  min-width: 108px;
  white-space: nowrap;
}

.nav-menu a[aria-current="page"],
.nav-menu a.is-active,
.nav-menu a[aria-current="page"]:hover,
.nav-menu a.is-active:hover {
  min-height: 0;
  padding: 0 0 8px;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  color: var(--miq-blue);
  box-shadow: none;
  transform: none;
}

.nav-menu a[aria-current="page"]::after,
.nav-menu a.is-active::after {
  width: 100%;
  height: 2px;
  background: var(--miq-blue);
  opacity: 1;
}

.nav-menu a:hover {
  background: transparent !important;
}

.cart-count-link {
  position: relative;
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
}

.cart-count-link svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.cart-count-link b {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--miq-blue);
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

.category-page .split-heading {
  align-items: center;
}

.category-page .split-heading > p:not(.category-intro-copy) {
  display: none;
}

.category-page .category-intro-copy {
  display: block;
  max-width: 620px;
  margin: -16px 0 0;
  color: #111827;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.58;
  font-weight: 500;
}

.visual-category:hover,
body[data-page="home"] .gp-category-grid a:hover {
  border-color: var(--miq-blue);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, .22), var(--miq-shadow-hover);
}

.visual-category:hover b,
.visual-category:hover small,
.visual-category:hover span {
  color: #fff !important;
}

body[data-page="home"] .gp-category-grid a:hover b {
  color: #111827;
}

body[data-page="home"] .gp-category-grid a:hover span {
  color: #3b4b61;
}

/* Shared product/category title bar dimensions. */
body[data-page="photo-prints"] .nav-inner,
body[data-page="canvas-prints"] .nav-inner,
body[data-page="photos-canvas"] .nav-inner,
body[data-page="banners"] .nav-inner,
body[data-page="retractable-banners"] .nav-inner,
body[data-page="banner-category"] .nav-inner,
body[data-page="blueprints"] .nav-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(190px, 240px) 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

body[data-page="photo-prints"] .brand-lockup img,
body[data-page="canvas-prints"] .brand-lockup img,
body[data-page="photos-canvas"] .brand-lockup img,
body[data-page="banners"] .brand-lockup img,
body[data-page="retractable-banners"] .brand-lockup img,
body[data-page="banner-category"] .brand-lockup img,
body[data-page="blueprints"] .brand-lockup img {
  width: 220px;
  max-width: 100%;
  max-height: 76px;
  object-fit: contain;
}

body[data-page="photo-prints"] .cart-count-link,
body[data-page="canvas-prints"] .cart-count-link,
body[data-page="photos-canvas"] .cart-count-link,
body[data-page="banners"] .cart-count-link,
body[data-page="retractable-banners"] .cart-count-link,
body[data-page="banner-category"] .cart-count-link,
body[data-page="blueprints"] .cart-count-link {
  grid-column: 2;
  justify-self: center;
}

body[data-page="photo-prints"] .menu-toggle,
body[data-page="canvas-prints"] .menu-toggle,
body[data-page="photos-canvas"] .menu-toggle,
body[data-page="banners"] .menu-toggle,
body[data-page="retractable-banners"] .menu-toggle,
body[data-page="banner-category"] .menu-toggle,
body[data-page="blueprints"] .menu-toggle {
  grid-column: 4;
  justify-self: end;
}

body[data-page="photo-prints"] .nav-menu,
body[data-page="canvas-prints"] .nav-menu,
body[data-page="photos-canvas"] .nav-menu,
body[data-page="banners"] .nav-menu,
body[data-page="retractable-banners"] .nav-menu,
body[data-page="banner-category"] .nav-menu,
body[data-page="blueprints"] .nav-menu {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 2.4vw, 42px);
  min-height: 92px;
}

body[data-page="photo-prints"] .nav-menu a,
body[data-page="canvas-prints"] .nav-menu a,
body[data-page="photos-canvas"] .nav-menu a,
body[data-page="banners"] .nav-menu a,
body[data-page="retractable-banners"] .nav-menu a,
body[data-page="banner-category"] .nav-menu a,
body[data-page="blueprints"] .nav-menu a {
  min-height: 40px;
  color: #1f2933;
}

body[data-page="photo-prints"] .nav-menu a[aria-current="page"],
body[data-page="canvas-prints"] .nav-menu a[aria-current="page"],
body[data-page="photos-canvas"] .nav-menu a[aria-current="page"],
body[data-page="banners"] .nav-menu a[aria-current="page"],
body[data-page="retractable-banners"] .nav-menu a[aria-current="page"],
body[data-page="banner-category"] .nav-menu a[aria-current="page"],
body[data-page="blueprints"] .nav-menu a[aria-current="page"],
body[data-page="sign-category"] .nav-menu a[aria-current="page"],
body[data-page="yard-signs"] .nav-menu a[aria-current="page"],
body[data-page="a-frame-signs"] .nav-menu a[aria-current="page"],
body[data-page="mounted-signs"] .nav-menu a[aria-current="page"],
body[data-page="realtor-signs"] .nav-menu a[aria-current="page"] {
  color: var(--miq-blue) !important;
}

@media (max-width: 900px) {
  body[data-page="photo-prints"] .nav-inner,
  body[data-page="canvas-prints"] .nav-inner,
  body[data-page="photos-canvas"] .nav-inner,
  body[data-page="banners"] .nav-inner,
  body[data-page="retractable-banners"] .nav-inner,
  body[data-page="banner-category"] .nav-inner,
  body[data-page="blueprints"] .nav-inner {
    grid-template-columns: minmax(150px, 1fr) 48px auto;
    min-height: 76px;
  }

  body[data-page="photo-prints"] .brand-lockup img,
  body[data-page="canvas-prints"] .brand-lockup img,
  body[data-page="photos-canvas"] .brand-lockup img,
  body[data-page="banners"] .brand-lockup img,
  body[data-page="retractable-banners"] .brand-lockup img,
  body[data-page="banner-category"] .brand-lockup img,
  body[data-page="blueprints"] .brand-lockup img {
    width: 180px;
  }

  body[data-page="photo-prints"] .cart-count-link,
  body[data-page="canvas-prints"] .cart-count-link,
  body[data-page="photos-canvas"] .cart-count-link,
  body[data-page="banners"] .cart-count-link,
  body[data-page="retractable-banners"] .cart-count-link,
  body[data-page="banner-category"] .cart-count-link,
  body[data-page="blueprints"] .cart-count-link {
    grid-column: 2;
  }

  body[data-page="photo-prints"] .menu-toggle,
  body[data-page="canvas-prints"] .menu-toggle,
  body[data-page="photos-canvas"] .menu-toggle,
  body[data-page="banners"] .menu-toggle,
  body[data-page="retractable-banners"] .menu-toggle,
  body[data-page="banner-category"] .menu-toggle,
  body[data-page="blueprints"] .menu-toggle {
    grid-column: 3;
  }

  body[data-page="photo-prints"] .nav-menu,
  body[data-page="canvas-prints"] .nav-menu,
  body[data-page="photos-canvas"] .nav-menu,
  body[data-page="banners"] .nav-menu,
  body[data-page="retractable-banners"] .nav-menu,
  body[data-page="banner-category"] .nav-menu,
  body[data-page="blueprints"] .nav-menu {
    grid-column: 1 / -1;
    min-height: auto;
  }
}

body[data-page="banners"] [hidden],
body[data-page="retractable-banners"] [hidden],
body[data-page="banner-category"] [hidden],
body[data-page="blueprints"] [hidden] {
  display: none !important;
}

body[data-page="banners"] .product-photo-frame.photo-gallery > img#banner-gallery-main,
body[data-page="retractable-banners"] .product-photo-frame.photo-gallery > img#retractable-gallery-main,
body[data-page="blueprints"] .product-photo-frame.photo-gallery > img#blueprint-gallery-main {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 680px;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 6px;
  box-shadow: none;
}

body[data-page="banners"] .product-photo-frame.photo-gallery,
body[data-page="retractable-banners"] .product-photo-frame.photo-gallery,
body[data-page="blueprints"] .product-photo-frame.photo-gallery {
  max-width: 100%;
  overflow: visible;
  padding-bottom: 0;
  background: transparent;
  border: 0;
}

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

.banner-addon-tiles .config-tile.is-selected {
  border-color: var(--miq-blue);
}

.blueprint-qty-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blueprint-volume-note {
  margin-top: 18px;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-color: #9cc8ff;
  background: #f4f9ff;
  color: #24364b;
  font-size: .93rem;
  line-height: 1.5;
}

.blueprint-volume-note b {
  color: #00558b;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body[data-page="blueprints"] .size-tile-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="blueprints"] .size-tile {
  min-height: 88px;
  align-content: start;
  gap: 8px;
  padding: 12px;
}

body[data-page="blueprints"] .size-tile span {
  display: grid;
  gap: 2px;
  color: #3b4b61;
  font-size: .76rem;
  line-height: 1.25;
}

body[data-page="blueprints"] .size-tile .price-line {
  display: block;
  white-space: nowrap;
}

body[data-page="blueprints"] #blueprint-scale-tiles {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="blueprints"] #blueprint-scale-tiles .config-tile {
  min-height: 76px;
}

body[data-page="blueprints"] #blueprint-scale-tiles .config-tile b {
  white-space: nowrap;
}

body[data-page="blueprints"] #blueprint-warnings p:first-child {
  border-color: #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

@media (max-width: 520px) {
  .blueprint-qty-fields {
    grid-template-columns: 1fr;
  }

  body[data-page="blueprints"] .size-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="blueprints"] #blueprint-scale-tiles {
    grid-template-columns: 1fr;
  }
}

/* Flyers/posters and marketing polish pass. */
body:not([data-page="home"]) .main-nav .nav-inner {
  gap: clamp(10px, 1.2vw, 20px);
}

body:not([data-page="home"]) .cart-count-link {
  width: 42px;
  height: 42px;
  min-width: 42px;
  justify-self: center;
}

body:not([data-page="home"]) .nav-menu {
  gap: clamp(12px, 1.35vw, 24px) !important;
  min-width: 0;
}

body:not([data-page="home"]) .nav-menu a {
  max-width: 104px;
  min-width: 0;
  white-space: normal;
  line-height: 1.18;
}

body:not([data-page="home"]) .nav-menu a[href*="flyers-and-posters"] {
  width: 96px;
  min-width: 96px;
}

body[data-page="postcards"] #postcard-size-tiles {
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  max-width: 360px;
}

body[data-page="postcards"] [data-postcard-size] {
  min-width: 150px;
  padding-inline: 18px;
}

.finish-toggle {
  margin-top: 14px;
  grid-template-columns: repeat(2, minmax(132px, 1fr));
  max-width: 360px;
}

.finish-toggle .config-tile {
  min-height: 64px;
}

@media (max-width: 900px) {
  body:not([data-page="home"]) .nav-menu a,
  body:not([data-page="home"]) .nav-menu a[href*="flyers-and-posters"] {
    width: auto;
    max-width: none;
  }
}

@media (max-width: 430px) {
  body[data-page="postcards"] #postcard-size-tiles,
  .finish-toggle {
    grid-template-columns: 1fr;
    max-width: none;
  }

  body[data-page="postcards"] [data-postcard-size] {
    width: 100%;
  }
}

/* Carousel parity: match Photo Prints arrow placement and behavior on every product gallery. */
.product-photo-frame.photo-gallery {
  position: relative;
}

.product-photo-frame.photo-gallery .gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 38px;
  height: 38px;
  min-width: 38px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 24, 39, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: #232832;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(16, 36, 58, .12);
  transform: translateY(-50%);
  cursor: pointer;
}

.product-photo-frame.photo-gallery .gallery-arrow:hover,
.product-photo-frame.photo-gallery .gallery-arrow:focus-visible {
  border-color: var(--miq-blue);
  color: var(--miq-blue);
  outline: none;
  transform: translateY(-50%) scale(1.04);
}

.product-photo-frame.photo-gallery .gallery-arrow:first-of-type {
  left: 12px;
  right: auto;
}

.product-photo-frame.photo-gallery .gallery-arrow:last-of-type {
  right: 12px;
  left: auto;
}

.product-photo-frame.photo-gallery .gallery-arrow:active {
  transform: translateY(-50%) scale(.98);
}

@media (max-width: 520px) {
  .product-photo-frame.photo-gallery .gallery-arrow {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 1.6rem;
  }

  .product-photo-frame.photo-gallery .gallery-arrow:first-of-type {
    left: 10px;
  }

  .product-photo-frame.photo-gallery .gallery-arrow:last-of-type {
    right: 10px;
  }
}

/* Business cards product page. */
body[data-page="business-cards"] .product-photo-frame.photo-gallery {
  background: transparent;
  box-shadow: none;
  overflow: visible;
  padding-bottom: 0;
}

body[data-page="business-cards"] .product-photo-frame.photo-gallery::before {
  display: none;
}

body[data-page="business-cards"] .product-photo-frame.photo-gallery > img#business-card-gallery-main {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 680px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: transparent;
  border: 1px solid #d8e0ea;
  border-radius: var(--miq-radius-md);
}

body[data-page="business-cards"] .business-card-quantity-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="business-cards"] .business-card-stock-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="business-cards"] .business-card-stock-grid .config-tile,
body[data-page="business-cards"] .business-card-quantity-grid .config-tile {
  min-height: 84px;
}

body[data-page="business-cards"] .business-premium-band {
  display: grid;
  gap: 22px;
  align-items: start;
  border-top: 1px solid var(--miq-line);
  border-bottom: 1px solid var(--miq-line);
}

body[data-page="business-cards"] .business-premium-band ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--miq-muted);
}

body[data-page="business-cards"] .business-premium-band li + li {
  margin-top: 8px;
}

body[data-page="business-cards"] .purchase-actions {
  grid-template-columns: minmax(170px, 1.05fr) minmax(150px, .85fr) minmax(130px, .75fr);
}

body[data-page="business-cards"] .purchase-actions .button {
  min-height: 44px;
  padding-inline: 20px;
  white-space: nowrap;
}

body[data-page="business-cards"] .product-page-tabs {
  overflow-x: auto;
  flex-wrap: nowrap;
  max-width: 100%;
  padding-bottom: 4px;
}

body[data-page="business-cards"] .product-page-tabs a {
  flex: 0 0 auto;
}

body[data-page="business-cards"] .purchase-panel,
body[data-page="business-cards"] .product-media,
body[data-page="business-cards"] .purchase-panel > * {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 640px) {
  body[data-page="business-cards"] {
    overflow-x: hidden;
  }

  body[data-page="business-cards"] * {
    max-width: 100vw;
    box-sizing: border-box;
  }

  body[data-page="business-cards"] main,
  body[data-page="business-cards"] .product-config,
  body[data-page="business-cards"] .product-media,
  body[data-page="business-cards"] .purchase-panel {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    min-width: 0 !important;
    overflow-x: hidden;
  }

  body[data-page="business-cards"] .product-config {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body[data-page="business-cards"] .product-config.container,
  body[data-page="business-cards"] .section.container {
    width: auto !important;
    max-width: calc(100vw - 28px) !important;
    margin-left: 14px !important;
    margin-right: 14px !important;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }

  body[data-page="business-cards"] .product-photo-frame.photo-gallery > img#business-card-gallery-main {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  body[data-page="business-cards"] .purchase-panel p,
  body[data-page="business-cards"] .product-subtitle {
    width: 100%;
    max-width: calc(100vw - 28px);
    overflow-wrap: anywhere;
  }

  body[data-page="business-cards"] .purchase-panel h1 {
    font-size: clamp(2.8rem, 14vw, 3.65rem);
    overflow-wrap: anywhere;
  }

  body[data-page="business-cards"] .product-page-tabs {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  body[data-page="business-cards"] .purchase-panel {
    padding-right: 28px;
  }

  body[data-page="business-cards"] .purchase-panel > p,
  body[data-page="business-cards"] .product-subtitle,
  body[data-page="business-cards"] .product-proof-points,
  body[data-page="business-cards"] .selected-price,
  body[data-page="business-cards"] .config-section,
  body[data-page="business-cards"] .subtotal-box,
  body[data-page="business-cards"] .purchase-actions {
    width: calc(100vw - 84px);
    max-width: calc(100vw - 84px);
  }

  body[data-page="business-cards"] .product-subtitle {
    font-size: 1.02rem;
    line-height: 1.45;
  }

  body[data-page="business-cards"] .selected-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  body[data-page="business-cards"] .selected-price strong {
    font-size: clamp(2.15rem, 11vw, 2.9rem);
    line-height: 1;
    white-space: normal;
  }

  body[data-page="business-cards"] .purchase-actions {
    grid-template-columns: 1fr;
  }

  body[data-page="business-cards"] .purchase-actions .button {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 760px) {
  body[data-page="business-cards"] .product-page-tabs {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  body[data-page="business-cards"] .business-card-quantity-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body[data-page="business-cards"] .business-card-stock-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="business-cards"] .business-premium-band {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr) auto;
  }
}

@media (min-width: 1100px) {
body[data-page="business-cards"] .product-config {
    grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  }
}

/* Custom graphics / custom projects page */
body[data-page="custom-projects"] .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid #d8dee8;
}

.custom-steps {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.custom-projects-lead {
  padding-top: 52px;
}

.custom-project-hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  margin-bottom: 50px;
}

.custom-project-hero-copy h1 {
  max-width: 680px;
  color: #005aa6;
  letter-spacing: .14em;
  line-height: 1.02;
  font-size: clamp(2.45rem, 6.4vw, 4.85rem);
}

.custom-project-hero-text {
  display: grid;
  gap: clamp(22px, 4vw, 42px);
}

.custom-project-intro {
  display: grid;
  gap: 18px;
  max-width: 620px;
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  line-height: 1.55;
}

.custom-project-intro p {
  margin: 0;
}

.custom-project-hero-image {
  margin: 0;
  background: #fff;
}

.custom-project-hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--miq-line);
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(16, 36, 58, .1);
}

.custom-counts-header {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  border-top: 1px solid var(--miq-line);
  padding-top: 24px;
}

.custom-counts-header h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
}

.custom-counts-header p {
  max-width: 820px;
  margin: 0;
  color: var(--miq-muted);
  font-size: 1.04rem;
}

.custom-project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.custom-project-grid article {
  background: #e5f1fa;
  border: 1px solid #b8cbda;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(16, 36, 58, .04);
  padding: clamp(20px, 3vw, 32px);
}

.custom-project-grid h3,
.custom-project-grid p,
.custom-project-grid ul {
  padding-left: 0;
  padding-right: 0;
}

.custom-project-grid h3 {
  margin: 0 0 24px;
  color: #005aa6;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  letter-spacing: .18em;
  line-height: 1.15;
  text-transform: uppercase;
  text-align: center;
}

.custom-project-grid p {
  margin: 0 0 18px;
  color: #111827;
  line-height: 1.45;
}

.custom-project-grid ul {
  margin: -6px 0 22px;
  padding-left: 21px;
  line-height: 1.38;
}

.custom-project-grid li + li {
  margin-top: 3px;
}

.custom-project-live-grid article:nth-child(3),
.custom-project-live-grid article:nth-child(6) {
  align-self: start;
}

.custom-steps {
  counter-reset: custom-step;
  display: grid;
  gap: 10px;
}

.custom-steps li {
  counter-increment: custom-step;
  display: grid;
  gap: 4px;
  padding: 14px 0 14px 44px;
  position: relative;
  border-top: 1px solid var(--miq-line);
}

.custom-steps li::before {
  content: counter(custom-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--miq-blue);
  font-weight: 800;
  letter-spacing: .08em;
}

.custom-steps b {
  color: var(--miq-ink);
}

.custom-steps span {
  color: var(--miq-muted);
}

@media (min-width: 760px) {
  .custom-project-hero-copy {
    grid-template-columns: minmax(0, .84fr) minmax(380px, .78fr);
    gap: 58px;
  }

  .custom-counts-header {
    grid-template-columns: minmax(0, .78fr) minmax(360px, .75fr);
    gap: 48px;
    align-items: start;
  }

  .custom-project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }
}

@media (max-width: 700px) {
  body[data-page="custom-projects"] .section.container {
    width: auto;
    max-width: calc(100vw - 28px);
    margin-left: 14px;
    margin-right: 14px;
  }
}

/* Current homepage direction: two-column retail hero, no side collage artwork. */
body[data-page="home"] .gp-hero-two-column {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: start;
  justify-content: start;
  min-height: 0;
  padding: clamp(4px, .8vw, 10px) max(24px, calc((100vw - 1240px) / 2)) clamp(4px, .8vw, 10px);
}

body[data-page="home"] .gp-hero-two-column .gp-hero-center {
  justify-items: start;
  text-align: left;
}

body[data-page="home"] .gp-hero-two-column h1 {
  max-width: 720px;
  margin-bottom: 8px;
  font-size: clamp(2.9rem, 5.55vw, 5.05rem);
  line-height: .9;
}

body[data-page="home"] .gp-hero-two-column .headline-logo-wrap img {
  margin-inline: 0;
}

body[data-page="home"] .gp-hero-two-column .gp-hero-actions {
  justify-content: flex-start;
  margin: 10px 0 6px;
}

.gp-hero-descriptor {
  align-self: start;
  max-width: 560px;
  margin-top: clamp(34px, 5vw, 62px);
  padding: clamp(12px, 1.7vw, 18px) 0 clamp(12px, 2vw, 22px) clamp(24px, 4vw, 46px);
  border-left: 1px solid #cbd8e6;
}

body[data-page="home"] .gp-hero-descriptor .hero-subhead {
  max-width: 52ch;
  margin: 0 0 18px;
  color: #1f2a3a;
  font-size: clamp(1.12rem, 1.45vw, 1.34rem);
  line-height: 1.55;
  letter-spacing: .005em;
}

body[data-page="home"] .gp-hero-descriptor .hero-support {
  max-width: 42ch;
  margin: 0 0 22px;
  color: #07111f;
  font-size: clamp(1.02rem, 1.2vw, 1.16rem);
  font-weight: 650;
}

body[data-page="home"] .gp-hero-two-column .hero-subhead {
  max-width: 68ch;
  margin: 0;
  color: #263244;
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
  line-height: 1.34;
}

body[data-page="home"] .gp-hero-two-column .hero-support {
  margin: 0;
  color: #07111f;
  font-size: .98rem;
  font-weight: 680;
}

body[data-page="home"] .blue-text-highlight {
  display: inline;
  padding: 0 .12em;
  color: inherit;
  font-weight: 720;
  background: linear-gradient(180deg, transparent 54%, rgba(0, 136, 204, .18) 54% 88%, transparent 88%);
}

body[data-page="home"] .gp-hero-two-column .hero-pill {
  margin-bottom: 4px;
}

body[data-page="postcards"] .photo-warnings p {
  border-color: #f0c05e;
  background: #fff7df;
  color: #3a2c0d;
}

body[data-page="postcards"] .photo-warnings p b {
  display: block;
  margin-bottom: 3px;
  color: #201600;
  font-weight: 760;
}

/* Quote cart, upload, and request workflow pages. */
body[data-page="cart"],
body[data-page="upload"],
body[data-page="quote"] {
  background: #f4f7fb;
}

.workflow-hero {
  padding-top: clamp(42px, 7vw, 78px);
  padding-bottom: clamp(18px, 3vw, 30px);
}

.workflow-hero h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: .92;
}

.workflow-hero p:not(.kicker) {
  max-width: 720px;
  margin: 0;
  color: #334155;
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
}

.quote-workflow-grid {
  display: grid;
  gap: 22px;
  padding-top: 18px;
}

.workflow-panel,
.workflow-form {
  min-width: 0;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--miq-line);
  border-radius: var(--miq-radius-lg);
  background: #ffffff;
  box-shadow: var(--miq-shadow-panel);
}

.workflow-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.workflow-panel-heading h2,
.workflow-form h2,
.workflow-panel h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
}

.workflow-panel-heading a {
  color: var(--miq-blue);
  font-weight: 700;
}

.quote-cart-list {
  display: grid;
  gap: 12px;
}

.quote-cart-item,
.empty-cart {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--miq-line-soft);
  border-radius: var(--miq-radius-md);
  background: #fbfdff;
}

.quote-cart-item h3,
.empty-cart h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.quote-cart-item p,
.empty-cart p,
.workflow-note,
.workflow-list {
  color: #475569;
}

.quote-cart-item p {
  margin: 0 0 6px;
}

.quote-cart-item small {
  color: #64748b;
}

.quote-cart-item-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quote-cart-item-price strong,
.quote-total-row strong {
  color: var(--miq-blue);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.quote-cart-item-price button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #fff;
  color: #1f2937;
  cursor: pointer;
}

.quote-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--miq-line);
  font-weight: 700;
}

.workflow-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: start;
}

.workflow-form label {
  display: grid;
  gap: 7px;
  color: #111827;
  font-weight: 700;
}

.workflow-form input,
.workflow-form select,
.workflow-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #ffffff;
  color: #07111f;
}

.workflow-form textarea {
  min-height: 128px;
  resize: vertical;
}

.workflow-form input[type="file"] {
  min-height: auto;
  padding: 12px;
}

.selected-file-list {
  display: grid;
  gap: 8px;
  margin: -4px 0 4px;
}

.selected-file-row {
  align-items: center;
  border: 1px solid #d7e1ed;
  border-radius: 6px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 9px 10px;
}

.selected-file-name {
  color: #111827;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.selected-file-size {
  color: #536274;
  font-size: 0.88rem;
}

.selected-file-remove {
  align-items: center;
  background: #ffffff;
  border: 1px solid #b9c7d8;
  border-radius: 999px;
  color: #111827;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1rem;
  font-weight: 700;
  height: 30px;
  justify-content: center;
  line-height: 1;
  width: 30px;
}

.selected-file-remove:hover,
.selected-file-remove:focus-visible {
  border-color: var(--miq-blue, #2563eb);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
  outline: none;
}

.selected-file-empty {
  color: #64748b;
  font-size: 0.94rem;
  margin: -2px 0 4px;
}

.quote-contact-panel {
  border-top: 1px solid var(--miq-line-soft, #dbe5f0);
  margin-top: 22px;
  padding-top: 18px;
}

.quote-contact-panel h3 {
  font-size: 1rem;
  margin: 0 0 10px;
}

.quote-contact-panel p {
  margin: 0 0 12px;
}

.has-action-modal {
  overflow: hidden;
}

.site-action-modal[hidden] {
  display: none;
}

.site-action-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: end center;
}

.site-action-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 31, .48);
  backdrop-filter: blur(6px);
}

.site-action-panel {
  position: relative;
  width: min(900px, calc(100vw - 28px));
  max-height: min(92vh, 760px);
  overflow: auto;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -18px 70px rgba(15, 23, 42, .24);
}

.site-action-content {
  padding: clamp(16px, 2.8vw, 28px);
}

.site-action-close {
  position: sticky;
  top: 12px;
  float: right;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 12px 12px 0 0;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .12);
}

.site-action-close:hover,
.site-action-close:focus-visible {
  border-color: var(--miq-blue, #2563eb);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .12), 0 8px 22px rgba(15, 23, 42, .12);
  outline: none;
}

.modal-brand-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 2px 44px 12px 0;
  margin-bottom: 14px;
  border-bottom: 1px solid #e2e8f0;
}

.modal-brand-head img {
  width: min(170px, 48vw);
  height: auto;
}

.modal-brand-head span {
  color: #273244;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: none;
}

.modal-quote-layout {
  display: grid;
  gap: 18px;
}

.live-quote-contact {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 14px;
  border: 1px solid #d7e1ed;
  border-radius: 10px;
  background: #f8fbff;
}

.live-contact-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #07111f;
  text-decoration: none;
}

.live-contact-row svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.live-contact-row span {
  color: #07111f;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.live-quote-form,
.modal-workflow-form {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.live-quote-form h2,
.modal-workflow-form h2 {
  margin: 0 0 4px;
  color: #273244;
  font-size: clamp(1.55rem, 3.6vw, 2.45rem);
  letter-spacing: .01em;
  line-height: 1.05;
  text-transform: none;
}

.live-field-row {
  display: grid;
  gap: 10px;
}

.live-quote-form label,
.modal-workflow-form label {
  display: grid;
  gap: 5px;
  color: #07111f;
  font-size: .82rem;
  font-weight: 500;
}

.live-quote-form input,
.live-quote-form textarea,
.modal-workflow-form input,
.modal-workflow-form textarea,
.modal-workflow-form select {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid #8b98a8;
  border-radius: 0;
  background: #ffffff;
  color: #07111f;
  font: inherit;
}

.live-quote-form textarea,
.modal-workflow-form textarea {
  min-height: 84px;
  resize: vertical;
}

.live-upload-field input[type="file"],
.modal-workflow-form input[type="file"] {
  border: 0;
  padding: 0;
}

.quote-upload-help,
.modal-intro {
  margin: 0;
  color: #536274;
  font-size: .8rem;
  line-height: 1.45;
}

.modal-action-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}

.live-submit-button {
  width: auto;
  min-width: 150px;
  min-height: 40px;
  padding-inline: 26px;
  border-radius: 999px;
}

.modal-workflow-form .button-secondary {
  min-height: 40px;
  border-radius: 0;
}

.modal-upload-form {
  max-width: 720px;
  margin-inline: auto;
}

.modal-workflow-form input[type="file"]::file-selector-button,
.live-quote-form input[type="file"]::file-selector-button {
  margin-right: 10px;
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--miq-blue, #2563eb);
  color: #ffffff;
  cursor: pointer;
  font-weight: 700;
}

.site-action-modal .selected-file-list {
  gap: 6px;
  margin: 0;
}

.site-action-modal .selected-file-row {
  padding: 7px 9px;
}

.site-action-modal .selected-file-empty {
  margin: 0;
  font-size: .82rem;
}

.submission-confirmation-layer {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  padding: 18px;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: auto;
  background: rgba(248, 250, 252, .72);
  backdrop-filter: blur(8px);
}

.site-action-panel > .submission-confirmation-layer {
  position: absolute;
  z-index: 5;
  min-height: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(5px);
}

.submission-confirmation-card {
  width: min(470px, 100%);
  display: grid;
  gap: 12px;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .22);
  color: #273244;
  text-align: left;
}

.submission-confirmation-card h2 {
  margin: 0;
  color: #273244;
  font-size: clamp(1.45rem, 4vw, 2.1rem);
  letter-spacing: .01em;
  line-height: 1.05;
  text-transform: none;
}

.submission-confirmation-card p {
  margin: 0;
}

.submission-confirmation-id {
  color: var(--miq-blue, #2563eb);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.submission-confirmation-card .button {
  width: fit-content;
  min-width: 120px;
  min-height: 40px;
  border-radius: 999px;
}

@media (min-width: 760px) {
  .site-action-modal {
    place-items: center;
  }

  .site-action-panel {
    border-radius: 10px;
    box-shadow: 0 24px 80px rgba(15, 23, 42, .28);
  }

  .modal-quote-layout {
    grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
    align-items: start;
  }

  .live-field-row {
    grid-template-columns: 1fr 1fr;
  }

  .modal-upload-form {
    grid-template-columns: .9fr 1fr;
    max-width: none;
  }

  .modal-upload-form h2,
  .modal-upload-form .modal-intro,
  .modal-upload-form .full-field,
  .modal-upload-form .turnstile-slot,
  .modal-upload-form .form-message {
    grid-column: 1 / -1;
  }
}

.turnstile-slot {
  min-height: 0;
}

.workflow-list {
  margin: 18px 0 0;
  padding-left: 1.1rem;
}

.workflow-list li + li {
  margin-top: 8px;
}

@media (min-width: 820px) {
  .quote-workflow-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
    align-items: start;
  }

  .workflow-form-wide {
    grid-column: span 1;
  }

  .quote-cart-item {
    grid-template-columns: minmax(0, 1fr) minmax(150px, auto);
    align-items: center;
  }

  .quote-cart-item-price {
    display: grid;
    justify-items: end;
  }

  .workflow-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-form h2,
  .workflow-form .full-field,
  .workflow-form button,
  .workflow-form .form-message,
  .workflow-form .turnstile-slot {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  body[data-page="home"] .gp-hero-two-column {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 8px 20px 12px;
  }

  body[data-page="home"] .gp-hero-two-column .gp-hero-center,
  body[data-page="home"] .gp-hero-two-column .gp-hero-actions {
    justify-items: center;
    justify-content: center;
    text-align: center;
  }

  body[data-page="home"] .gp-hero-two-column .headline-logo-wrap img {
    margin-inline: auto;
  }

  .gp-hero-descriptor {
    max-width: 680px;
    margin-top: 8px;
    padding: 22px 0 0;
    border-top: 1px solid #cbd8e6;
    border-left: 0;
    text-align: center;
  }

  body[data-page="home"] .gp-hero-descriptor .hero-subhead,
  body[data-page="home"] .gp-hero-descriptor .hero-support {
    margin-inline: auto;
  }
}

/* Cart and order review flow. */
.mini-cart-host {
  position: relative;
}

.mini-cart-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 60;
  width: min(340px, calc(100vw - 28px));
  display: none;
  gap: 10px;
  padding: 14px;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .18);
}

.mini-cart-popover.is-open {
  display: grid;
}

.mini-cart-heading,
.mini-cart-item b,
.mini-cart-subtotal b {
  font-family: var(--font-display);
  font-weight: 800;
}

.mini-cart-empty,
.mini-cart-more {
  margin: 0;
  color: #536274;
}

.mini-cart-items {
  display: grid;
  gap: 8px;
  max-height: 260px;
  overflow: auto;
}

.mini-cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
}

.mini-cart-item span {
  grid-column: 1 / -1;
  color: #64748b;
  font-size: .82rem;
}

.mini-cart-subtotal {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}

.order-cart-hero {
  padding-bottom: 8px;
}

.order-cart-layout {
  display: grid;
  gap: 22px;
  padding-top: 10px;
}

.order-summary-panel {
  align-self: start;
}

.order-summary-lines {
  display: grid;
  gap: 0;
  margin: 14px 0;
}

.order-summary-lines > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}

.order-summary-total strong {
  color: var(--miq-blue);
  font-size: 1.35rem;
}

.order-submit-form {
  display: grid;
  grid-template-columns: 1fr !important;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.order-submit-form > * {
  grid-column: 1 / -1;
}

.order-cart-card {
  grid-template-columns: 126px minmax(0, 1fr);
  align-items: start;
}

.order-cart-thumb {
  display: grid;
  place-items: center;
  width: 118px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  color: var(--miq-blue);
  background: #f8fbff;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
}

.order-cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.order-cart-thumb .cart-file-badge-img {
  width: 74%;
  height: 74%;
  object-fit: contain;
}

.order-cart-thumb span {
  color: var(--miq-blue);
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
}

.order-cart-main {
  min-width: 0;
}

.order-cart-files {
  display: grid;
  gap: 4px;
  margin-top: 10px;
}

.cart-file-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  max-width: 520px;
  padding: 0;
  color: #526176;
}

.cart-file-line b,
.cart-file-line span {
  display: block;
  overflow-wrap: anywhere;
}

.cart-file-line b {
  color: #07111f;
}

.cart-file-line span {
  flex: 0 0 auto;
  color: #64748b;
  font-size: .88rem;
}

.cart-file-preview {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  max-width: 430px;
  padding: 8px;
  border: 1px solid #d7e1ed;
  border-radius: 8px;
  background: #ffffff;
}

.cart-file-thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #f8fafc;
}

.cart-file-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-file-thumb .cart-file-badge-img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.cart-file-thumb span {
  color: var(--miq-blue);
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.cart-file-preview b,
.cart-file-preview span {
  display: block;
  overflow-wrap: anywhere;
}

.cart-file-preview span {
  color: #64748b;
  font-size: .86rem;
}

.order-cart-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.clear-cart-button,
.order-cart-actions button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #cfd8e3;
  border-radius: 999px;
  background: #ffffff;
  color: #1f2933;
  cursor: pointer;
}

.clear-cart-button {
  justify-self: start;
  margin-top: 12px;
}

.product-cart-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(6px);
}

.product-cart-dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: min(760px, calc(100vh - 28px));
  overflow: auto;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid #d7e1ed;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(15, 23, 42, .26);
}

.product-cart-brand {
  padding-bottom: 14px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 16px;
}

.product-cart-grid {
  display: grid;
  gap: 18px;
}

.product-cart-summary {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
}

.product-cart-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}

.product-cart-preview {
  display: grid;
  gap: 8px;
}

.product-cart-actions,
.cart-added-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-edit-notice {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 12px;
  align-items: center;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid #bfd2ea;
  border-radius: 8px;
  background: #f8fbff;
}

.cart-edit-notice b {
  font-family: var(--font-display);
}

.cart-edit-notice span {
  grid-column: 1;
  color: #536274;
}

.cart-edit-notice button {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 32px;
  height: 32px;
  border: 1px solid #cfd8e3;
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
}

@media (min-width: 860px) {
  .order-cart-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .42fr);
    align-items: start;
  }

  .order-cart-card {
    grid-template-columns: 126px minmax(0, 1fr) minmax(150px, auto);
  }

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

@media (max-width: 640px) {
  .order-cart-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .order-cart-thumb {
    width: 90px;
  }

  .cart-file-line {
    display: grid;
    gap: 1px;
  }

  .product-cart-modal {
    place-items: end center;
    padding: 0;
  }

  .product-cart-dialog {
    width: 100%;
    max-height: 88vh;
    border-radius: 16px 16px 0 0;
  }

  .quote-cart-item-price {
    grid-column: 1 / -1;
    justify-items: stretch;
  }
}

/* Canonical shared header.
   This intentionally sits last so older page-specific header rules cannot
   make product/category pages drift from the landing page header. */
.gp-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 50 !important;
  background: #ffffff !important;
  border: 0 !important;
  box-shadow: 0 1px 0 #e7ebf0 !important;
}

.gp-header .gp-topbar {
  background: #eaf7ff !important;
  border-top: 1px solid #bde3f8 !important;
  border-bottom: 1px solid #bde3f8 !important;
  color: #005f9f !important;
  font-size: .86rem !important;
}

.gp-header .gp-topbar-inner {
  min-height: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.gp-header .gp-topbar-inner span {
  width: 100% !important;
}

.gp-header .gp-mainbar {
  min-height: 104px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 26px !important;
}

.gp-header .gp-brand {
  flex: 0 0 auto !important;
  min-width: 352px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  color: #1f2530 !important;
}

.gp-header .gp-brand img,
body[data-page="home"] .gp-header .gp-brand img,
body:not([data-page="home"]) .gp-header .gp-brand img {
  width: 342px !important;
  max-width: 342px !important;
  max-height: 88px !important;
  height: auto !important;
  padding: 2px 0 !important;
  object-fit: contain !important;
}

.gp-header .gp-brand span {
  display: none !important;
}

.gp-header .site-search {
  flex: 1 1 420px !important;
  max-width: 520px !important;
  min-width: 240px !important;
}

.gp-header .site-search input {
  width: 100% !important;
  min-height: 44px !important;
  border: 1px solid #cbd3df !important;
  border-radius: 999px !important;
  padding: 0 20px !important;
  color: #232832 !important;
  font-weight: 400 !important;
  letter-spacing: .012em !important;
  background: #ffffff !important;
}

.gp-header .gp-header-actions {
  flex: 0 0 auto !important;
  min-width: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 18px !important;
  color: #232832 !important;
  font-size: .82rem !important;
  font-weight: 560 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.gp-header .gp-header-actions a {
  color: inherit !important;
}

.gp-header .cart-count-link,
body:not([data-page="home"]) .gp-header .cart-count-link {
  position: relative !important;
  flex: 0 0 44px !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  justify-self: auto !important;
  grid-column: auto !important;
  padding: 0 !important;
  border-radius: 999px !important;
}

.gp-header .cart-count-link svg {
  width: 21px !important;
  height: 21px !important;
}

.gp-header .cart-count-link b {
  position: absolute !important;
  top: -5px !important;
  right: -5px !important;
}

.gp-header .mobile-cart-link,
body[data-page="home"] .gp-header .mobile-cart-link.cart-count-link,
body:not([data-page="home"]) .gp-header .mobile-cart-link.cart-count-link {
  display: none !important;
}

.gp-header .menu-toggle {
  margin-left: auto !important;
}

.gp-header .gp-nav {
  border-top: 1px solid #eef1f5 !important;
  border-bottom: 1px solid #e1e6ee !important;
  background: #ffffff !important;
}

.gp-header .gp-nav .nav-menu,
body:not([data-page="home"]) .gp-header .gp-nav .nav-menu,
body[data-page="home"] .gp-header .gp-nav .nav-menu {
  width: min(calc(100% - 40px), var(--max)) !important;
  max-width: var(--max) !important;
  min-height: 64px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(16px, 1.55vw, 28px) !important;
  text-align: center !important;
}

.gp-header .gp-nav .nav-menu a,
body:not([data-page="home"]) .gp-header .gp-nav .nav-menu a,
body[data-page="home"] .gp-header .gp-nav .nav-menu a {
  position: relative !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #1f2530 !important;
  font-family: var(--font-display) !important;
  font-size: .82rem !important;
  font-weight: 590 !important;
  letter-spacing: .045em !important;
  line-height: 1.18 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  white-space: normal !important;
}

.gp-header .gp-nav .nav-menu a.nav-stack,
body:not([data-page="home"]) .gp-header .gp-nav .nav-menu a.nav-stack,
body[data-page="home"] .gp-header .gp-nav .nav-menu a.nav-stack {
  flex-direction: column !important;
  gap: 2px !important;
  min-width: 98px !important;
  white-space: nowrap !important;
}

.gp-header .gp-nav .nav-menu a.nav-stack span {
  display: block !important;
}

.gp-header .gp-nav .nav-menu a[aria-current="page"],
.gp-header .gp-nav .nav-menu a.is-active {
  color: var(--miq-blue) !important;
}

.gp-header .gp-nav .nav-menu a[aria-current="page"]::after,
.gp-header .gp-nav .nav-menu a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--miq-blue);
}

.gp-header .gp-nav .nav-menu a:hover {
  color: #1f2530 !important;
  transform: none !important;
}

@media (max-width: 1140px) {
  .gp-header .gp-mainbar {
    gap: 18px !important;
  }

  .gp-header .gp-brand {
    min-width: 310px !important;
  }

  .gp-header .gp-brand img,
  body[data-page="home"] .gp-header .gp-brand img,
  body:not([data-page="home"]) .gp-header .gp-brand img {
    width: 309px !important;
    max-width: 309px !important;
  }

  .gp-header .gp-header-actions {
    gap: 12px !important;
    font-size: .78rem !important;
  }

  .gp-header .gp-nav .nav-menu {
    gap: clamp(11px, 1.1vw, 18px) !important;
  }

  .gp-header .gp-nav .nav-menu a {
    font-size: .77rem !important;
    letter-spacing: .035em !important;
  }

  .gp-header .gp-nav .nav-menu a.nav-stack {
    min-width: 86px !important;
  }
}

@media (max-width: 900px) {
  .gp-header .gp-mainbar {
    min-height: 96px !important;
    position: relative !important;
    justify-content: center !important;
    padding-inline: 76px !important;
  }

  .gp-header .gp-brand {
    min-width: 0 !important;
    margin: 0 auto !important;
    justify-content: center !important;
  }

  .gp-header .gp-brand img,
  body[data-page="home"] .gp-header .gp-brand img,
  body:not([data-page="home"]) .gp-header .gp-brand img {
    width: 230px !important;
    max-width: 64vw !important;
    max-height: 68px !important;
  }

  .gp-header .site-search,
  .gp-header .gp-header-actions {
    display: none !important;
  }

  .gp-header .menu-toggle {
    display: none !important;
  }

  .gp-header .mobile-cart-link.cart-count-link,
  body[data-page="home"] .gp-header .mobile-cart-link.cart-count-link,
  body:not([data-page="home"]) .gp-header .mobile-cart-link.cart-count-link {
    position: absolute !important;
    right: 22px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: inline-flex !important;
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    flex: 0 0 58px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid #232832 !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: #232832 !important;
    box-shadow: 0 8px 22px rgba(17, 24, 39, .08) !important;
  }

  .gp-header .mobile-cart-link svg {
    width: 27px !important;
    height: 27px !important;
  }

  .gp-header .mobile-cart-link b {
    top: -4px !important;
    right: -4px !important;
    min-width: 22px !important;
    height: 22px !important;
    font-size: .72rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .gp-header .gp-nav {
    display: none !important;
  }

  .gp-header .gp-nav .nav-menu,
  body:not([data-page="home"]) .gp-header .gp-nav .nav-menu,
  body[data-page="home"] .gp-header .gp-nav .nav-menu {
    position: absolute !important;
    z-index: 1000 !important;
    left: 14px !important;
    right: 14px !important;
    top: 112px !important;
    width: auto !important;
    max-width: none !important;
    min-height: auto !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 8px 0 !important;
    border: 1px solid #d7e1ed !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    box-shadow: 0 18px 40px rgba(17, 24, 39, .13) !important;
  }

  .gp-header .gp-nav .nav-menu.is-open {
    display: flex !important;
  }

  .gp-header .gp-nav .nav-menu a,
  body:not([data-page="home"]) .gp-header .gp-nav .nav-menu a,
  body[data-page="home"] .gp-header .gp-nav .nav-menu a {
    width: 100% !important;
    min-height: 48px !important;
    padding: 0 16px !important;
    border-bottom: 1px solid #edf0f4 !important;
    max-width: none !important;
    font-size: .86rem !important;
  }

  .gp-header .gp-nav .nav-menu a.nav-stack {
    min-width: 0 !important;
    white-space: normal !important;
  }

  .gp-header .gp-nav .nav-menu a[aria-current="page"]::after,
  .gp-header .gp-nav .nav-menu a.is-active::after {
    display: none !important;
  }
}
