@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --green: #0d7434;
  --green-dark: #075b29;
  --green-deep: #06381f;
  --yellow: #ffb914;
  --yellow-soft: #ffd166;
  --ink: #1f2933;
  --muted: #667085;
  --line: #d7e2dd;
  --line-strong: #bfd0c7;
  --soft: #f4f8f5;
  --card: #ffffff;
  --shadow-sm: 0 10px 24px rgba(16, 24, 39, 0.06);
  --shadow-md: 0 20px 44px rgba(16, 24, 39, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --wrap: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 209, 102, 0.16), transparent 24%),
    linear-gradient(180deg, #fbfdfb 0, #ffffff 180px);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(255, 185, 20, 0.85);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  background: linear-gradient(90deg, var(--green-deep), var(--green));
  color: #fff;
  font-size: 13px;
}

.topbar__inner,
.topbar__inner > div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar__inner {
  justify-content: space-between;
  min-height: 40px;
}

.topbar__inner span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.92;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(191, 208, 199, 0.85);
}

.header-main {
  display: grid;
  grid-template-columns: minmax(220px, 250px) minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 86px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle {
  flex-direction: column;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo strong {
  display: block;
  font-size: 30px;
  line-height: 0.88;
  letter-spacing: -1.6px;
}

.logo small {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.barcode-mark {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--green), #0b8d54);
  box-shadow: 0 14px 26px rgba(13, 116, 52, 0.2);
}

.barcode-mark i {
  display: none;
}

.barcode-mark::before {
  content: "";
  position: absolute;
  inset: 10px 11px 10px 13px;
  border-radius: 12px 14px 14px 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 28%, transparent 28% 38%, rgba(255, 255, 255, 0.98) 38% 50%, transparent 50% 60%, rgba(255, 255, 255, 0.98) 60% 70%, transparent 70% 100%);
}

.barcode-mark::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 8px;
  width: 10px;
  height: 10px;
  border: 2px solid #dffbe8;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}

.logo--footer .barcode-mark {
  box-shadow: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1));
}

.searchbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.searchbar input {
  min-width: 0;
  border: 0;
  padding: 16px 20px;
  background: transparent;
}

.searchbar input:focus,
.searchbar select:focus {
  outline: none;
}

.searchbar select {
  border: 0;
  border-left: 1px solid var(--line);
  padding: 0 16px;
  height: 100%;
  color: #4b5563;
  background: #fff;
}

.searchbar button {
  border: 0;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  color: #fff;
  font-weight: 800;
  padding: 0 24px;
  height: 100%;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.header-actions a {
  display: grid;
  place-items: center;
  min-width: 68px;
  padding: 10px 8px;
  border-radius: 14px;
  color: #18212a;
  font-size: 21px;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.header-actions a:hover {
  transform: translateY(-1px);
  background: rgba(13, 116, 52, 0.06);
}

.header-actions span {
  margin-top: 5px;
  font-size: 11px;
  font-weight: 700;
}

.category-nav {
  border-top: 1px solid rgba(191, 208, 199, 0.7);
  border-bottom: 1px solid rgba(191, 208, 199, 0.7);
  background: rgba(246, 249, 247, 0.94);
}

.nav-scroll {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 48px;
  overflow: auto;
  white-space: nowrap;
  scrollbar-width: none;
  font-size: 14px;
  font-weight: 700;
}

.nav-scroll::-webkit-scrollbar {
  display: none;
}

.nav-scroll a {
  position: relative;
  padding: 2px 0;
}

.nav-scroll a::after {
  content: "⌄";
  margin-left: 5px;
  font-size: 10px;
  color: var(--green);
}

.nav-scroll .deal {
  color: #c98200;
}

.nav-scroll .deal::after {
  content: "";
}

.hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(110deg, #fff 0 37%, #f6faf7 37% 100%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1.2fr) 300px;
  align-items: center;
  gap: 0;
  min-height: 360px;
}

.hero__copy {
  max-width: 530px;
  padding: 48px 24px 48px 0;
}

.eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 12px 0 16px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.hero p {
  margin: 0;
  font-size: 17px;
  color: #46505b;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(13, 116, 52, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(13, 116, 52, 0.22);
}

.btn--outline {
  background: #fff;
  color: var(--green);
  border: 2px solid rgba(13, 116, 52, 0.18);
  box-shadow: none;
}

.btn--yellow {
  background: linear-gradient(180deg, var(--yellow-soft), var(--yellow));
  color: #111;
  box-shadow: 0 12px 24px rgba(255, 185, 20, 0.24);
}

.hero__art {
  position: relative;
  height: 360px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.28), transparent 18%),
    linear-gradient(128deg, transparent 0 20%, #0f7f3b 20% 55%, #eef3ef 55% 100%);
}

.hero__art::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
}

.device {
  position: absolute;
  display: grid;
  place-items: center;
  color: #8dff6b;
  background: #1d2328;
  border-radius: 18px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.24);
  font-size: 52px;
}

.device--printer {
  top: 108px;
  left: 210px;
  width: 250px;
  height: 145px;
  border-radius: 16px;
}

.device--printer span {
  width: 110px;
  height: 58px;
  background: #fff;
  border: 10px solid #ddd;
  box-shadow: inset 0 -20px #eee;
}

.device--scanner {
  top: 60px;
  left: 70px;
  width: 85px;
  height: 220px;
  transform: rotate(-8deg);
}

.device--handheld {
  top: 50px;
  right: 50px;
  width: 80px;
  height: 220px;
  transform: rotate(8deg);
}

.hero__offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  min-height: 360px;
  padding: 28px;
  text-align: center;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, var(--yellow-soft), #ffa90a);
}

.hero__offer span {
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero__offer strong {
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 0.9;
  color: #111;
}

.hero__offer em {
  padding: 12px 18px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-style: normal;
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding-top: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding-right: 10px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip div::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e8f5ed;
  color: var(--green);
  font-weight: 900;
}

.trust-strip b {
  display: block;
  grid-column: 2;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip span {
  grid-column: 2;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 52px 24px;
}

.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
  text-align: center;
  text-transform: uppercase;
}

.section-title span {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.section-title h1,
.section-title h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  letter-spacing: 0.05em;
}

.section-title--white {
  color: #fff;
}

.section-title--white span {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.76), transparent);
}

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

.cat-card,
.product-card,
.review-grid article,
.condition-card,
.trade-card,
.buy-card,
.purchase-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 198px;
  padding: 22px 14px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.cat-card:hover,
.product-card:hover,
.review-grid article:hover,
.solution-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.cat-card:hover {
  border-color: var(--line-strong);
}

.cat-card b {
  line-height: 1.3;
}

.product-illus {
  position: relative;
  width: 100%;
  height: 105px;
  margin: 0 auto 12px;
}

.product-illus.printer::before,
.product-illus.scanner::before,
.product-illus.mobile::before,
.product-illus.labels::before,
.product-illus.ribbons::before,
.product-illus.printhead::before,
.product-illus.parts::before,
.product-illus.software::before,
.product-illus.accessory::before,
.product-illus.dealtag::before {
  content: "";
  position: absolute;
  inset: 12px;
  margin: auto;
  border-radius: 10px;
  background: #d8dde1;
  box-shadow: inset 0 -18px rgba(0, 0, 0, 0.08);
}

.product-illus.printer::before {
  top: 50%;
  left: 50%;
  width: 130px;
  height: 78px;
  transform: translate(-50%, -50%);
  background: linear-gradient(#4b5563, #1f2937);
}

.product-illus.printer::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 84px;
  height: 28px;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: inset 0 0 0 6px #ddd;
}

.product-illus.scanner::before {
  top: 50%;
  left: 50%;
  width: 54px;
  height: 96px;
  border-radius: 28px 28px 10px 10px;
  background: linear-gradient(#111827, #4b5563);
  transform: translate(-50%, -50%) rotate(20deg);
}

.product-illus.mobile::before {
  top: 50%;
  left: 50%;
  width: 70px;
  height: 116px;
  border-radius: 16px;
  transform: translate(-50%, -50%);
  background: #263445;
}

.product-illus.labels::before {
  top: 50%;
  left: 50%;
  width: 120px;
  height: 74px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 35% 50%, #fff 0 19px, #ececec 20px 38px, transparent 39px),
    radial-gradient(circle at 70% 50%, #fff 0 14px, #f4f4f4 15px 31px, transparent 32px);
}

.product-illus.ribbons::before {
  top: 50%;
  left: 50%;
  width: 130px;
  height: 85px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, #111 0 18px, #262626 19px 36px, transparent 37px),
    radial-gradient(circle at 75% 55%, #111 0 20px, #2c2c2c 21px 40px, transparent 41px);
}

.product-illus.printhead::before {
  top: 50%;
  left: 50%;
  width: 135px;
  height: 28px;
  border-radius: 5px;
  transform: translate(-50%, -50%);
  background: #6b7280;
}

.product-illus.parts::before {
  top: 50%;
  left: 50%;
  width: 110px;
  height: 78px;
  border: 10px solid #6b7280;
  transform: translate(-50%, -50%);
  background: linear-gradient(45deg, #cbd5e1, #f8fafc);
}

.product-illus.software::before {
  top: 50%;
  left: 50%;
  width: 90px;
  height: 105px;
  border: 2px solid #9cc1dd;
  transform: translate(-50%, -50%);
  background: #eaf3ff;
}

.product-illus.accessory::before {
  top: 50%;
  left: 50%;
  width: 105px;
  height: 80px;
  border-radius: 30px;
  transform: translate(-50%, -50%);
  background: #111827;
}

.product-illus.dealtag::before {
  top: 50%;
  left: 50%;
  width: 80px;
  height: 105px;
  border-radius: 8px 8px 25px 8px;
  background: var(--yellow);
  transform: translate(-50%, -50%) rotate(18deg);
}

.center {
  margin-top: 30px;
  text-align: center;
}

.solutions {
  padding: 42px 0 50px;
  background:
    radial-gradient(circle at top left, rgba(255, 209, 102, 0.16), transparent 20%),
    linear-gradient(145deg, #687875, #3f4d4a);
}

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

.solution-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
  padding: 20px;
  border-radius: var(--radius-md);
  color: #fff;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.12)),
    linear-gradient(135deg, #c6d1ce, #60706c);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.solution-card b {
  font-size: 20px;
  line-height: 1.08;
}

.solution-card small {
  margin-top: 8px;
  color: #ffe19a;
  line-height: 1.5;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  padding: 18px;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-card h3 {
  margin: 8px 0 4px;
  font-size: 16px;
  line-height: 1.35;
}

.product-card p {
  margin: 0 0 6px;
  min-height: 40px;
  color: var(--muted);
  font-size: 13px;
}

.stars {
  color: #ffb000;
  font-weight: 900;
}

.stars span {
  color: var(--muted);
  font-weight: 500;
}

.product-card b {
  display: block;
  margin: 10px 0 14px;
  color: var(--green);
  font-size: 21px;
}

.product-card a {
  display: block;
  margin-top: auto;
  padding: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  color: #fff;
  text-align: center;
  font-weight: 800;
}

.save {
  position: absolute;
  top: 0;
  left: 0;
  padding: 7px 10px;
  border-radius: 16px 0 14px 0;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 800;
}

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

.review-grid article {
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.review-grid h3 {
  margin-bottom: 8px;
}

.why {
  padding-bottom: 52px;
  text-align: center;
}

.why h2 {
  margin-bottom: 20px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 24px;
  border-top: 2px solid var(--green);
}

.why-grid div {
  display: grid;
  gap: 6px;
  padding: 18px 14px;
  border-radius: var(--radius-md);
  background: rgba(244, 248, 245, 0.82);
}

.why-grid div::before {
  content: "◎";
  color: var(--green);
  font-size: 38px;
}

.newsletter {
  padding: 30px 0;
  background: linear-gradient(120deg, var(--green-deep), var(--green));
  color: #fff;
}

.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.newsletter b {
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
  text-transform: uppercase;
}

.newsletter span {
  opacity: 0.92;
}

.newsletter form {
  display: flex;
  gap: 12px;
}

.newsletter input {
  flex: 1;
  min-width: 0;
  padding: 15px 18px;
  border: 0;
  border-radius: 999px;
}

.newsletter button {
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: #111;
  font-weight: 800;
}

.footer {
  background: #f7faf8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr));
  gap: 30px;
  padding-top: 36px;
  padding-bottom: 30px;
}

.footer h3 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin: 7px 0;
  color: #374151;
  font-size: 14px;
}

.footer .logo {
  margin-bottom: 12px;
}

.footer .logo strong {
  font-size: 24px;
}

.footer .logo small {
  font-size: 12px;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 18px 24px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs {
  padding: 22px 0;
  color: var(--muted);
  font-size: 13px;
}

.pdp-main {
  display: grid;
  grid-template-columns: 84px minmax(320px, 1fr) minmax(0, 1fr) 250px;
  gap: 28px;
  align-items: start;
}

.thumbs {
  display: grid;
  gap: 14px;
}

.thumbs span,
.thumbs button {
  width: 74px;
  height: 86px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fafc;
}

.thumbs span::before {
  content: "";
  display: block;
  width: 54px;
  height: 46px;
  margin: 19px auto;
  border-radius: 6px;
  background: #222;
}

.thumbs .active {
  border: 2px solid var(--green);
}

.pdp-gallery {
  text-align: center;
}

.scanner-large {
  position: relative;
  height: 420px;
}

.paper {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 210px;
  height: 230px;
  transform: translateX(-50%);
  border: 1px solid #ccd7e2;
  background: linear-gradient(#f8fbff, #e8eef6);
  box-shadow: inset 0 40px rgba(255, 255, 255, 0.5);
}

.paper::after {
  content: "";
  position: absolute;
  top: 55px;
  left: 35px;
  right: 35px;
  height: 95px;
  background: repeating-linear-gradient(to bottom, #a6b9c9 0 4px, transparent 5px 13px);
}

.scanner-body {
  position: absolute;
  left: 50%;
  bottom: 56px;
  width: 360px;
  height: 155px;
  transform: translateX(-50%);
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(#20262c, #0d1114);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.22);
}

.scanner-body::after {
  content: "";
  position: absolute;
  left: 60px;
  bottom: -20px;
  width: 240px;
  height: 32px;
  border-radius: 0 0 15px 15px;
  background: #323941;
}

.pdp-gallery p,
.sku,
.finance {
  color: var(--muted);
}

.pdp-info h1 {
  margin: 12px 0;
  font-size: 32px;
  line-height: 1.1;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffe3a2;
  color: #a46100;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.checklist {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.checklist li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}

.price-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
}

.price-line strong {
  color: var(--green);
  font-size: 34px;
}

.price-line em {
  padding: 6px 8px;
  border-radius: 8px;
  background: var(--yellow);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.pdp-actions {
  display: flex;
  gap: 12px;
}

.icon-btn {
  width: 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font-size: 22px;
}

.mini-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 18px;
  color: var(--green);
  font-weight: 700;
}

.purchase-card {
  border-radius: var(--radius-md);
  padding: 22px;
}

.purchase-card strong {
  color: var(--green);
  font-size: 30px;
}

.purchase-card p {
  color: var(--green);
}

.purchase-card ul {
  padding-left: 18px;
  line-height: 1.9;
}

.quote-box {
  margin-top: 18px;
  padding: 16px;
  border-radius: 14px;
  background: #f6f8fb;
}

.quote-box button {
  width: 100%;
  padding: 11px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  font-weight: 800;
}

.pdp-support-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr;
  gap: 24px;
  margin: 44px 0;
}

.condition-card,
.trade-card,
.buy-card {
  border-radius: var(--radius-md);
  padding: 22px;
}

.choice {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 12px 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.choice::before {
  content: "○";
  margin-right: 10px;
}

.choice.active {
  border-color: var(--green);
  box-shadow: 0 0 0 2px #e5f5ea;
}

.choice.active::before {
  content: "◉";
  color: var(--green);
}

.choice small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.choice em {
  font-style: normal;
  font-weight: 800;
}

.included {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.included span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f2f5f4;
  font-size: 13px;
}

.trade-card h2,
.trade-card strong {
  color: var(--green);
}

.trade-card strong {
  display: block;
  margin: 6px 0;
  font-size: 42px;
}

.trade-card button {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--green);
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  font-weight: 800;
}

.trade-card a {
  display: block;
  margin-top: 14px;
  text-decoration: underline;
}

.buy-card div {
  position: relative;
  padding: 8px 0 8px 52px;
}

.buy-card div::before {
  content: "✓";
  position: absolute;
  top: 10px;
  left: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
}

.buy-card p {
  margin: 3px 0 0;
  color: var(--muted);
}

.accordions {
  margin: 26px 0;
}

.accordions details {
  margin-top: -1px;
  border: 1px solid var(--line);
  background: #fff;
}

.accordions details:first-child {
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.accordions details:last-child {
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.accordions summary {
  padding: 18px;
  font-weight: 800;
  cursor: pointer;
}

.accordions p {
  padding: 0 18px 18px;
  color: var(--muted);
}

.popular {
  padding: 20px 0 60px;
}

.popular span {
  display: inline-block;
  margin: 5px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #eef1f2;
  font-size: 13px;
}

.yellow-strip {
  padding: 22px 0;
  background: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
}

.yellow-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.footer--pdp {
  background: var(--green);
  color: #fff;
}

.footer--pdp .yellow-strip {
  color: #111;
}

.footer--pdp .footer-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  background: transparent;
}

.footer--pdp .footer-grid a,
.footer--pdp .footer-grid p {
  color: #eef8f1;
}

.footer--pdp .barcode-mark i {
  background: #fff;
}

.footer--pdp .logo small {
  color: #fff;
}

@media (max-width: 1200px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr) 260px;
  }

  .device--printer {
    left: 150px;
  }
}

@media (max-width: 1050px) {
  .header-main {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .header-actions {
    justify-content: flex-start;
  }

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

  .hero__copy {
    max-width: none;
    padding-right: 0;
  }

  .hero__art,
  .hero__offer {
    min-height: 240px;
    height: 240px;
  }

  .trust-strip,
  .category-grid,
  .solution-grid,
  .product-row,
  .review-grid,
  .why-grid,
  .footer-grid,
  .pdp-main,
  .pdp-support-grid,
  .newsletter__inner {
    grid-template-columns: 1fr 1fr;
  }

  .purchase-card {
    grid-column: 1 / -1;
  }

  .pdp-main {
    gap: 18px;
  }

  .thumbs {
    display: flex;
    grid-column: 1 / -1;
  }

  .topbar__inner {
    flex-wrap: wrap;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .topbar__inner,
  .topbar__inner > div {
    gap: 12px;
  }

  .footer--pdp .footer-grid {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 820px) {
  .wrap {
    padding: 0 18px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .header-main {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .searchbar,
  .header-actions,
  .category-nav {
    display: none;
  }

  .site-header.is-open .searchbar {
    display: grid;
    grid-column: 1 / -1;
    order: 3;
  }

  .site-header.is-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    order: 4;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding-top: 4px;
  }

  .site-header.is-open .header-actions a {
    flex: 1;
    min-width: 0;
    font-size: 19px;
  }

  .site-header.is-open .category-nav {
    display: block;
  }

  .site-header.is-open .nav-scroll {
    display: grid;
    gap: 0;
    height: auto;
    padding: 8px 18px 18px;
    white-space: normal;
  }

  .site-header.is-open .nav-scroll a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-open .nav-scroll a:last-child {
    border-bottom: 0;
  }

  .site-header.is-open .nav-scroll a::after {
    float: right;
  }

  .site-header.is-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .searchbar {
    grid-template-columns: minmax(0, 1fr) auto;
    border-radius: 20px;
  }

  .searchbar select {
    display: none;
  }

  .topbar__inner > div:last-child span:last-child,
  .topbar__inner > div:first-child span:last-child {
    display: none;
  }

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

  .trust-strip div {
    border-right: 0;
    padding-right: 0;
  }

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

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

  .why-grid,
  .review-grid,
  .footer-grid,
  .newsletter__inner,
  .pdp-support-grid {
    grid-template-columns: 1fr;
  }

  .pdp-main {
    grid-template-columns: 1fr;
  }

  .pdp-gallery,
  .pdp-info,
  .purchase-card {
    grid-column: auto;
  }

  .thumbs {
    order: 2;
    overflow: auto;
    padding-bottom: 4px;
  }
}

@media (max-width: 640px) {
  .topbar__inner,
  .topbar__inner > div {
    display: block;
    line-height: 1.8;
  }

  .logo strong {
    font-size: 25px;
  }

  .logo small {
    font-size: 11px;
    letter-spacing: 0.33em;
  }

  .searchbar {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .searchbar button {
    min-height: 48px;
  }

  .nav-scroll {
    gap: 18px;
    height: 44px;
  }

  .section {
    padding: 42px 18px;
  }

  .section-title {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section-title span {
    display: none;
  }

  .hero__grid {
    gap: 14px;
  }

  .hero__copy {
    padding-top: 30px;
    padding-bottom: 8px;
  }

  .hero__buttons .btn {
    width: 100%;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero__art {
    height: 250px;
  }

  .device--scanner {
    left: 26px;
    width: 62px;
    height: 170px;
    font-size: 40px;
  }

  .device--printer {
    left: 50%;
    top: 92px;
    width: 170px;
    height: 108px;
    transform: translateX(-50%);
  }

  .device--printer span {
    width: 82px;
    height: 42px;
  }

  .device--handheld {
    right: 24px;
    width: 60px;
    height: 168px;
    font-size: 40px;
  }

  .hero__offer {
    min-height: 190px;
    height: auto;
    padding: 24px 18px;
  }

  .hero__offer strong {
    font-size: 2.8rem;
  }

  .trust-strip,
  .category-grid,
  .solution-grid,
  .product-row,
  .review-grid,
  .why-grid,
  .footer-grid,
  .pdp-main,
  .pdp-support-grid,
  .newsletter__inner,
  .yellow-strip .wrap {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .product-row,
  .solution-grid {
    gap: 14px;
  }

  .trust-strip {
    gap: 14px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .trust-strip div {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 8px;
    align-items: center;
    padding-right: 0;
  }

  .trust-strip b,
  .trust-strip span {
    grid-column: auto;
  }

  .site-header.is-open .header-actions {
    flex-direction: column;
  }

  .site-header.is-open .header-actions a {
    width: 100%;
  }

  .cat-card,
  .product-card,
  .review-grid article,
  .condition-card,
  .trade-card,
  .buy-card,
  .purchase-card {
    border-radius: 14px;
  }

  .cat-card {
    min-height: 158px;
    padding: 18px 12px;
  }

  .product-illus {
    height: 76px;
    margin-bottom: 8px;
  }

  .copyright {
    display: block;
  }

  .footer--pdp .footer-grid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .pdp-info h1 {
    font-size: 26px;
  }

  .price-line {
    flex-wrap: wrap;
  }

  .scanner-large {
    height: 300px;
  }

  .scanner-body {
    width: 260px;
  }

  .paper {
    width: 160px;
    height: 190px;
  }

  .thumbs span,
  .thumbs button {
    width: 55px;
    height: 60px;
  }

  .pdp-actions,
  .newsletter form {
    flex-direction: column;
  }

  .pdp-actions .btn,
  .pdp-actions .icon-btn,
  .newsletter button {
    width: 100%;
  }
}
