:root {
  --ink: #14161f;
  --muted: #5b6270;
  --line: #dde2ea;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --cyan: #009ee3;
  --magenta: #ec008c;
  --yellow: #ffd200;
  --green: #16a34a;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
}
a { color: inherit; text-decoration: none; }
.topbar {
  display: flex;
  gap: 22px;
  justify-content: flex-end;
  padding: 8px 6vw;
  background: #f0f3f8;
  color: #343a46;
  font-size: 13px;
}
.mainbar {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px 6vw;
  border-bottom: 1px solid var(--line);
}
.brand img { width: 190px; display: block; }
.search { display: flex; border: 2px solid var(--ink); border-radius: 3px; overflow: hidden; }
.search input { flex: 1; border: 0; padding: 13px 15px; font-size: 15px; }
.search button, .button, .panel-form button {
  border: 0;
  background: var(--ink);
  color: white;
  padding: 13px 20px;
  font-weight: 700;
  cursor: pointer;
}
.account-nav { display: flex; gap: 16px; align-items: center; font-weight: 700; }
.cart { background: var(--yellow); padding: 10px 15px; border-radius: 3px; }
.category-nav {
  display: flex;
  gap: 2px;
  padding: 0 6vw;
  background: var(--ink);
  color: white;
  overflow-x: auto;
}
.category-nav a { padding: 14px 18px; white-space: nowrap; }
.category-nav a:hover, .category-nav .active { background: var(--magenta); }
.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 5vw;
  padding: 52px 6vw;
  align-items: center;
  background: linear-gradient(110deg, #fff 0%, #fff 54%, #f1fbff 54%, #fff8d8 100%);
}
.eyebrow { color: var(--magenta); font-weight: 800; text-transform: uppercase; font-size: 13px; }
h1 { font-size: clamp(34px, 5vw, 64px); line-height: 1; margin: 14px 0; letter-spacing: 0; }
h2 { font-size: 28px; margin: 0 0 10px; }
p { color: var(--muted); line-height: 1.6; }
.hero p { font-size: 19px; max-width: 680px; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.button { display: inline-flex; border-radius: 3px; justify-content: center; }
.button.primary { background: var(--magenta); }
.button.secondary { background: var(--ink); }
.hero-panel {
  padding: 22px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 18px 45px rgba(20, 22, 31, .12);
}
.hero-panel img { width: 100%; display: block; }
.ink-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 18px; gap: 10px; }
.ink-grid span { padding: 18px; text-align: center; font-weight: 900; color: white; }
.ink-grid span:nth-child(1) { background: var(--cyan); }
.ink-grid span:nth-child(2) { background: var(--magenta); }
.ink-grid span:nth-child(3) { background: var(--yellow); color: var(--ink); }
.ink-grid span:nth-child(4) { background: #000; }
.feature-strip, .content-band, .form-page, .admin-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 34px 6vw;
}
.feature-strip article, .service-grid article, .contact-card, .panel-form, .admin-table, blockquote {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
  background: white;
}
.feature-strip span { display: block; margin-top: 6px; color: var(--muted); }
.section-head, .page-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  padding: 40px 6vw 18px;
}
.section-head a { color: var(--magenta); font-weight: 800; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0 6vw 44px;
}
.listing { padding-top: 20px; }
.product-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px;
  min-height: 310px;
  display: flex;
  flex-direction: column;
}
.badge { align-self: flex-start; background: #fff3c4; padding: 6px 9px; font-size: 12px; font-weight: 800; border-radius: 3px; }
.product-art {
  height: 92px;
  margin: 16px 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--cyan), var(--magenta) 55%, var(--yellow));
  color: white;
  font-size: 44px;
  font-weight: 900;
  border-radius: 5px;
}
.product-art.has-image {
  background: #f3f8fc;
  padding: 8px;
}
.product-art.has-image img,
.detail-art.has-image img,
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.product-subtitle {
  color: #1d7acb;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
}
.product-card h3 { margin: 0 0 8px; font-size: 20px; }
.price { margin-top: auto; font-weight: 900; font-size: 18px; }
.price.large { font-size: 28px; margin: 18px 0; }
.product-card a { margin-top: 14px; color: var(--magenta); font-weight: 900; }
.content-band { grid-template-columns: 1fr 1fr; background: var(--soft); }
.testimonials, .service-grid { padding: 44px 6vw; }
.testimonial-grid, .service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-detail, .form-page { grid-template-columns: .9fr 1.1fr; }
.product-detail { display: grid; gap: 36px; padding: 54px 6vw; align-items: start; }
.detail-art { min-height: 390px; display: grid; place-items: center; color: white; font-size: 120px; font-weight: 900; background: linear-gradient(135deg, var(--cyan), var(--magenta), var(--yellow)); border-radius: 6px; }
.detail-art.has-image { background: #f3f8fc; padding: 22px; }
.panel-form { display: grid; gap: 14px; }
label { display: grid; gap: 7px; font-weight: 700; }
input, textarea, select { width: 100%; border: 1px solid #c9d0dc; border-radius: 3px; padding: 12px; font: inherit; }
textarea { min-height: 120px; resize: vertical; }
.success { color: var(--green); font-weight: 800; }
.notice { color: var(--magenta); font-weight: 800; }
.contact-card { display: grid; gap: 8px; margin-top: 20px; }
.admin-layout { grid-template-columns: 360px 1fr; align-items: start; }
.admin-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 18px 6vw 30px;
  align-items: start;
}
.admin-list { padding: 10px 6vw 44px; }
.admin-table { display: grid; gap: 10px; }
.admin-table div { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.admin-table span:first-child { display: flex; gap: 12px; align-items: center; }
.admin-table img { width: 46px; height: 46px; object-fit: contain; background: #f3f8fc; border-radius: 4px; }
.admin-table small { display: block; color: var(--muted); }
.footer {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 28px;
  padding: 42px 6vw;
  background: #11131a;
  color: white;
}
.footer p, .footer a { color: #c9ced8; }
.footer a { display: block; margin: 8px 0; }
.newsletter { display: grid; gap: 10px; align-content: start; }

@media (max-width: 920px) {
  .topbar { justify-content: flex-start; overflow-x: auto; }
  .mainbar, .hero, .product-detail, .form-page, .admin-layout, .footer { grid-template-columns: 1fr; }
  .account-nav { justify-content: space-between; }
  .product-grid, .testimonial-grid, .service-grid, .feature-strip, .content-band { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .mainbar { gap: 12px; }
  .brand img { width: 155px; }
  .search { flex-direction: column; }
  .product-grid, .testimonial-grid, .service-grid, .feature-strip, .content-band { grid-template-columns: 1fr; }
  .section-head, .page-title { display: block; }
}

/* PrintRunner-style front page */
body { background: #fff; color: #4b4f56; font-size: 14px; }
.site-header { background: #fff; }
.mainbar {
  grid-template-columns: 142px minmax(280px, 465px) 1fr;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 9px 22px 8px;
  border-bottom: 0;
}
.brand img {
  width: 124px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}
.search {
  border: 1px solid #93bce9;
  border-radius: 4px;
  height: 36px;
}
.search input {
  color: #6f7d8a;
  font-size: 12px;
  padding: 0 12px;
}
.search button {
  width: 42px;
  padding: 0;
  overflow: hidden;
  text-indent: -999px;
  background: #1976c9;
  position: relative;
}
.search button::after {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: 13px;
  top: 9px;
}
.search button::before {
  content: "";
  width: 8px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg);
  position: absolute;
  left: 24px;
  top: 23px;
}
.account-nav {
  justify-content: flex-end;
  gap: 18px;
  color: #263646;
  font-size: 12px;
  font-weight: 500;
}
.cart {
  background: transparent;
  color: #1e7ad0;
  padding: 0;
}
.category-nav {
  justify-content: center;
  gap: 0;
  padding: 0;
  background: #075493;
  height: 42px;
}
.category-nav a {
  min-width: 168px;
  padding: 14px 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}
.category-nav a:hover,
.category-nav .active { background: #07477d; }
.shipping-strip {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #d7ecff;
  color: #5f7181;
  font-size: 12px;
  font-weight: 700;
}
.shipping-strip a {
  color: #3f5261;
  text-decoration: underline;
  font-weight: 500;
}
.home-hero {
  min-height: 274px;
  background: #efc9ad;
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: center;
  overflow: hidden;
}
.hero-text {
  padding-left: max(80px, calc((100vw - 1110px) / 2));
}
.hero-text h1 {
  color: #045492;
  max-width: 440px;
  font-size: 36px;
  line-height: 1.05;
  margin: 0 0 26px;
  font-weight: 900;
}
.hero-text p {
  color: #0862a8;
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 22px;
}
.orange-button {
  display: inline-flex;
  background: #ff9700;
  color: #fff;
  border-radius: 3px;
  min-width: 132px;
  justify-content: center;
  padding: 15px 22px;
  font-weight: 900;
  font-size: 13px;
}
.seasonal-scene {
  min-height: 274px;
  position: relative;
}
.seasonal-scene::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 160px;
  right: 70px;
  top: 10px;
  background: radial-gradient(circle, #a65421 0 38%, transparent 39%);
  opacity: .35;
  filter: blur(16px);
}
.cap-shape {
  position: absolute;
  left: 40px;
  top: 75px;
  width: 150px;
  height: 74px;
  background: #173a60;
  border-radius: 70px 70px 22px 22px;
  box-shadow: 54px 42px 0 -28px #173a60;
}
.label-roll {
  position: absolute;
  left: 195px;
  bottom: 48px;
  width: 96px;
  height: 96px;
  background: #fff;
  border-radius: 50%;
  border: 16px solid #f5f0e8;
  box-shadow: 0 12px 18px rgba(0,0,0,.15);
}
.paper-bag {
  position: absolute;
  right: 285px;
  top: 62px;
  width: 120px;
  height: 150px;
  background: #c7905d;
  color: #664225;
  display: grid;
  place-items: center;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 18px rgba(0,0,0,.14);
}
.paper-bag::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 35px;
  width: 50px;
  height: 36px;
  border: 5px solid #9c6f49;
  border-bottom: 0;
  border-radius: 40px 40px 0 0;
}
.can {
  position: absolute;
  bottom: 38px;
  width: 58px;
  border-radius: 12px;
  background: linear-gradient(90deg, #12385c 0 48%, #ed5d2f 49% 100%);
  box-shadow: 0 9px 14px rgba(0,0,0,.16);
}
.can.tall { height: 108px; right: 210px; }
.can.short { height: 82px; right: 135px; }
.brochure-stack {
  position: absolute;
  right: 25px;
  bottom: 52px;
  width: 128px;
  height: 76px;
  background: repeating-linear-gradient(175deg, #e96932 0 12px, #f6ddbd 12px 24px, #173a60 24px 34px);
  transform: skewY(-8deg);
  box-shadow: 0 14px 18px rgba(0,0,0,.12);
}
.featured-products {
  max-width: 1230px;
  margin: 0 auto;
  padding: 28px 20px 54px;
  text-align: center;
}
.featured-products h2 {
  font-size: 30px;
  color: #202833;
  margin: 0 0 10px;
  font-weight: 700;
}
.featured-intro {
  margin: 0 auto 24px;
  color: #667481;
  font-size: 13px;
}
.front-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.front-product-card {
  height: 224px;
  background: #f3f8fc;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 18px 14px 26px;
  color: #006dcc;
  font-size: 18px;
  font-weight: 900;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.front-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(19, 54, 92, .12);
}
.front-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .38);
  opacity: 0;
  transition: opacity .18s ease;
}
.front-product-card:hover::before {
  opacity: 1;
}
.front-product-card em {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  min-width: 158px;
  padding: 14px 20px;
  background: #ff9700;
  color: white;
  border-radius: 3px;
  font-style: normal;
  font-size: 18px;
  font-weight: 900;
  opacity: 0;
  transition: opacity .18s ease;
}
.front-product-card:hover em {
  opacity: 1;
}
.front-product-card strong {
  position: relative;
  z-index: 1;
  line-height: 1.15;
}
.front-product-card small {
  color: #7b8794;
  font-size: 12px;
  font-weight: 700;
}
.product-visual {
  width: 150px;
  height: 128px;
  position: relative;
  display: block;
  z-index: 1;
}
.product-photo {
  width: 170px;
  height: 128px;
  display: block;
  z-index: 1;
}
.product-visual.blank { opacity: 0; }
.print-disc::before,
.roll::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: conic-gradient(#f16a2e 0 35%, #173a60 35% 58%, #fff 58% 72%, #f16a2e 72%);
  box-shadow: -24px 30px 0 -8px #f16a2e;
}
.fold::before,
.flyer::before,
.poster::before,
.forms::before {
  content: "";
  position: absolute;
  width: 78px;
  height: 96px;
  left: 20px;
  top: 12px;
  background: linear-gradient(145deg, #fff 0 36%, #ef6a2f 37% 60%, #183b62 61%);
  transform: rotate(-8deg);
  box-shadow: 18px 13px 0 #f4e5d5;
}
.cap::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 42px;
  width: 92px;
  height: 52px;
  background: #163a60;
  border-radius: 54px 54px 18px 18px;
  box-shadow: 34px 30px 0 -22px #163a60;
}
.bag::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 28px;
  width: 55px;
  height: 78px;
  background: #d4a36a;
  box-shadow: 48px 0 0 -4px #d9af78;
}
.sleeve::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 22px;
  width: 32px;
  height: 86px;
  border-radius: 12px;
  background: #173a60;
  box-shadow: 44px 0 0 #ef6a2f;
}
.cards::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 38px;
  width: 92px;
  height: 58px;
  background: #173a60;
  transform: rotate(-12deg);
  box-shadow: -14px 20px 0 #ff8c26;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 90px;
  background: #f1f6fa;
  padding: 65px max(90px, calc((100vw - 950px) / 2));
}
.trust-strip article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: center;
}
.trust-icon {
  width: 58px;
  height: 58px;
  border: 4px solid #333941;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #1976c9;
  font-size: 30px;
  font-weight: 900;
  position: relative;
}
.trust-icon::before {
  content: "";
  width: 18px;
  height: 29px;
  border-right: 5px solid #1976c9;
  border-bottom: 5px solid #1976c9;
  transform: rotate(40deg);
  margin-top: -8px;
}
.trust-icon.document {
  border-radius: 4px;
}
.trust-icon.medal {
  border-radius: 50% 50% 44% 44%;
}
.trust-strip h3 {
  margin: 0 0 6px;
  font-size: 14px;
  color: #4c4f55;
}
.trust-strip p { margin: 0; font-size: 12px; line-height: 1.25; color: #606a73; }
.brand-copy {
  max-width: 1110px;
  margin: 0 auto;
  padding: 72px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
}
.brand-copy h2 {
  color: #4f4f54;
  font-size: 28px;
  margin: 0 0 16px;
}
.brand-copy p {
  font-size: 13px;
  color: #5f6368;
  line-height: 1.45;
  margin: 0 0 22px;
}
.review-heading {
  min-height: 430px;
  display: block;
  padding: 58px 20px 70px;
  background: #f1f6fa;
  text-align: center;
}
.review-heading h2 {
  color: #4f4f54;
  font-size: 26px;
  margin: 0;
}
.brand-logos {
  width: min(1100px, calc(100vw - 40px));
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px 56px;
  align-items: center;
  justify-items: center;
  color: #1e7fd0;
}
.brand-logos span {
  min-height: 76px;
  width: 100%;
  display: grid;
  place-items: center;
  color: #1f7fd0;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  line-height: 1.05;
  filter: saturate(.9);
  opacity: .96;
}
.logo-google { font-size: 31px; font-weight: 500; font-family: Arial, sans-serif; }
.logo-amazon { font-size: 32px; font-weight: 800; border-bottom: 4px solid #1f7fd0; border-radius: 0 0 50% 50%; }
.logo-kaiser { font-size: 18px; text-transform: uppercase; }
.logo-square { font-size: 30px; font-weight: 400; }
.logo-square::before {
  content: "";
  width: 34px;
  height: 34px;
  border: 9px solid #1f7fd0;
  border-radius: 8px;
  margin-bottom: 6px;
}
.logo-coit { font-size: 36px; font-weight: 900; }
.logo-notary { font-size: 15px; text-transform: uppercase; }
.logo-bucees { font-size: 18px; font-family: Georgia, serif; font-weight: 700; }
.logo-kw { font-size: 18px; font-weight: 500; }
.logo-aramark { font-size: 20px; font-style: italic; }
.brand-logos span:nth-child(n+6) {
  min-height: 58px;
}
.category-flow {
  padding-top: 34px;
  min-height: 420px;
}
.category-landing {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 22px 18px;
}
.breadcrumb {
  color: #708090;
  font-size: 13px;
  margin-bottom: 16px;
}
.breadcrumb a {
  color: #1976c9;
  font-weight: 700;
}
.category-landing h1 {
  font-size: 34px;
  line-height: 1.1;
  margin: 0 0 10px;
  color: #202833;
}
.category-landing p {
  max-width: 780px;
  font-size: 15px;
  margin: 0;
}
.category-options {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 22px 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.option-card {
  min-height: 178px;
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 18px;
  align-items: center;
  background: #f3f8fc;
  border: 1px solid #e4edf5;
  padding: 18px;
  color: #253140;
  transition: box-shadow .18s ease, transform .18s ease;
}
.option-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(20, 44, 70, .12);
}
.option-image {
  height: 130px;
  display: grid;
  place-items: center;
}
.option-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.option-copy {
  display: grid;
  gap: 8px;
}
.option-copy strong {
  color: #006dcc;
  font-size: 18px;
  line-height: 1.15;
}
.option-copy small {
  display: block;
  color: #3f4d5b;
  font-size: 13px;
  line-height: 1.25;
  padding-left: 14px;
  position: relative;
}
.option-copy small::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1976c9;
  position: absolute;
  left: 0;
  top: 6px;
}
.category-content {
  border-top: 1px solid #e3e8ef;
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 42px 22px;
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 58px;
}
.category-content h2 {
  font-size: 30px;
  color: #252c36;
  margin-bottom: 16px;
}
.category-content h3 {
  font-size: 22px;
  margin: 28px 0 12px;
  color: #252c36;
}
.category-content p,
.category-content li {
  color: #394656;
  font-size: 15px;
  line-height: 1.55;
}
.category-content aside {
  background: #f3f8fc;
  border: 1px solid #e4edf5;
  padding: 24px;
  align-self: start;
}
.category-content ul {
  margin: 0 0 22px;
  padding-left: 20px;
}
.category-faq {
  max-width: 1180px;
  margin: 0 auto 54px;
  padding: 0 22px;
}
.category-faq h2 {
  font-size: 26px;
  margin-bottom: 16px;
}
.category-faq details {
  border-top: 1px solid #dce4ed;
  padding: 16px 0;
}
.category-faq summary {
  cursor: pointer;
  color: #202833;
  font-weight: 800;
  font-size: 16px;
}
.category-faq p {
  max-width: 850px;
  margin: 12px 0 0;
}
.product-config-page {
  max-width: 1260px;
  margin: 0 auto;
  padding: 28px 22px 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 570px;
  gap: 40px;
  align-items: start;
}
.product-left .breadcrumb {
  margin-bottom: 8px;
}
.product-left h1 {
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 10px;
  color: #252a32;
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.orange-stars {
  color: #ff8a00;
  font-size: 25px;
  letter-spacing: 1px;
  line-height: 1;
}
.rating-row a {
  color: #1976c9;
  font-size: 14px;
}
.product-gallery-main {
  min-height: 290px;
  background: #f3f8fc;
  position: relative;
  padding: 24px;
}
.gallery-slide {
  display: none;
  min-height: 242px;
  place-items: center;
}
.gallery-slide.active {
  display: grid;
}
.product-gallery-main img {
  width: 100%;
  height: 290px;
  object-fit: contain;
}
.size-preview {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: end;
  gap: 24px;
  position: relative;
  padding: 36px 30px 10px;
}
.size-preview h3 {
  position: absolute;
  left: 20px;
  top: 0;
  color: #2d719e;
  font-size: 18px;
}
.size-preview span {
  flex: 1;
  display: grid;
  place-items: end center;
  background: white;
  border: 1px solid #edf1f5;
  color: #2d719e;
  font-size: 12px;
  font-weight: 800;
  padding-bottom: 8px;
  box-shadow: 0 4px 12px rgba(25, 45, 70, .06);
}
.thumb-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 16px 0 28px;
}
.thumb-row button {
  border: 0;
  background: transparent;
  color: #1976c9;
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
}
.thumb-row .gallery-thumb {
  width: 98px;
  height: 54px;
  display: grid;
  place-items: center;
  background: #eef5fb;
  border: 1px solid #e3edf6;
  padding: 0;
}
.thumb-row .gallery-thumb.active {
  border: 2px solid #ff9700;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
.gallery-thumb span {
  display: block;
  width: 74px;
  height: 34px;
  position: relative;
}
.thumb-size::before {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 0;
  width: 14px;
  height: 24px;
  background: white;
  box-shadow: 18px -4px 0 white, 38px -10px 0 white, 58px -16px 0 white;
}
.thumb-paper::before {
  content: "";
  position: absolute;
  width: 56px;
  height: 32px;
  left: 8px;
  top: 2px;
  background: linear-gradient(135deg, #fff 0 45%, #dce7f2 46%);
  box-shadow: 9px 6px 0 #c9d9e9;
}
.thumb-fold::before {
  content: "";
  position: absolute;
  inset: 4px 8px;
  background: repeating-linear-gradient(90deg, white 0 14px, #dce7f2 14px 16px);
  transform: skewY(-8deg);
}
.paper-preview,
.fold-preview {
  width: 100%;
  min-height: 240px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: center;
  padding: 36px 24px 20px;
  position: relative;
}
.paper-preview h3,
.fold-preview h3 {
  position: absolute;
  left: 20px;
  top: 0;
  color: #2d719e;
  font-size: 18px;
}
.paper-preview span,
.fold-preview span {
  height: 128px;
  background: white;
  border: 1px solid #edf1f5;
  box-shadow: 0 4px 12px rgba(25, 45, 70, .06);
  display: grid;
  place-items: end center;
  color: #2d719e;
  font-size: 12px;
  font-weight: 800;
  padding-bottom: 12px;
}
.fold-preview span {
  background: repeating-linear-gradient(90deg, #fff 0 34px, #edf4fa 34px 37px);
}
.product-summary p {
  color: #202833;
  font-size: 15px;
  margin-bottom: 10px;
}
.product-summary ul {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
}
.product-summary li {
  color: #1d2c3d;
  font-size: 15px;
  margin: 8px 0;
  padding-left: 24px;
  position: relative;
}
.product-summary li::before {
  content: "";
  width: 8px;
  height: 14px;
  border-right: 2px solid #1976c9;
  border-bottom: 2px solid #1976c9;
  transform: rotate(42deg);
  position: absolute;
  left: 4px;
  top: 1px;
}
.product-features h2 {
  font-size: 18px;
  margin-bottom: 16px;
}
.product-features div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  color: #7d8793;
  text-align: center;
  font-size: 12px;
}
.product-features span::before {
  content: "";
  width: 54px;
  height: 54px;
  display: block;
  margin: 0 auto 8px;
  border: 3px solid #b5bdc7;
  border-radius: 50%;
}
.config-panel {
  border: 1px solid #d5dae1;
  background: white;
}
.config-panel header {
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e8ebef;
  padding: 0 16px;
}
.config-panel h2 {
  margin: 0;
  font-size: 24px;
  color: #252a32;
}
.config-panel header strong {
  font-size: 31px;
  color: #252a32;
}
.config-panel form label {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  border-bottom: 1px solid #d9dde3;
  min-height: 41px;
  padding: 0 16px;
  font-weight: 800;
}
.config-panel form label span {
  color: #1f2630;
}
.config-panel select {
  border: 0;
  background: white;
  color: #1f2630;
  text-align: right;
  padding: 8px 0;
}
.cost-row {
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  padding: 24px 16px 12px;
}
.cost-row span {
  color: #9ca1a8;
  font-size: 24px;
  font-weight: 700;
}
.cost-row strong {
  font-size: 31px;
  color: #252a32;
}
.cost-row small {
  grid-column: 2;
  color: #7b838d;
  margin-top: -22px;
}
.continue-label {
  text-align: center;
  color: #111820;
  font-weight: 900;
  margin: 0 0 20px;
}
.continue-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 14px 24px;
}
.upload-btn {
  min-height: 45px;
  border: 0;
  border-radius: 4px;
  background: #ff9700;
  color: white;
  font-weight: 900;
  font-size: 14px;
}
.shipping-estimate {
  display: grid;
  grid-template-columns: 140px 1fr 100px;
  align-items: center;
  gap: 0;
  border-top: 1px solid #d9dde3;
  padding: 20px 14px;
}
.shipping-estimate input {
  height: 40px;
  border-radius: 3px 0 0 3px;
}
.shipping-estimate button {
  height: 40px;
  border: 0;
  background: #e5e9ef;
  color: #075493;
  font-weight: 900;
}
.later-note {
  text-align: center;
  font-size: 14px;
  margin: 18px;
}
.later-note a {
  color: #1976c9;
}
.auth-page {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 48px 20px;
  background: #f3f8fc;
}
.auth-card {
  width: min(440px, 100%);
  display: grid;
  gap: 15px;
  background: white;
  border: 1px solid #dce5ee;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 18px 44px rgba(22, 48, 78, .1);
}
.auth-card h1 {
  font-size: 30px;
  margin: 0 0 4px;
  text-align: center;
}
.auth-card p {
  text-align: center;
  margin: 0;
}
.auth-card a {
  color: #1976c9;
  font-weight: 800;
}
.account-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 46px 22px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 22px;
}
.account-card {
  background: white;
  border: 1px solid #dce5ee;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(22, 48, 78, .06);
}
.account-card:first-child {
  grid-row: span 2;
}
.account-card h1 {
  font-size: 30px;
  margin: 0 0 18px;
}
.account-card h2 {
  font-size: 22px;
  margin: 0 0 16px;
}
.review-cards {
  max-width: 1110px;
  margin: 76px auto 84px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 0 20px;
}
.review-cards blockquote {
  min-height: 260px;
  border-radius: 0;
  padding: 46px 42px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.review-cards h3 { margin: 0 0 18px; color: #2d333b; font-size: 18px; line-height: 1.15; }
.review-cards p { font-size: 14px; line-height: 1.5; margin: 0 0 28px; color: #1d2a3b; }
.review-cards cite { display: block; font-style: normal; font-weight: 900; font-size: 13px; color: #333; }
.stars {
  display: block;
  margin-top: 12px;
  color: #1976c9;
  letter-spacing: 4px;
}
.stars::before { content: "*****"; }
.chat-bubble {
  position: fixed;
  right: 16px;
  bottom: 150px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #3b82ff;
  color: white;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(59, 130, 255, .3);
}
.footer {
  grid-template-columns: 1fr 1fr 1fr 1.35fr;
  gap: 68px;
  padding: 42px max(70px, calc((100vw - 1110px) / 2)) 70px;
  background: #e8eef4;
  color: #4b5057;
}
.footer h4 {
  color: #4c5057;
  margin: 0 0 18px;
  font-size: 14px;
}
.footer a,
.footer p,
.footer small {
  color: #5f6872;
  font-size: 12px;
}
.newsletter input {
  height: 32px;
  border: 1px solid #cbd5df;
  background: white;
  font-size: 12px;
}
.newsletter button {
  height: 32px;
  border: 0;
  border-radius: 3px;
  background: #1976c9;
  color: white;
  font-size: 11px;
  font-weight: 900;
}
.socials {
  display: flex;
  gap: 28px;
  color: #1976c9;
  font-weight: 900;
  margin-bottom: 24px;
}

@media (max-width: 960px) {
  .mainbar,
  .home-hero,
  .brand-copy,
  .footer { grid-template-columns: 1fr; }
  .product-config-page { grid-template-columns: 1fr; }
  .account-nav { justify-content: flex-start; flex-wrap: wrap; }
  .hero-text { padding: 36px 24px 10px; }
  .front-product-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-logos { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .trust-strip,
  .review-cards,
  .admin-panels { grid-template-columns: 1fr; gap: 22px; }
  .seasonal-scene { min-height: 260px; }
}

@media (max-width: 620px) {
  .front-product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .front-product-card { height: 190px; font-size: 15px; }
  .front-product-card em { min-width: 120px; font-size: 14px; padding: 11px 14px; }
  .product-photo,
  .product-visual { width: 120px; height: 108px; }
  .brand-logos { grid-template-columns: repeat(2, 1fr); }
  .review-heading { padding-top: 42px; }
  .category-nav { justify-content: flex-start; }
  .category-nav a { min-width: 145px; }
  .hero-text h1 { font-size: 30px; }
  .brand-copy { gap: 28px; padding: 46px 20px; }
  .config-panel form label,
  .shipping-estimate,
  .continue-actions,
  .product-features div { grid-template-columns: 1fr; gap: 10px; }
  .config-panel select { text-align: left; }
  .cost-row { grid-template-columns: 1fr; }
  .cost-row small { grid-column: auto; margin-top: 0; }
  .size-preview { gap: 8px; padding-left: 8px; padding-right: 8px; }
}

/* Admin panel */
.login-body,
.admin-body {
  background: #f3f6fb;
  color: #202633;
}
.login-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
}
.login-card {
  width: min(420px, calc(100vw - 32px));
  background: white;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 22px 55px rgba(21, 38, 64, .12);
  display: grid;
  gap: 16px;
}
.login-card img {
  width: 190px;
  justify-self: center;
}
.login-card h1 { font-size: 28px; text-align: center; margin: 0; }
.admin-body {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  background: #0d2948;
  color: white;
  padding: 22px 18px;
  position: sticky;
  top: 0;
  height: 100vh;
}
.admin-logo {
  display: block;
  background: white;
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 24px;
}
.admin-logo img { width: 100%; display: block; }
.admin-sidebar nav { display: grid; gap: 8px; }
.admin-sidebar nav a {
  padding: 12px 14px;
  border-radius: 6px;
  color: #eaf4ff;
  font-weight: 700;
}
.admin-sidebar nav a:hover { background: #16436f; }
.admin-main { padding: 26px; }
.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.admin-topbar h1 {
  font-size: 30px;
  margin: 0 0 4px;
  line-height: 1.1;
}
.admin-topbar p { margin: 0; }
.admin-topbar a {
  background: #1976c9;
  color: white;
  padding: 10px 16px;
  border-radius: 5px;
  font-weight: 800;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}
.metric-grid article,
.admin-card {
  background: white;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(19, 39, 67, .05);
}
.metric-grid span {
  display: block;
  color: #697589;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
}
.metric-grid strong {
  display: block;
  color: #0d2948;
  font-size: 34px;
  margin-top: 8px;
}
.admin-card {
  margin-bottom: 18px;
}
.admin-card h2 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #263242;
}
.bar-chart {
  min-height: 230px;
  display: flex;
  align-items: end;
  gap: 18px;
  padding-top: 20px;
}
.bar-chart div {
  flex: 1;
  display: grid;
  gap: 8px;
  justify-items: center;
}
.bar-chart span {
  width: 100%;
  max-width: 64px;
  background: linear-gradient(180deg, #16a4e8, #1976c9);
  border-radius: 6px 6px 0 0;
}
.bar-chart small { text-align: center; color: #697589; font-weight: 800; }
.admin-editor {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 18px;
  align-items: start;
}
.admin-editor.wide { grid-template-columns: 430px 1fr; }
.admin-table-list {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.admin-table-list th {
  text-align: left;
  color: #516071;
  background: #f3f6fb;
  padding: 12px;
}
.admin-table-list td {
  border-bottom: 1px solid #e5ebf2;
  padding: 12px;
  vertical-align: middle;
}
.admin-table-list a {
  color: #1976c9;
  font-weight: 900;
}
.admin-table-list small {
  display: block;
  color: #6c7788;
  margin-top: 4px;
}
.thumb {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: #f3f8fc;
  border-radius: 5px;
  margin-right: 4px;
}
.edit-gallery-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.edit-preview {
  width: 120px;
  height: 90px;
  object-fit: contain;
  background: #f3f8fc;
  border: 1px solid #dfe5ee;
  border-radius: 6px;
}
.admin-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 1100px) {
  .admin-body { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; }
  .admin-sidebar nav { grid-template-columns: repeat(2, 1fr); }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-editor,
  .admin-editor.wide,
  .admin-detail-grid { grid-template-columns: 1fr; }
}

/* Customer auth final design */
body .auth-page {
  min-height: 650px;
  display: grid;
  place-items: center;
  padding: 58px 20px;
  background:
    linear-gradient(120deg, rgba(0, 158, 227, .08), rgba(255, 210, 0, .08)),
    #f4f8fc;
}
body .auth-shell {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: #fff;
  border: 1px solid #dce5ee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(19, 45, 74, .16);
}
body .auth-brand-panel {
  min-height: 470px;
  padding: 42px 34px;
  background: linear-gradient(145deg, #062f57, #0c6eb5);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body .auth-brand-panel img {
  width: 210px;
  background: white;
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 34px;
}
body .auth-brand-panel h2 {
  color: white;
  font-size: 34px;
  line-height: 1.08;
  margin: 0 0 14px;
}
body .auth-brand-panel p {
  color: #d8ecff;
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}
body .auth-card {
  width: 100%;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 48px 54px;
  display: grid;
  align-content: center;
  gap: 16px;
}
body .auth-kicker {
  color: #1976c9;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
body .auth-card h1 {
  color: #202833;
  font-size: 38px;
  line-height: 1.05;
  margin: 0 0 12px;
  text-align: left;
}
body .auth-card label {
  color: #273240;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
}
body .auth-card input,
body .auth-card textarea {
  height: 46px;
  border: 1px solid #cbd7e4;
  border-radius: 5px;
  background: #fff;
  padding: 0 14px;
  font-size: 14px;
}
body .auth-card textarea {
  height: 92px;
  padding-top: 12px;
}
body .auth-card .button {
  min-height: 48px;
  border-radius: 5px;
  background: #ec008c;
  font-size: 15px;
  margin-top: 4px;
}
body .auth-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  margin: 8px 0 0;
}
body .auth-links a {
  color: #1976c9;
  font-weight: 800;
}
body .auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 760px) {
  body .auth-shell,
  body .auth-grid {
    grid-template-columns: 1fr;
  }
  body .auth-brand-panel {
    min-height: auto;
    padding: 28px;
  }
  body .auth-card {
    padding: 32px 24px;
  }
}

/* Kolkata Print navy/orange front theme */
:root {
  --brand-navy: #061a35;
  --brand-navy-2: #09264b;
  --brand-orange: #ff5a14;
  --brand-orange-2: #ff7a00;
  --brand-ice: #f4f8fc;
  --brand-text: #1f2937;
}

body:not(.admin-body) {
  color: var(--brand-text);
  background: #fff;
}

body:not(.admin-body) .site-header {
  background: var(--brand-navy);
  color: #fff;
  box-shadow: 0 4px 18px rgba(6, 26, 53, .16);
}

body:not(.admin-body) .mainbar {
  max-width: 1280px;
  grid-template-columns: 150px minmax(300px, 520px) 1fr;
  padding: 10px 28px;
}

body:not(.admin-body) .brand img {
  width: 138px;
  height: 50px;
}

body:not(.admin-body) .search {
  height: 39px;
  border: 1px solid rgba(255,255,255,.38);
  background: #fff;
}

body:not(.admin-body) .search button,
body:not(.admin-body) .cart,
body:not(.admin-body) .orange-button,
body:not(.admin-body) .button.primary,
body:not(.admin-body) .upload-btn,
body:not(.admin-body) .auth-card .button,
body:not(.admin-body) .newsletter button,
body:not(.admin-body) .shipping-estimate button {
  background: linear-gradient(180deg, var(--brand-orange-2), var(--brand-orange));
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 90, 20, .22);
}

body:not(.admin-body) .account-nav {
  color: #fff;
  gap: 16px;
  font-weight: 800;
}

body:not(.admin-body) .account-nav span {
  color: #fff;
}

body:not(.admin-body) .category-nav {
  background: #031227;
  border-top: 1px solid rgba(255,255,255,.09);
  height: 46px;
}

body:not(.admin-body) .category-nav a {
  color: #fff;
  font-weight: 900;
}

body:not(.admin-body) .category-nav a:hover,
body:not(.admin-body) .category-nav .active {
  background: var(--brand-orange);
}

body:not(.admin-body) .shipping-strip,
body:not(.admin-body) .customers-band {
  background: var(--brand-ice);
}

body:not(.admin-body) .home-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.9) 45%, rgba(255,255,255,.32) 70%),
    radial-gradient(circle at 72% 40%, rgba(255, 90, 20, .18), transparent 35%),
    linear-gradient(110deg, #fff 0%, #f7fbff 45%, #e9eef4 100%);
  border-bottom: 8px solid var(--brand-navy);
}

body:not(.admin-body) .hero-text h1,
body:not(.admin-body) .page-title h1,
body:not(.admin-body) .section-head h2,
body:not(.admin-body) .featured-title,
body:not(.admin-body) .product-config-page h1,
body:not(.admin-body) .auth-card h1 {
  color: var(--brand-navy);
}

body:not(.admin-body) .hero-text p,
body:not(.admin-body) .product-subtitle,
body:not(.admin-body) .section-head a,
body:not(.admin-body) .product-card a,
body:not(.admin-body) .breadcrumb a,
body:not(.admin-body) .rating-row a,
body:not(.admin-body) .auth-links a,
body:not(.admin-body) .auth-kicker {
  color: var(--brand-orange);
}

body:not(.admin-body) .seasonal-scene::before {
  background: radial-gradient(circle, var(--brand-orange) 0 38%, transparent 39%);
}

body:not(.admin-body) .cap-shape {
  background: var(--brand-navy);
  box-shadow: 54px 42px 0 -28px var(--brand-navy);
}

body:not(.admin-body) .feature-strip {
  background: var(--brand-navy);
  color: #fff;
}

body:not(.admin-body) .feature-strip article {
  background: transparent;
  border-color: rgba(255,255,255,.18);
}

body:not(.admin-body) .feature-strip h3,
body:not(.admin-body) .feature-strip span {
  color: #fff;
}

body:not(.admin-body) .service-grid article,
body:not(.admin-body) .product-card,
body:not(.admin-body) .category-card,
body:not(.admin-body) .subcategory-card,
body:not(.admin-body) blockquote,
body:not(.admin-body) .auth-shell {
  border: 1px solid #e5eaf0;
  border-radius: 7px;
  box-shadow: 0 10px 24px rgba(6, 26, 53, .08);
}

body:not(.admin-body) .product-art.has-image,
body:not(.admin-body) .category-card,
body:not(.admin-body) .subcategory-card,
body:not(.admin-body) .product-gallery-main,
body:not(.admin-body) .detail-art.has-image {
  background: #f1f6fb;
}

body:not(.admin-body) .product-art {
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-orange));
}

body:not(.admin-body) .product-card h3,
body:not(.admin-body) .category-card h3,
body:not(.admin-body) .subcategory-card h3 {
  color: var(--brand-navy);
}

body:not(.admin-body) .product-card:hover,
body:not(.admin-body) .category-card:hover,
body:not(.admin-body) .subcategory-card:hover {
  border-color: var(--brand-orange);
  transform: translateY(-2px);
}

body:not(.admin-body) .config-panel header,
body:not(.admin-body) .footer,
body:not(.admin-body) .auth-brand-panel {
  background: var(--brand-navy);
}

body:not(.admin-body) .config-panel header strong,
body:not(.admin-body) .cost-row strong,
body:not(.admin-body) .orange-stars,
body:not(.admin-body) .thumb-row button {
  color: var(--brand-orange);
}

body:not(.admin-body) .thumb-row .gallery-thumb.active {
  border-color: var(--brand-orange);
}
