/* ============================================================
   LithosPOS US — Shop page (single-product showcase)
   Layout inspired by single-product e-commerce detail patterns.
   Depends on: lithospos-tokens.css
   ============================================================ */

.shop {
  background: var(--color-bg);
  line-height: 1.7;
}

/* ---------- Top nav ---------- */

.shop-nav {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
.shop-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-nav .brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.shop-nav .brand-mark .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--color-brand-500);
}
.shop-nav-actions { display: flex; align-items: center; gap: 16px; }
.shop-nav .nav-link {
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}
.shop-nav .nav-link:hover { }

.btn-pill {
  border: 1px solid var(--color-ink-900);
  background: var(--color-ink-900);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 9999px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.btn-pill:hover { background: var(--color-ink-700); border-color: var(--color-ink-700); }
.btn-pill .pill-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-brand-400);
  display: inline-block;
}
.btn-pill-lg { padding: 12px 22px; font-size: 15px; }

/* ---------- Page intro (replaces top tabs) ---------- */

.shop-intro {
  background: var(--color-bg);
  padding: 60px 24px 30px 24px;
  text-align: center;
}
.shop-intro-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 12px;
}
.shop-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.shop-headline {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.022em;
  margin: 0 0 10px;
  line-height: 1.1;
}
.shop-subhead {
  font-size: 16px;
  max-width: 640px;
  margin: auto;
}
.pad-tb-20{
    padding: 20px 0 !important;
}
/* ---------- Divider ---------- */

.shop-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0;
}

/* ---------- Main ---------- */

.shop-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 100px 12px;
}

.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 920px) {
  .shop-grid { grid-template-columns: 1fr; gap: 32px; }
  .shop-main { padding: 24px 16px 60px; }
  .shop-tabs-inner { gap: 28px; }
}

/* ---------- Media (left side) ---------- */

.shop-media { display: flex; flex-direction: column; gap: 14px; }

.media-card {
  background: #F7F8F8;
  border-radius: 16px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.media-card-lg {
  aspect-ratio: 1 / 1;
  min-height: 560px;
}
.media-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--color-success-50);
  border: 1px solid #BFE8CD;
  border-radius: 9999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
}
.media-badge[hidden] { display: none; }
.media-card .hero-shape {
  width: 60%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--color-ink-700), var(--color-ink-900));
  box-shadow: 0 24px 60px rgba(14, 18, 26, 0.18);
  position: relative;
}
.media-card[data-product="terminal"] .hero-shape {
  width: 65%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--color-ink-700) 0% 78%, var(--color-ink-500) 78% 86%, var(--color-ink-800) 86% 100%);
}
.media-card[data-product="terminal"] .hero-shape::before {
  content: '';
  position: absolute;
  inset: 8% 8% 30% 8%;
  background: linear-gradient(135deg, #fff 0%, var(--color-ink-100) 100%);
  border-radius: 6px;
}
.media-card[data-product="kiosk"] .hero-shape {
  width: 38%;
  aspect-ratio: 2 / 5;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, var(--color-ink-800) 0% 55%, var(--color-ink-600) 55% 60%, var(--color-ink-800) 60% 100%);
}
.media-card[data-product="kiosk"] .hero-shape::before {
  content: '';
  position: absolute;
  inset: 6% 8% 44% 8%;
  background: linear-gradient(135deg, #fff 0%, var(--color-ink-100) 100%);
  border-radius: 4px;
}
.media-card[data-product="handheld"] .hero-shape {
  width: 32%;
  aspect-ratio: 1 / 2;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-ink-700), var(--color-ink-900));
}
.media-card[data-product="handheld"] .hero-shape::before {
  content: '';
  position: absolute;
  inset: 8% 8% 14% 8%;
  background: linear-gradient(135deg, #fff 0%, var(--color-ink-100) 100%);
  border-radius: 8px;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.thumb {
  background: #F7F8F8;
  border: 1.5px solid transparent;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur-fast);
  padding: 0;
}
.thumb:hover { border-color: var(--color-border-strong); }
.thumb.is-active { border-color: var(--color-brand-500); }
.thumb .thumb-shape {
  width: 56%;
  aspect-ratio: 4 / 3;
  background: var(--color-ink-700);
  border-radius: 4px;
}

/* ---------- Detail (right side) ---------- */

.shop-detail { padding-top: 4px; }

.detail-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--color-bg-muted);
  padding: 6px 12px;
  border-radius: 9999px;
  margin-bottom: 18px;
}

.product-desc {
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 540px;
}

.includes-block { margin-bottom: 24px; }
.includes-label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
.includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
  row-gap: 10px;
}
.includes-list li {
  position: relative;
  padding-left: 22px;
}
.includes-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--color-success-500);
}
.includes-list li::after {
  content: '';
  position: absolute;
  left: 4px; top: 9px;
  width: 8px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* Rate inline strip */
.rate-inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
  padding: 14px;
  background: #F7F8F8;
  border-radius: 12px;
}
@media (max-width: 540px) {
  .rate-inline { grid-template-columns: 1fr 1fr; }
}
.rate-inline-cell {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 8px;
  border-right: 1px solid var(--color-border);
}
.rate-inline-cell:last-child { border-right: none; }
.rate-inline-cell .lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.rate-inline-cell .val {
  font-size: 16px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* Reassure row */
.reassure-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
  font-size: 13px;
}
.reassure-item { display: inline-flex; align-items: center; gap: 6px; }
.reassure-item .ico {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--color-success-500);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800;
}

/* Price card */
.price-card {
  background: #F7F8F8;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.price-line .price-amount {
  display: block;
  font-size: 17px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.price-line .price-sub {
  font-size: 14px;
}

.btn-customize {
  background: var(--color-brand-500);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
  padding: 12px 22px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.btn-customize:hover { background: var(--color-brand-600); transform: translateY(-1px); }
.btn-customize:active { transform: translateY(0); }
.btn-customize .caret,
.btn-customize .arrow { display: inline-block; transition: transform var(--dur-fast); }
.btn-customize[aria-expanded="true"] .caret { transform: rotate(180deg); }
.btn-customize[aria-expanded="true"] .arrow { transform: translateX(4px); }

/* ---------- Customize inline panel ---------- */

.customize-panel {
  margin-top: 18px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  background: var(--color-bg);
}
.customize-panel[hidden] { display: none; }

.customize-head {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.customize-help {
  font-size: 13px;
  margin: 0 0 16px;
}

.customize-list { display: grid; gap: 6px; margin-bottom: 18px; }

.cz-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--color-bg-muted);
  border: 1px solid transparent;
  transition: border-color var(--dur-fast);
}
.cz-row:hover { border-color: var(--color-border-strong); }
.cz-row .cz-info { min-width: 0; }
.cz-row .cz-title {
  font-weight: 600;
  font-size: 14px;
}
.cz-row .cz-sub {
  font-size: 12.5px;
  margin-top: 1px;
}
.cz-row .cz-badges {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-top: 4px;
}
.cz-badge {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 9999px;
  background: var(--color-bg-subtle);
}
.cz-badge.license { background: var(--color-info-50); }
.cz-badge.pro     { background: var(--color-brand-50); }
.cz-badge.addon   { background: var(--color-success-50); }

.cz-price {
  font-size: 13.5px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.cz-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border-strong);
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-bg);
}
.cz-stepper button {
  width: 36px; height: 36px;
  border: none;
  background: var(--color-bg);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}
.cz-stepper button:hover:not(:disabled) { background: var(--color-brand-50); }
.cz-stepper button:disabled { opacity: 0.35; cursor: not-allowed; }
.cz-stepper input {
  width: 44px; height: 36px;
  border: none;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  background: var(--color-bg);
}
.cz-stepper input:focus { outline: none; }

.customize-impact {
  display: grid; gap: 6px;
  padding: 14px;
  background: var(--color-bg-muted);
  border-radius: 10px;
  border: 1px dashed var(--color-border-strong);
  margin-bottom: 18px;
}
.impact-line {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px;
}
.impact-line .ico {
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}
.impact-line.ok   .ico { background: var(--color-success-50);  }
.impact-line.info .ico { background: var(--color-info-50); }
.impact-line.warn .ico { background: var(--color-warning-50); }

.customize-totalbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 14px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-brand-50), var(--color-bg));
  border: 1px solid var(--color-brand-200);
}
.customize-totalbar .lbl {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.customize-totalbar .amt {
  font-size: 22px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.customize-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.btn-primary-shop {
  background: var(--color-brand-500);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 14px;
  border-radius: 10px;
  padding: 11px 18px;
  cursor: pointer;
  transition: background var(--dur-fast);
}
.btn-primary-shop:hover { background: var(--color-brand-600); }

.btn-ghost-shop {
  background: transparent;
  border: 1px solid var(--color-border-strong);
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  padding: 11px 16px;
  cursor: pointer;
}
.btn-ghost-shop:hover { background: var(--color-bg-muted); }

/* ---------- Lower row ---------- */

.shop-lower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 80px 0 40px;
}
@media (max-width: 920px) {
  .shop-lower { grid-template-columns: 1fr; gap: 32px; padding: 32px 0; }
}

.processing-card .card-head {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 12px;
}
.processing-card h2,
.included-card h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0;
}

.match-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  background: var(--color-success-50);
  border-radius: 9999px;
  padding: 4px 10px;
}
.match-badge .check {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--color-success-500);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700;
}

.card-lede {
  margin: 0 0 22px;
  max-width: 480px;
}

.rate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
@media (max-width: 540px) { .rate-grid { grid-template-columns: 1fr; } }

.rate-cell {
  display: flex; align-items: center; gap: 14px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-bg);
}
.rate-icon {
  width: 40px; height: 40px;
  margin-left: 8px;
  border-radius: 10px;
  background: var(--color-ink-100);
  position: relative;
  flex-shrink: 0;
}
.rate-icon[data-icon="card"]::before {
  content: '';
  position: absolute; inset: 26% 18% 26% 18%;
  background: linear-gradient(180deg, var(--color-ink-700) 0% 28%, var(--color-ink-500) 28% 38%, var(--color-bg) 38% 56%, var(--color-ink-700) 56% 70%);
  border-radius: 3px;
}
.rate-icon[data-icon="wifi"]::before {
  content: '';
  position: absolute; left: 50%; top: 65%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-ink-700);
  box-shadow:
    0 -8px 0 -1px var(--color-ink-700),
    0 -14px 0 -2px var(--color-ink-700);
}

.rate-amount {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4em;
  font-variant-numeric: tabular-nums;
}
.rate-label {
  font-size: 13px;
}

.rate-foot {
  margin: 0;
}
.rate-foot a {
  font-weight: 600;
  text-decoration: none;
}
.rate-foot a:hover {  }

/* Included */
.included-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 14px;
}
.included-list li {
  display: flex; gap: 14px; align-items: flex-start;
}
.included-list li > div { display: flex; flex-direction: column; gap: 2px; }
.included-list li strong {  }
.included-list li span {  }
.included-list li a { text-decoration: none; font-weight: 600; }

.item-ico {
  width: 36px; height: 36px;
  background: var(--color-brand-50);
  border-radius: 9px;
  position: relative;
  flex-shrink: 0;
}
.item-ico::before {
  content: '';
  position: absolute;
  inset: 22%;
  border-radius: 4px;
  background: var(--color-brand-500);
}
.item-ico[data-ico="orders"]::before {
  inset: 22%;
  background: linear-gradient(180deg, var(--color-brand-500) 0% 20%, transparent 20% 30%, var(--color-brand-500) 30% 50%, transparent 50% 60%, var(--color-brand-500) 60% 80%, transparent 80% 90%, var(--color-brand-500) 90% 100%);
}
.item-ico[data-ico="menu"]::before {
  inset: 25% 22%;
  background: linear-gradient(180deg, var(--color-brand-500) 0% 18%, transparent 18% 32%, var(--color-brand-500) 32% 50%, transparent 50% 64%, var(--color-brand-500) 64% 82%, transparent 82% 100%);
}
.item-ico[data-ico="chart"]::before {
  inset: 24% 20% 22% 20%;
  background:
    linear-gradient(to top, var(--color-brand-500) 30%, transparent 30%) 0 100% / 22% 60% no-repeat,
    linear-gradient(to top, var(--color-brand-500) 30%, transparent 30%) 39% 100% / 22% 90% no-repeat,
    linear-gradient(to top, var(--color-brand-500) 30%, transparent 30%) 78% 100% / 22% 40% no-repeat;
}
.item-ico[data-ico="plug"]::before {
  inset: 30% 28%;
  border-radius: 4px 4px 8px 8px;
  background: var(--color-brand-500);
}

/* ---------- Help ---------- */

.shop-help {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 40px 0px;
}
.shop-help h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
}
.shop-help p {
  margin: 0;
  font-size: 14.5px;
}
.shop-help a {
  font-weight: 600;
  text-decoration: none;
}

/* ---------- Footer ---------- */

.shop-foot {
  border-top: 1px solid var(--color-border);
  padding: 24px;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.shop-foot a {
  text-decoration: none;
  margin: 0 4px;
}
.shop-foot a:hover {  }

/* ============================================================
   Inline Customize Section (same-page, expands below hero)
   ============================================================ */

.shop-customize {
  margin-top: 48px;
  padding: 32px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: var(--shadow-1);
  scroll-margin-top: 90px;
}
.shop-customize[hidden] { display: none; }

@media (max-width: 740px) {
  .shop-customize { padding: 22px 18px; margin-top: 32px; border-radius: 14px; }
}

.cz-section-head-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.cz-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.cz-section-head-main h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.cz-help {
  font-size: 14px;
  margin: 0;
  max-width: 540px;
}
.cz-collapse-btn {
  background: var(--color-bg-muted);
  border: 1px solid var(--color-border);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 9999px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--dur-fast);
}
.cz-collapse-btn:hover { background: var(--color-ink-100); }

.cz-body {
  display: grid;
  gap: 24px;
}

.cz-section { margin-bottom: 8px; }
.cz-section .cz-row + .cz-row { margin-top: 8px; }

.cz-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

/* Items inside a section: 2-column grid on wide, 1-column on mobile */
.cz-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 740px) {
  .cz-section-grid { grid-template-columns: 1fr; }
}
.cz-section-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}
.cz-section-count {
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.cz-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  margin-bottom: 6px;
  border-radius: 10px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: border-color var(--dur-fast);
}
.cz-row:hover { border-color: var(--color-border-strong); }
.cz-row.has-qty { background: var(--color-brand-50); border-color: var(--color-brand-200); }
.cz-info .pro{
    height: auto !important;
    width: auto !important;
}
.cz-img {
  width: 56px; height: 56px;
  border-radius: 8px;
  background: var(--color-bg-muted);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.cz-img::before, .cz-img::after { content: ''; position: absolute; }

/* Per-product silhouettes (pure CSS — no external images) */
.cz-img[data-product="terminal"]::before {
  inset: 22% 16% 30% 16%;
  background: linear-gradient(180deg, var(--color-ink-800) 0% 78%, var(--color-ink-500) 78% 86%, var(--color-ink-700) 86% 100%);
  border-radius: 4px;
}
.cz-img[data-product="terminal"]::after {
  inset: 28% 22% 40% 22%;
  background: linear-gradient(135deg, #fff 0%, var(--color-ink-100) 100%);
  border-radius: 2px;
}
.cz-img[data-product="kiosk"]::before {
  inset: 8% 32% 4% 32%;
  background: linear-gradient(180deg, var(--color-ink-800) 0% 58%, var(--color-ink-500) 58% 62%, var(--color-ink-800) 62% 100%);
  border-radius: 4px 4px 2px 2px;
}
.cz-img[data-product="kiosk"]::after {
  inset: 14% 38% 44% 38%;
  background: #fff;
  border-radius: 2px;
}
.cz-img[data-product="selfCheckout"]::before {
  inset: 6% 22% 6% 22%;
  background: linear-gradient(180deg, var(--color-ink-700) 0% 24%, var(--color-ink-500) 24% 28%, var(--color-ink-800) 28% 86%, var(--color-ink-500) 86% 90%, var(--color-ink-700) 90% 100%);
  border-radius: 3px;
}
.cz-img[data-product="selfCheckout"]::after {
  inset: 12% 30% 22% 30%;
  background: #fff;
  border-radius: 2px;
}
.cz-img[data-product="mobileWaiter"]::before {
  inset: 10% 32% 10% 32%;
  background: var(--color-ink-800);
  border-radius: 6px;
}
.cz-img[data-product="mobileWaiter"]::after {
  inset: 16% 38% 24% 38%;
  background: #fff;
  border-radius: 2px;
}
.cz-img[data-product="printer"]::before {
  inset: 24% 16% 18% 16%;
  background: var(--color-ink-700);
  border-radius: 4px;
}
.cz-img[data-product="printer"]::after {
  left: 24%; right: 24%; top: 56%; bottom: 22%;
  background: #fff;
  border-radius: 1px;
}
.cz-img[data-product="kitchenPrint"]::before {
  inset: 18% 16%;
  background: linear-gradient(180deg, var(--color-warning-500) 0% 30%, var(--color-ink-700) 30% 100%);
  border-radius: 4px;
}
.cz-img[data-product="kitchenPrint"]::after {
  left: 28%; right: 28%; top: 56%; bottom: 22%;
  background: #fff;
}
.cz-img[data-product="labelPrinter"]::before {
  inset: 26% 18%;
  background: var(--color-ink-700);
  border-radius: 3px;
}
.cz-img[data-product="labelPrinter"]::after {
  inset: 50% 24% 30% 24%;
  background: linear-gradient(90deg, var(--color-bg-muted) 0% 30%, #fff 30% 70%, var(--color-bg-muted) 70% 100%);
}
.cz-img[data-product="cashDrawer"]::before {
  inset: 36% 12% 18% 12%;
  background: linear-gradient(180deg, var(--color-ink-700) 0% 40%, var(--color-ink-500) 40% 50%, var(--color-ink-800) 50% 100%);
  border-radius: 3px;
}
.cz-img[data-product="cardReader"]::before {
  inset: 18% 32% 14% 32%;
  background: var(--color-ink-800);
  border-radius: 4px;
}
.cz-img[data-product="cardReader"]::after {
  inset: 26% 38% 50% 38%;
  background: #fff;
}
.cz-img[data-product="scanner"]::before {
  inset: 30% 14% 30% 14%;
  background: var(--color-ink-700);
  border-radius: 4px 8px 8px 4px;
  transform: rotate(-12deg);
  transform-origin: center;
}
.cz-img[data-product="scanner"]::after {
  inset: 38% 22% 48% 60%;
  background: var(--color-brand-500);
  border-radius: 2px;
  transform: rotate(-12deg);
}
.cz-img[data-product="kds"]::before {
  inset: 18% 12% 26% 12%;
  background: linear-gradient(180deg, var(--color-ink-800) 0% 78%, var(--color-ink-500) 78% 86%, var(--color-ink-700) 86% 100%);
  border-radius: 4px;
}
.cz-img[data-product="kds"]::after {
  inset: 24% 18% 38% 18%;
  background: linear-gradient(135deg, var(--color-success-500) 0%, var(--color-success-700) 100%);
  border-radius: 2px;
}
.cz-img[data-product="customerDisp"]::before {
  inset: 22% 12% 22% 12%;
  background: var(--color-ink-700);
  border-radius: 4px;
}
.cz-img[data-product="customerDisp"]::after {
  inset: 28% 18% 30% 18%;
  background: #fff;
}
.cz-img[data-product="weighScale"]::before {
  inset: 50% 14% 16% 14%;
  background: linear-gradient(180deg, var(--color-ink-500) 0% 30%, var(--color-ink-700) 30% 100%);
  border-radius: 4px;
}
.cz-img[data-product="weighScale"]::after {
  inset: 24% 28% 50% 28%;
  background: #fff;
  border-radius: 2px;
}

.cz-info { min-width: 0; }
.cz-row .cz-title {
  font-weight: 600;
  font-size: 14.5px;
  margin-bottom: 2px;
}
.cz-row .cz-sub {
  font-size: 12.5px;
}
.cz-row .cz-badges {
  display: flex; gap: 4px; flex-wrap: wrap;
  margin-top: 6px;
}

.cz-actions-cell {
  display: flex; flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.cz-actions-cell .cz-price {
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Inline section foot */
.cz-foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.cz-impact-card {
  margin-bottom: 16px;
  padding: 14px 16px;
  background: var(--color-bg-muted);
  border: 1px dashed var(--color-border-strong);
  border-radius: 10px;
  display: grid; gap: 6px;
}
.cz-impact-card:empty { display: none; }
.cz-impact-card .impact-line {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13.5px;
}

.cz-totalbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-brand-50), var(--color-bg));
  border: 1px solid var(--color-brand-200);
}
.cz-totalbar .cz-total-left {
  display: flex; flex-direction: column;
}
.cz-totalbar .lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.cz-totalbar .amt {
  font-size: 22px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.cz-totalbar .sub {
  font-size: 12px;
  margin-top: 1px;
}
.cz-foot-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}

@media (max-width: 540px) {
  .cz-section-head-main { flex-wrap: wrap; }
  .cz-row { grid-template-columns: 48px 1fr; row-gap: 8px; }
  .cz-actions-cell { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
}






.bpos { background: var(--color-bg); }

/* ---------- Hero ---------- */

.bpos-hero {
  background: #fff;
  padding: 56px 24px 40px;
  border-bottom: 1px solid var(--color-border);
}
.bpos-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 920px) {
  .bpos-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .bpos-hero { padding: 40px 18px 32px; }
}

.bpos-hero-copy .shop-eyebrow { margin-bottom: 14px; }

.bpos-headline {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--color-ink-900);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 16px;
  max-width: 600px;
}
.bpos-subhead {
  color: var(--color-ink-600);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 580px;
}
.bpos-hero-cta {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.bpos-call-link {
  color: var(--color-ink-700);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.bpos-call-link:hover { color: var(--color-brand-700); }

.bpos-hero-visual .media-card-lg {
  min-height: 460px;
  border-radius: 24px;
}

/* ---------- Section nav (sticky scroll-spy) ---------- */

.bpos-section-nav {
  position: sticky;
  top: 72px;  /* below top brand nav */
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.bpos-section-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.bpos-section-nav-inner::-webkit-scrollbar { display: none; }

.bpos-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 9999px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-ink-600);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--dur-fast) var(--ease-standard);
}
.bpos-chip:hover {
  border-color: var(--color-border-strong);
  color: var(--color-ink-900);
}
.bpos-chip.is-active {
  background: var(--color-brand-50);
  border-color: var(--color-brand-300);
  color: var(--color-brand-700);
}
.bpos-chip.is-complete {
  color: var(--color-ink-900);
}
.bpos-chip .n {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--color-ink-100);
  color: var(--color-ink-500);
  font-size: 11px;
  font-weight: 700;
}
.bpos-chip.is-active .n {
  background: var(--color-brand-500);
  color: #fff;
}
.bpos-chip.is-complete .n {
  background: var(--color-success-500);
  color: #fff;
}


.bpos-section table th, table td{
    width: auto;
    min-width: inherit !important;
    border-bottom: inherit;
}
.bpos-section table td:first-child{
    font-size: inherit;
    font-weight: inherit;
}
.bpos-section table td {
    padding: inherit !important;
}



/* ---------- Main layout ---------- */

.bpos-main {
  background: var(--color-bg-muted);
  padding: 48px 0 80px;
  min-height: 60vh;
}
.bpos-layout {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0px 12px;
  display: grid;
  grid-template-columns: 903px 360px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 1099px) {
  .bpos-layout { grid-template-columns: 1fr; }
  .byp-rail {
    position: static;
    margin-top: 24px;
    max-height: none;
  }
}

.bpos-sections {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---------- Each section card ---------- */

.bpos-section {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow-1);
  scroll-margin-top: 140px;
}
@media (max-width: 740px) {
  .bpos-section { padding: 22px 18px; border-radius: 14px; }
}

.bpos-section-head {
  margin-bottom: 30px;
  padding-bottom: 18px;
}
.bpos-section-head .shop-eyebrow { margin-bottom: 8px; }
.bpos-section-head h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-ink-900);
  margin: 0 0 6px;
}
.bpos-section-head p {
  color: var(--color-ink-500);
  font-size: 14.5px;
  margin: 0;
  max-width: 580px;
}

/* Hardware section preset row above the grid */
.bpos-quick-presets {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.bpos-quick-presets .hw-presets-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-ink-500);
}

/* Hardware section uses cz-body styles from shop.css; ensure 2-col grid */
.bpos-section-hardware .cz-body {
  display: grid;
  gap: 22px;
}

/* Right-rail: keep sticky behavior on desktop */
@media (min-width: 1100px) {
  .byp-rail {
    position: sticky;
    top: 156px; /* below brand nav + section nav */
    max-height: calc(100vh - 180px);
  }
}

/* ---------- Final CTA bar (inside Review) ---------- */

#review-cta .byp-cta-bar {
  margin-top: 8px;
}
#review-cta .btn { white-space: nowrap; }

/* Small helper used in volume rate-card scope */
.bpos-section #rate-card { background: var(--color-bg-muted); }

/* Compact hero CTA button to align with .btn-customize from shop.css */
.bpos-hero-cta .btn-customize {
  text-decoration: none;
}






.byp {
  /* page namespace */
  --rail-w: 360px;
}

.byp-top-strip {
  background: var(--color-bg-muted);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-body-sm);
  color: var(--color-ink-600);
}
.byp-top-strip a { color: var(--color-ink-900); font-weight: 600; }

.byp-nav {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  height: 72px;
}
.byp-nav .brand-mark {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.5rem;
  color: var(--color-ink-900);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.byp-nav .brand-mark .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--color-brand-500);
  display: inline-block;
}
.byp-nav .nav-link {
  color: var(--color-ink-700);
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
}
.byp-nav .nav-link:hover { color: var(--color-brand-700); background: var(--color-brand-50); }
.byp-nav .nav-link.active {
  color: var(--color-brand-700);
  background: var(--color-brand-50);
}

.byp-page-header {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-muted) 100%);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-12) 0 var(--space-8);
}
.byp-page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  max-width: 740px;
}
.byp-page-header p.lead {
  font-size: var(--text-body-lg);
  color: var(--color-ink-600);
  max-width: 660px;
  margin-top: var(--space-3);
}

/* ---------- Stepper ---------- */

.byp-stepper {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-4) 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.byp-stepper::-webkit-scrollbar { display: none; }
.byp-step-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-full);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  font-size: var(--text-body-sm);
  font-weight: 500;
  color: var(--color-ink-500);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--dur-fast) var(--ease-standard);
  flex-shrink: 0;
}
.byp-step-pill:hover:not(:disabled) {
  border-color: var(--color-border-strong);
  color: var(--color-ink-700);
}
.byp-step-pill .step-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-ink-100);
  color: var(--color-ink-500);
  font-size: 11px; font-weight: 700;
}
.byp-step-pill.is-active {
  background: var(--color-brand-50);
  color: var(--color-brand-700);
  border-color: var(--color-brand-200);
}
.byp-step-pill.is-active .step-num {
  background: var(--color-brand-500);
  color: #fff;
}
.byp-step-pill.is-complete {
  color: var(--color-ink-900);
}
.byp-step-pill.is-complete .step-num {
  background: var(--color-success-500);
  color: #fff;
}
.byp-step-pill:disabled { cursor: not-allowed; opacity: 0.6; }

/* ---------- Main layout grid ---------- */

.byp-main {
  padding: var(--space-10) 0 var(--space-16);
  background: var(--color-bg-muted);
  min-height: 70vh;
}
.byp-layout {
  display: grid;
  grid-template-columns: 1fr var(--rail-w);
  gap: var(--space-8);
  align-items: start;
}
@media (max-width: 991.98px) {
  .byp-layout { grid-template-columns: 1fr; gap: var(--space-6); }
}

/* ---------- Step panels ---------- */

.byp-step {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-1);
}
.byp-step[hidden] { display: none; }

.byp-step header { margin-bottom: var(--space-6); }
.byp-step header .eyebrow { margin-bottom: var(--space-2); }
.byp-step header h2 {
  font-size: 1.75rem;
  margin-bottom: var(--space-2);
}
.byp-step header p {
  color: var(--color-ink-500);
  margin: 0;
}

.byp-step .form-group { margin-bottom: var(--space-5); }
.byp-step .form-group:last-child { margin-bottom: 0; }

.byp-step-actions {
  display: flex;
  gap: var(--space-3);
  justify-content: space-between;
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}
.byp-step-actions .btn { min-width: 140px; }

/* ---------- Segmented control ---------- */

.byp-segmented {
  display: inline-flex;
  background: var(--color-bg-subtle);
  border-radius: var(--radius-md);
  padding: 4px;
  gap: 4px;
  margin-bottom: 30px;
}
.byp-segmented .seg {
  border: none;
  background: transparent;
  padding: 0.5rem 1.125rem;
  font-weight: 600;
  font-size: var(--text-body-sm);
  color: var(--color-ink-600);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-standard);
}
.byp-segmented .seg.is-active {
  background: var(--color-bg);
  color: var(--color-ink-900);
  box-shadow: var(--shadow-1);
}

/* ---------- Pill picker (current system, payment methods) ---------- */

.byp-pills {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
}
.byp-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border-strong);
  background: var(--color-bg);
  color: var(--color-ink-700);
  font-size: var(--text-body-sm);
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: all var(--dur-fast) var(--ease-standard);
}
.byp-pill:hover { border-color: var(--color-brand-400); }
.byp-pill input { display: none; }
.byp-pill.is-active {
  border-color: var(--color-brand-500);
  background: var(--color-brand-50);
  color: var(--color-brand-700);
}
.byp-pill.is-active::before {
  content: '✓';
  font-weight: 700;
}

/* ---------- Stepper +/- ---------- */

.byp-stepper-input {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  overflow: hidden;
}
.byp-stepper-input button {
  width: 44px; height: 44px;
  border: none;
  background: var(--color-bg);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-ink-700);
  cursor: pointer;
  transition: background var(--dur-fast);
}
.byp-stepper-input button:hover { background: var(--color-brand-50); color: var(--color-brand-700); }
.byp-stepper-input button:disabled { opacity: 0.4; cursor: not-allowed; }
.byp-stepper-input input {
  width: 64px;
  height: 44px;
  border: none;
  text-align: center;
  font-weight: 600;
  font-size: var(--text-body-lg);
  color: var(--color-ink-900);
  background: var(--color-bg);
  font-variant-numeric: tabular-nums;
}
.byp-stepper-input input:focus { outline: none; }

/* ---------- Volume slider + linked input ---------- */

.byp-volume-card {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-brand-50) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.byp-volume-card .vol-row {
  display: flex; align-items: baseline; gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.byp-volume-card .vol-row label { font-weight: 600; color: var(--color-ink-900); }
.byp-volume-card .vol-row .vol-input {
  flex: 1;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-ink-900);
  border: none;
  background: transparent;
  padding: 0;
  font-variant-numeric: tabular-nums;
}
.byp-volume-card .vol-row .vol-input:focus { outline: none; }
.byp-volume-card .vol-row .dollar {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-ink-500);
}

input[type="range"].byp-range {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  background: var(--color-ink-100);
  border-radius: var(--radius-full);
  outline: none;
}
input[type="range"].byp-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--color-brand-500);
  border: 3px solid var(--color-bg);
  box-shadow: var(--shadow-2);
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-standard);
}
input[type="range"].byp-range::-webkit-slider-thumb:hover { transform: scale(1.1); }
input[type="range"].byp-range::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--color-brand-500);
  border: 3px solid var(--color-bg);
  box-shadow: var(--shadow-2);
  cursor: pointer;
}
input[type="range"].byp-range:focus-visible { box-shadow: var(--shadow-focus); }

.byp-range-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-2);
  font-size: var(--text-eyebrow);
  color: var(--color-ink-500);
  font-variant-numeric: tabular-nums;
}

/* ---------- Tier progress bar ---------- */

.byp-tier-progress {
  margin-top: var(--space-5);
  padding: var(--space-4);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.byp-tier-progress .label {
  font-size: var(--text-body-sm);
  color: var(--color-ink-600);
  margin-bottom: var(--space-2);
}
.byp-tier-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  height: 10px;
  border-radius: var(--radius-full);
  overflow: hidden;
}
.byp-tier-bar .seg {
  background: var(--color-ink-100);
  transition: background var(--dur-base) var(--ease-standard);
}
.byp-tier-bar .seg.is-reached {
  background: linear-gradient(90deg, var(--color-brand-400), var(--color-brand-600));
}
.byp-tier-bar .seg.is-current {
  background: var(--color-brand-500);
  box-shadow: 0 0 0 2px rgba(242,91,31,0.25);
}
.byp-tier-progress .note {
  margin-top: var(--space-3);
  font-size: var(--text-body-sm);
  color: var(--color-ink-700);
}
.byp-tier-progress .note strong { color: var(--color-success-700); }



/* ---------- Form controls ---------- */

.bpos-section .form-control,
.bpos-section .form-select {
  border-radius: var(--radius-sm);
  border-color: var(--color-border-strong);
  padding: 0.625rem 0.875rem !important;
  min-height: 44px;
  font-size: var(--text-body);
  color: var(--color-ink-900);
}
.bpos-section .form-control:focus,
.bpos-section .form-select:focus {
  border-color: var(--color-brand-500);
  box-shadow: var(--shadow-focus);
}
.bpos-section .form-label {
  font-weight: 600;
  color: var(--color-ink-900);
  margin-bottom: var(--space-2);
}
.bpos-section .form-text { color: var(--color-ink-500); }




/* ---------- Rate card ---------- */

.byp-rate-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: background var(--dur-base) var(--ease-standard);
}
.byp-rate-card.flash { background: var(--color-brand-50); }
.byp-rate-card .row-line {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-border);
}
.byp-rate-card .row-line:last-of-type { border-bottom: none; }
.byp-rate-card .row-line .k {
  font-size: var(--text-body-sm);
  color: var(--color-ink-600);
}
.byp-rate-card .row-line .v {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--color-ink-900);
}
.byp-rate-card .row-line .v.brand { color: var(--color-brand-700); }
.byp-rate-card .row-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: var(--space-3);
  margin-top: var(--space-3);
  border-top: 2px solid var(--color-ink-200);
}
.byp-rate-card .row-total .k {
  font-weight: 600; color: var(--color-ink-900);
}
.byp-rate-card .row-total .v {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-ink-900);
  font-variant-numeric: tabular-nums;
}

.byp-qualifies {
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background: var(--color-success-50);
  border: 1px solid #BFE8CD;
  border-radius: var(--radius-md);
  color: var(--color-success-700);
  font-weight: 600;
  font-size: var(--text-body-sm);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.byp-qualifies[hidden] { display: none; }

/* ---------- Bundle cards ---------- */

.byp-bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 991.98px) {
  .byp-bundle-grid { grid-template-columns: 1fr; }
}
.byp-bundle {
  position: relative;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-standard);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.byp-bundle:hover {
  border-color: var(--color-brand-300);
  box-shadow: var(--shadow-2);
}
.byp-bundle.is-selected {
  border-color: var(--color-brand-500);
  box-shadow: 0 0 0 4px rgba(242,91,31,0.12), var(--shadow-2);
}
.byp-bundle .badge-recommend {
  position: absolute;
  top: -10px; left: 16px;
  background: var(--color-brand-500);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}
.byp-bundle h3 { font-size: 1.25rem; margin: 0; }
.byp-bundle .bundle-img {
  background: var(--color-bg-muted);
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-ink-400);
  font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.byp-bundle ul {
  list-style: none; padding: 0; margin: 0;
  font-size: var(--text-body-sm);
  color: var(--color-ink-700);
}
.byp-bundle ul li {
  padding: 6px 0;
  display: flex; align-items: center; gap: 8px;
}
.byp-bundle ul li::before {
  content: '✓';
  color: var(--color-success-500);
  font-weight: 700;
}
.byp-bundle .price-chip {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-3);
  background: var(--color-bg-muted);
  border-radius: var(--radius-md);
}
.byp-bundle .price-chip .label {
  font-size: var(--text-body-sm);
  color: var(--color-ink-500);
}
.byp-bundle .price-chip .amount {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-ink-900);
  font-variant-numeric: tabular-nums;
}
.byp-bundle .price-chip .amount.free {
  color: var(--color-success-700);
  font-size: 1.125rem;
}
.byp-bundle .price-chip .amount.free::before {
  content: '✦ ';
}

/* ---------- Plan cards ---------- */

.byp-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
@media (max-width: 991.98px) { .byp-plan-grid { grid-template-columns: 1fr; } }
.byp-plan {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  background: var(--color-bg);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-standard);
  position: relative;
}
.byp-plan.is-selected {
  border-color: var(--color-brand-500);
  box-shadow: 0 0 0 4px rgba(242,91,31,0.12);
}
.byp-plan h3 { font-size: 1.125rem; margin-bottom: 4px; }
.byp-plan .plan-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-ink-900);
  font-variant-numeric: tabular-nums;
}
.byp-plan .plan-price small {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-ink-500);
}
.byp-plan ul {
  margin-top: var(--space-3);
  padding: 0; list-style: none;
  font-size: var(--text-body-sm);
  color: var(--color-ink-700);
}
.byp-plan ul li { padding: 4px 0; display: flex; gap: 8px; }
.byp-plan ul li::before { content: '✓'; color: var(--color-success-500); }

/* ---------- Add-on toggle list ---------- */

.byp-addons { display: grid; gap: var(--space-2); }
.byp-addon {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-4);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--dur-fast);
}
.byp-addon:hover { border-color: var(--color-border-strong); }
.byp-addon .info { display: flex; flex-direction: column; }
.byp-addon .info .title { font-weight: 600; color: var(--color-ink-900); }
.byp-addon .info .desc { font-size: var(--text-body-sm); color: var(--color-ink-500); }
.byp-addon .right { display: flex; align-items: center; gap: var(--space-4); }
.byp-addon .price { font-weight: 700; color: var(--color-ink-900); font-variant-numeric: tabular-nums; }
.byp-addon .price.included { color: var(--color-success-700); font-size: var(--text-body-sm); }

/* Toggle switch */
.byp-switch {
  position: relative;
  display: inline-block;
  width: 44px; height: 24px;
  flex-shrink: 0;
}
.byp-switch input { opacity: 0; width: 0; height: 0; }
.byp-switch .slider {
  position: absolute; cursor: pointer; inset: 0;
  background: var(--color-ink-200);
  border-radius: var(--radius-full);
  transition: background var(--dur-fast) var(--ease-standard);
}
.byp-switch .slider::before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-1);
  transition: transform var(--dur-fast) var(--ease-standard);
}
.byp-switch input:checked + .slider { background: var(--color-brand-500); }
.byp-switch input:checked + .slider::before { transform: translateX(20px); }
.byp-switch input:focus-visible + .slider { box-shadow: var(--shadow-focus); }

/* ---------- Cart rail ---------- */

.byp-rail {
  position: sticky;
  top: 160px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-1);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}
.byp-rail h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-ink-500);
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.byp-rail .biz-line {
  font-size: var(--text-body-sm);
  color: var(--color-ink-600);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}
.byp-rail .rail-section {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
}
.byp-rail .rail-section:last-of-type { border-bottom: none; }
.byp-rail .rail-section .row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 4px;
}
.byp-rail .rail-section .k {
  font-size: var(--text-body-sm);
  color: var(--color-ink-500);
  font-weight: 500;
}
.byp-rail .rail-section .v {
  font-weight: 700;
  color: var(--color-ink-900);
  font-variant-numeric: tabular-nums;
}
.byp-rail .rail-section .v.free { color: var(--color-success-700); }
.byp-rail .rail-section .detail {
  font-size: var(--text-body-sm);
  color: var(--color-ink-600);
}
.byp-rail .rail-section .detail.brand { color: var(--color-brand-700); font-weight: 600; }

.byp-rail .total-block {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 2px solid var(--color-ink-200);
}
.byp-rail .total-block .total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: var(--space-2);
}
.byp-rail .total-block .total-row .k { font-weight: 600; color: var(--color-ink-900); }
.byp-rail .total-block .total-row .v {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-ink-900);
  font-variant-numeric: tabular-nums;
}
.byp-rail .total-block .erate {
  font-size: var(--text-body-sm);
  color: var(--color-ink-500);
  display: flex; justify-content: space-between;
}
.byp-rail .total-block .erate span:last-child { font-weight: 700; color: var(--color-ink-900); font-variant-numeric: tabular-nums; }

.byp-rail .rail-cta {
  margin-top: var(--space-5);
  display: grid;
  gap: var(--space-2);
}
.byp-rail .save-link {
  display: block;
  margin-top: var(--space-3);
  font-size: var(--text-body-sm);
  text-align: center;
  color: var(--color-ink-500);
}
.byp-rail .save-link a { color: var(--color-brand-600); font-weight: 600; }

.byp-rail .qualifies-banner {
  margin-bottom: var(--space-4);
  padding: var(--space-3);
  background: var(--color-success-50);
  border: 1px solid #BFE8CD;
  border-radius: var(--radius-md);
  font-size: var(--text-body-sm);
  color: var(--color-success-700);
  font-weight: 600;
  text-align: center;
}
.byp-rail .qualifies-banner[hidden] { display: none; }

/* Mobile bottom rail */
@media (max-width: 991.98px) {
  .byp-rail {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: 0 -8px 24px rgba(14,18,26,0.08);
    max-height: 60vh;
    z-index: 50;
    margin: 0;
  }
  .byp-rail.is-collapsed > *:not(.rail-collapsed-bar) { display: none; }
  .byp-main { padding-bottom: 140px; }
}

.rail-collapsed-bar {
  display: none;
}
@media (max-width: 991.98px) {
  .rail-collapsed-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3);
  }
  .rail-collapsed-bar .total {
    font-weight: 800;
    font-variant-numeric: tabular-nums;
  }
}

/* ---------- Review page ---------- */

.byp-review-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--space-6);
}
@media (max-width: 991.98px) { .byp-review-grid { grid-template-columns: 1fr; } }

.byp-review-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}
.byp-review-card h4 {
  font-size: var(--text-body-lg);
  color: var(--color-ink-900);
  margin-bottom: var(--space-4);
}
.byp-review-card .config-row {
  display: flex; justify-content: space-between;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-body-sm);
}
.byp-review-card .config-row:last-child { border-bottom: none; }
.byp-review-card .config-row .k { color: var(--color-ink-500); }
.byp-review-card .config-row .v { color: var(--color-ink-900); font-weight: 600; font-variant-numeric: tabular-nums; }
.byp-review-card .edit-link {
  margin-top: var(--space-3);
  font-size: var(--text-body-sm);
  color: var(--color-brand-600); font-weight: 600;
  background: none; border: none; padding: 0;
  cursor: pointer;
}

.byp-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-body-sm);
}
.byp-comparison-table td, .byp-comparison-table th {
  padding: var(--space-2) 0;
  text-align: right;
}
.byp-comparison-table th:first-child, .byp-comparison-table td:first-child {
  text-align: left;
  color: var(--color-ink-500);
}
.byp-comparison-table tr { border-bottom: 1px solid var(--color-border); }
.byp-comparison-table tr:last-child { border-bottom: none; }
.byp-comparison-table .savings {
  color: var(--color-success-700);
  font-weight: 700;
}
.byp-comparison-table .savings.negative { color: var(--color-danger-500); }

.byp-cta-bar {
  display: flex; gap: var(--space-3); flex-wrap: wrap;
  margin-top: var(--space-6);
}
.byp-cta-bar .btn { flex: 1; min-width: 240px; }

/* ---------- Sales-assisted quote form ---------- */

.byp-quote-form {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  max-width: 720px;
}
.byp-quote-form .form-section {
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
}
.byp-quote-form .form-section:last-of-type { border-bottom: none; }

/* ---------- Confirmation ---------- */

.byp-confirmation {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.byp-confirmation .checkmark {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--color-success-50);
  color: var(--color-success-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin-bottom: var(--space-5);
}
.byp-confirmation h2 { margin-bottom: var(--space-3); }
.byp-confirmation .quote-id {
  font-family: var(--font-mono);
  background: var(--color-bg-muted);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin: var(--space-3) 0;
}

/* ---------- Footer ---------- */

.byp-footer {
  background: var(--color-bg-invert);
  color: var(--color-ink-300);
  padding: var(--space-12) 0 var(--space-6);
  font-size: var(--text-body-sm);
}
.byp-footer h4 {
  color: #fff;
  font-size: var(--text-body);
  margin-bottom: var(--space-3);
}
.byp-footer a { color: var(--color-ink-300); }
.byp-footer a:hover { color: #fff; }
.byp-footer .legal {
  margin-top: var(--space-8);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-ink-700);
  color: var(--color-ink-400);
  font-size: 12px;
}

/* ---------- Misc ---------- */

.byp-flash {
  animation: flashBrand var(--dur-base) var(--ease-standard);
}
@keyframes flashBrand {
  0%   { background-color: rgba(242,91,31,0.18); }
  100% { background-color: transparent; }
}

.byp-error {
  margin-top: var(--space-2);
  font-size: var(--text-body-sm);
  color: var(--color-danger-500);
}

.byp-help {
  font-size: var(--text-body-sm);
  color: var(--color-ink-500);
  margin-top: var(--space-2);
}

/* Channel mix sliders */
.byp-mix-row {
  display: grid;
  grid-template-columns: 120px 1fr 64px;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
}
.byp-mix-row label { font-size: var(--text-body-sm); color: var(--color-ink-700); margin: 0; }
.byp-mix-row .pct { text-align: right; font-weight: 600; font-variant-numeric: tabular-nums; }

/* Sticky bottom action on mobile review */
@media (max-width: 991.98px) {
  .byp-cta-bar { position: sticky; bottom: 0; background: var(--color-bg); padding: var(--space-3); margin-left: -1rem; margin-right: -1rem; border-top: 1px solid var(--color-border); }
}

/* ============================================================
   Hardware step — Otter-style showcase + customizer
   ============================================================ */

/* Tabs */
.byp-hw-tabs {
  display: flex;
  gap: var(--space-2);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-3);
  margin-bottom: var(--space-6);
  overflow-x: auto;
  scrollbar-width: none;
}
.byp-hw-tabs::-webkit-scrollbar { display: none; }

.byp-hw-tab {
  background: transparent;
  border: none;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-ink-600);
  font-weight: 500;
  font-size: var(--text-body-sm);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-standard);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: -13px;
  padding-bottom: var(--space-3);
}
.byp-hw-tab:hover { color: var(--color-ink-900); background: var(--color-bg-muted); }
.byp-hw-tab.is-active {
  color: var(--color-brand-700);
  border-bottom-color: var(--color-brand-500);
  background: transparent;
}
.byp-hw-tab .tab-img {
  width: 28px; height: 28px;
  background: var(--color-bg-subtle);
  border-radius: var(--radius-xs);
  background-size: cover; background-position: center;
  position: relative;
}
.byp-hw-tab .tab-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--color-ink-200), var(--color-ink-300));
  border-radius: inherit;
  opacity: 0.6;
}
.byp-hw-tab[data-hw-tab] .tab-img[data-product="terminal"]::after     { background: linear-gradient(135deg, var(--color-brand-200), var(--color-brand-400)); }
.byp-hw-tab[data-hw-tab] .tab-img[data-product="kiosk"]::after        { background: linear-gradient(135deg, var(--color-info-50), var(--color-info-500)); opacity: 0.5; }
.byp-hw-tab[data-hw-tab] .tab-img[data-product="mobileWaiter"]::after { background: linear-gradient(135deg, var(--color-success-50), var(--color-success-500)); opacity: 0.5; }
.byp-hw-tab[data-hw-tab] .tab-img[data-product="selfCheckout"]::after { background: linear-gradient(135deg, var(--color-warning-50), var(--color-warning-500)); opacity: 0.5; }

/* Showcase */
.byp-hw-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  padding: var(--space-6);
  background: var(--color-bg-muted);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
@media (max-width: 768px) {
  .byp-hw-showcase { grid-template-columns: 1fr; }
}

.hw-showcase-imgcard {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex; flex-direction: column;
  gap: var(--space-4);
}
.hw-showcase-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-bg-subtle), var(--color-bg-muted));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.hw-showcase-img::before {
  content: '';
  position: absolute;
  inset: 20%;
  border-radius: var(--radius-md);
  background: var(--color-ink-300);
  opacity: 0.6;
}
.hw-showcase-img[data-product="terminal"]::before     { background: linear-gradient(135deg, var(--color-ink-700), var(--color-ink-900)); }
.hw-showcase-img[data-product="kiosk"]::before        { background: linear-gradient(180deg, var(--color-ink-700), var(--color-ink-900)); inset: 8% 30% 4% 30%; border-radius: var(--radius-md); }
.hw-showcase-img[data-product="mobileWaiter"]::before { background: linear-gradient(135deg, var(--color-ink-600), var(--color-ink-800)); inset: 20% 35% 20% 35%; border-radius: var(--radius-lg); }
.hw-showcase-img[data-product="selfCheckout"]::before { background: linear-gradient(180deg, var(--color-ink-700), var(--color-ink-900)); inset: 4% 20% 4% 20%; }

.hw-thumb-strip {
  display: flex; gap: 8px;
}
.hw-thumb-strip .thumb {
  flex: 1; height: 56px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-subtle);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: border-color var(--dur-fast);
}
.hw-thumb-strip .thumb.is-active { border-color: var(--color-brand-500); }

.hw-showcase-detail h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}
.hw-showcase-detail > p {
  color: var(--color-ink-600);
  font-size: var(--text-body-lg);
  margin-bottom: var(--space-4);
}
.hw-includes-label {
  font-size: var(--text-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--color-ink-500);
  margin-bottom: var(--space-2);
}
.hw-includes {
  list-style: none; padding: 0; margin: 0 0 var(--space-5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  font-size: var(--text-body-sm);
  color: var(--color-ink-800);
}
.hw-includes li {
  display: flex; align-items: center; gap: 8px;
}
.hw-includes li::before {
  content: '✓';
  color: var(--color-success-500);
  font-weight: 700;
  flex-shrink: 0;
}

.hw-price-block {
  padding: var(--space-4);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
}
.hw-price-block .amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-ink-900);
  font-variant-numeric: tabular-nums;
}
.hw-price-block .amount.free {
  color: var(--color-success-700);
}
.hw-price-block .sub {
  font-size: var(--text-body-sm);
  color: var(--color-ink-500);
  margin-top: 4px;
}

.hw-featured-actions {
  display: flex; align-items: center; gap: var(--space-3);
  flex-wrap: wrap;
}
.hw-featured-qty-wrap {
  display: flex; align-items: center; gap: var(--space-2);
}
.hw-featured-qty-wrap .hw-qty-label {
  font-size: var(--text-body-sm);
  color: var(--color-ink-600);
  font-weight: 600;
}

#hw-customize-toggle {
  flex: 1;
  min-width: 200px;
}
#hw-customize-toggle.is-open {
  background: var(--color-brand-700);
}

/* Quick-preset chips */
.hw-presets-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin: var(--space-5) 0 var(--space-4);
  flex-wrap: wrap;
}
.hw-presets-label {
  font-size: var(--text-body-sm);
  color: var(--color-ink-500);
  font-weight: 600;
  margin-right: 4px;
}
.byp-chip {
  background: var(--color-bg);
  border: 1.5px solid var(--color-border-strong);
  color: var(--color-ink-700);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: var(--text-body-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-standard);
}
.byp-chip:hover { border-color: var(--color-brand-400); color: var(--color-brand-700); }
.byp-chip.is-selected {
  background: var(--color-brand-50);
  border-color: var(--color-brand-500);
  color: var(--color-brand-700);
}

/* Customizer panel */
.byp-hw-customizer {
  margin-top: var(--space-5);
  padding: var(--space-6);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
}
.byp-hw-customizer[hidden] { display: none; }

.hw-customizer-head h4 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.hw-customizer-head { margin-bottom: var(--space-5); }

/* Item list rows */
.byp-hw-list { display: grid; gap: var(--space-2); }

.byp-hw-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--color-bg-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-fast);
}
.byp-hw-row:hover { border-color: var(--color-border-strong); }

.hw-row-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.hw-row-title { font-weight: 600; color: var(--color-ink-900); }
.hw-row-sub { font-size: var(--text-body-sm); color: var(--color-ink-500); }
.hw-row-badges {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-top: 4px;
}
.hw-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: var(--color-bg-subtle);
  color: var(--color-ink-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hw-badge.license { background: var(--color-info-50); color: var(--color-info-500); }
.hw-badge.pro     { background: var(--color-brand-50); color: var(--color-brand-700); }
.hw-badge.addon   { background: var(--color-success-50); color: var(--color-success-700); }

.hw-row-right {
  display: flex; align-items: center; gap: var(--space-4);
}
.hw-row-price {
  font-size: var(--text-body-sm);
  color: var(--color-ink-700);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.hw-qty-stepper { flex-shrink: 0; }
.hw-qty-stepper input { width: 56px; }

@media (max-width: 640px) {
  .byp-hw-row { grid-template-columns: 1fr; }
  .hw-row-right { justify-content: space-between; }
}

/* Software impact callout */
.byp-impact-card {
  margin-top: var(--space-6);
  padding: var(--space-4);
  background: var(--color-bg-muted);
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius-md);
}
.byp-impact-card .impact-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--space-3); flex-wrap: wrap;
  margin-bottom: var(--space-3);
}
.byp-impact-card .impact-eyebrow {
  font-size: var(--text-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--color-ink-500);
}
.byp-impact-card .impact-help {
  font-size: var(--text-body-sm);
  color: var(--color-ink-500);
}

.byp-impact-row {
  display: flex; align-items: flex-start; gap: var(--space-3);
  padding: 8px 0;
  font-size: var(--text-body-sm);
}
.byp-impact-row .impact-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 13px;
}
.byp-impact-row.impact-ok .impact-icon   { background: var(--color-success-50); color: var(--color-success-700); }
.byp-impact-row.impact-info .impact-icon { background: var(--color-info-50);    color: var(--color-info-500); }
.byp-impact-row.impact-warn .impact-icon { background: var(--color-warning-50); color: var(--color-warning-500); }

/* Customizer total bar */
.byp-hw-totalbar {
  margin-top: var(--space-5);
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(135deg, var(--color-brand-50), var(--color-bg));
  border: 1px solid var(--color-brand-200);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4); flex-wrap: wrap;
}
.byp-hw-totalbar .hw-total-left {
  display: flex; flex-direction: column;
}
.byp-hw-totalbar .lbl {
  font-size: var(--text-body-sm);
  color: var(--color-ink-500);
  font-weight: 600;
}
.byp-hw-totalbar .amt {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-ink-900);
  font-variant-numeric: tabular-nums;
}
.byp-hw-totalbar .hw-total-right {
  display: flex; flex-direction: column;
  align-items: flex-end;
  font-variant-numeric: tabular-nums;
  font-size: var(--text-body-sm);
}
.byp-hw-totalbar .gross { color: var(--color-ink-500); }
.byp-hw-totalbar .savings { color: var(--color-success-700); font-weight: 700; margin-top: 4px; }