/* ==========================================================================
   Panther Barcode Reader product-page additions: cross-link callout and a
   short "how it works" step row. Loaded only on the BarCode page
   (Views/Home/BarCode.cshtml's @section Styles) after design-system.css, so
   every --ps-* token below is already defined. No new tokens — just a couple
   of components built from the existing ones, matching the site's visual
   language (same approach as memora-pricing.css).
   ========================================================================== */

.bc-section {
  padding: 64px 0;
}
.bc-section--alt {
  background: var(--ps-bg-secondary);
}
.bc-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}
.bc-section-head p {
  color: var(--ps-text-secondary);
  margin-top: 10px;
}

/* Cross-link / info callout ---------------------------------------------- */
.bc-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--ps-bg-card);
  border: 1px solid var(--ps-border);
  border-left: 3px solid var(--ps-accent);
  border-radius: var(--ps-radius);
  padding: 20px 24px;
  margin: 0 0 30px;
}
.bc-callout__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(141, 255, 63, 0.12);
  color: var(--ps-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.bc-callout h4 {
  margin: 0 0 6px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ps-accent);
}
.bc-callout p {
  margin: 0;
  color: var(--ps-text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* How it works ---------------------------------------------------------- */
.bc-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.bc-step {
  flex: 1 1 240px;
  background: var(--ps-bg-card);
  border: 1px solid var(--ps-border);
  border-radius: var(--ps-radius-lg);
  padding: 28px 24px;
}
.bc-step-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--ps-accent);
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.bc-step h3 {
  font-size: 18px;
  margin: 0 0 8px;
}
.bc-step p {
  color: var(--ps-text-secondary);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* Product screenshots -------------------------------------------------- */
.porfolioDetail .bc-shot {
  text-align: center;
}
.porfolioDetail .bc-shot img {
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--ps-border);
}
.porfolioDetail .bc-shot--desktop img {
  width: 100%;
  max-width: 640px;
}
.porfolioDetail .bc-shot--phone img {
  width: 280px;
  max-width: 100%;
}

/* Download CTA row ----------------------------------------------------- */
.bc-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.bc-final-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.bc-final-cta p {
  color: var(--ps-text-secondary);
  margin: 10px 0 24px;
}
