/* ==========================================================================
   oem-components.css
   ───────────────────────────────────────────────────────────────────────────
   OWNERSHIP: OEM product page + shared OEM-style catalog shells on other hubs.

   Loaded when: Views/Products/* sets ViewData["ProductFamilyIncludeOemComponentsCss"] = true
   → OemComponents.cshtml, CheckScanners.cshtml, InstantIssuance.cshtml.
   NOT loaded on: CardReaders.cshtml (saves weight; Card Readers uses card-readers.css only for OEM band).

   Prerequisite: ~/Content/card-readers.css must load first (same layout). This file uses :root tokens
   defined there (--cr-page-band-y, --cr-surface-alt, --cr-accent-red-rgb, etc.).

   Scope: Prefer #products … selectors; OEM-specific: .oem-kiosk-embed-*, .oem-insertion-*,
   .oem-components-catalog-*, design-study blocks. Shared with II/CS: .oem-dual-catalog-band,
   .cr-legacy-catalog-grid, #oem-mms-dyna-applications equal-height rules.

   Major regions (search): "oem-kiosk-embed", "Insertion catalog", "oem-mms-dyna-applications",
   "oem-insertion-section", "oem-components-catalog", "oem-catalog-ds", "Study 1" … "Study 16".

   Maintenance: Removed ~1,200 lines (2026-04) of CSS with no live Razor/JS references — retired IntelliHead
   spotlight/trio/specs, unused oem-band + oem-mms-dyna hero/compact cards, orphan .oem-catalog-section,
   unused .oem-magcare-banner and .cr-split-promo--oem-bridge. Restore from git if a commented block returns.
   ========================================================================== */

/* First content band after hero — magtek-standardization .section-bg-alt + services-page.css top fade (Services.cshtml DNA) */
#products .oem-kiosk-embed-section {
  padding: var(--cr-page-band-y) 0 clamp(3.6rem, 6.5vw, 5.5rem);
  position: relative;
  overflow: hidden;
  background: var(--cr-surface-alt);
  border-top: 1px solid var(--cr-border-subtle);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#products .oem-kiosk-embed-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--cr-section-alt-top-fade-height, 100px);
  background: var(--cr-section-alt-top-fade, linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, transparent 100%));
  pointer-events: none;
  z-index: 0;
}

#products .oem-kiosk-embed-section > .container {
  position: relative;
  z-index: 1;
}

#products .oem-kiosk-embed-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem 2.4rem;
  margin-bottom: 3.2rem;
}

#products .oem-kiosk-embed-head-text {
  flex: 1 1 280px;
  max-width: 720px;
}

#products .oem-kiosk-embed-title {
  margin: 0 0 1.2rem;
  font-size: clamp(2.4rem, 2.1rem + 1.1vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  letter-spacing: -0.02em;
}

#products .oem-kiosk-embed-subtitle {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.55;
  color: #64748b;
  max-width: 56ch;
}

#products .oem-kiosk-embed-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.6rem;
  background: var(--cr-card-elevated-bg, #ffffff);
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  border: 1px solid var(--cr-card-elevated-border, rgba(38, 60, 80, 0.08));
  align-self: center;
}

#products .oem-kiosk-embed-badge-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: #b91c1c;
  color: #ffffff;
  font-size: 1.2rem;
}

#products .oem-kiosk-embed-badge-label {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
}

#products .oem-kiosk-embed-cards {
  margin-left: -12px;
  margin-right: -12px;
}

#products .oem-kiosk-embed-cards > [class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 2rem;
}

#products .oem-kiosk-embed-cards > [class*="col-"]:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  #products .oem-kiosk-embed-cards > [class*="col-"] {
    margin-bottom: 0;
  }
}

#products .oem-kiosk-embed-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  height: 100%;
  background: var(--cr-card-elevated-bg, #ffffff);
  border-radius: var(--cr-card-elevated-radius, 20px);
  padding: 2.6rem 2.4rem 2.8rem;
  box-shadow: var(
    --cr-card-elevated-shadow,
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 36px rgba(15, 23, 42, 0.07)
  );
  border: 1px solid var(--cr-card-elevated-border, rgba(38, 60, 80, 0.08));
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

#products .oem-kiosk-embed-card:hover {
  transform: translateY(-3px);
  border-color: var(--cr-card-accent-border-hover, rgba(210, 18, 66, 0.2));
  box-shadow: var(
    --cr-card-elevated-shadow-hover,
    0 4px 12px rgba(15, 23, 42, 0.06),
    0 18px 44px rgba(38, 60, 80, 0.1)
  );
}

#products .oem-kiosk-embed-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  margin-bottom: 2rem;
  border-radius: 14px;
  background: var(
    --cr-card-icon-well-bg,
    linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%)
  );
  border: 1px solid var(--cr-card-icon-well-border, rgba(38, 60, 80, 0.09));
  color: #d21242;
  font-size: 2.6rem;
  box-shadow: var(--cr-card-icon-well-shadow, 0 4px 14px rgba(15, 23, 42, 0.05));
}

#products .oem-kiosk-embed-card-title {
  margin: 0 0 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}

#products .oem-kiosk-embed-card-desc {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.55;
  color: #64748b;
}

@media (max-width: 767px) {
  #products .oem-kiosk-embed-section {
    padding: 3.6rem 0 4rem;
  }

  #products .oem-kiosk-embed-head {
    margin-bottom: 2.4rem;
  }

  #products .oem-kiosk-embed-badge {
    width: 100%;
    justify-content: center;
  }
}

/* Insertion catalog — magtek-standardization .section-bg-alt (follows white MMS band on OEM page) */
#products .oem-insertion-showcase {
  padding: var(--cr-page-band-y) 0 clamp(2.25rem, 5vw, 3.75rem);
  position: relative;
  overflow: hidden;
  background: var(--cr-surface-alt);
  border-top: 1px solid var(--cr-border-subtle);
  border-bottom: 1px solid var(--cr-border-subtle);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#products .oem-insertion-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--cr-section-alt-top-fade-height, 100px);
  background: var(--cr-section-alt-top-fade, linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, transparent 100%));
  pointer-events: none;
  z-index: 0;
}

#products .oem-insertion-showcase > .container {
  position: relative;
  z-index: 1;
}

#products .oem-insertion-showcase .section-header {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

#products .oem-insertion-showcase__body {
  padding-top: clamp(0.5rem, 1.5vw, 1rem);
  padding-bottom: 0;
}

#products .oem-insertion-showcase-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

#products .oem-insertion-showcase-copy {
  padding-right: 2rem;
  margin-bottom: 2.4rem;
}

#products .oem-insertion-showcase-copy .oem-insertion-showcase-quote {
  margin-top: 0;
}

@media (min-width: 992px) {
  #products .oem-insertion-showcase-copy {
    margin-bottom: 0;
  }
}

#products .oem-insertion-showcase-quote {
  margin: 0;
  padding: 1.6rem 1.8rem;
  background: linear-gradient(
    135deg,
    rgba(38, 60, 80, 0.06) 0%,
    rgba(210, 18, 66, 0.06) 100%
  );
  border: 1px solid rgba(38, 60, 80, 0.1);
  border-radius: 14px;
  box-shadow: none;
}

#products .oem-insertion-showcase-quote p {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.55;
  font-style: normal;
  font-weight: 600;
  color: #1e293b;
}

#products .oem-insertion-cards-row {
  margin-left: -10px;
  margin-right: -10px;
}

#products .oem-insertion-cards-row > [class*="col-"] {
  display: flex;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 1.6rem;
}

#products .oem-insertion-cards-row > [class*="col-"]:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  #products .oem-insertion-cards-row > [class*="col-"] {
    margin-bottom: 0;
  }
}

#products .oem-insertion-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.4rem 1.4rem 1.5rem;
  background: #ffffff;
  border-radius: 14px;
  text-decoration: none !important;
  color: inherit !important;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 6px 20px rgba(38, 60, 80, 0.06);
  border: 1px solid rgba(38, 60, 80, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

#products .oem-insertion-card:hover,
#products .oem-insertion-card:focus {
  text-decoration: none !important;
  color: inherit !important;
  transform: translateY(-2px);
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.06),
    0 14px 32px rgba(38, 60, 80, 0.1);
  border-color: rgba(38, 60, 80, 0.14);
}

#products .oem-insertion-card:focus-visible {
  outline: 2px solid #263c50;
  outline-offset: 3px;
}

#products .oem-insertion-card-media {
  border-radius: 10px;
  overflow: hidden;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  max-height: 160px;
  margin-bottom: 1.2rem;
}

#products .oem-insertion-card-media--dark {
  background: #1e293b;
}

#products .oem-insertion-card-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 148px;
}

#products .oem-insertion-card-title {
  margin: 0 0 0.6rem;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
}

#products .oem-insertion-card-desc {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  line-height: 1.45;
  color: #64748b;
  flex: 1 1 auto;
}

#products .oem-insertion-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

#products .oem-insertion-tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.2;
  color: #0f172a;
  background: #dbeafe;
  border-radius: 999px;
}

@media (max-width: 767px) {
  #products .oem-insertion-showcase {
    padding: clamp(2.5rem, 6vw, 3.25rem) 0 clamp(2rem, 5vw, 3rem);
  }

  #products .oem-insertion-showcase__body {
    padding-top: 0.75rem;
  }

  #products .oem-insertion-showcase-copy {
    padding-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  #products .oem-insertion-card {
    transition: none;
  }

  #products .oem-insertion-card:hover,
  #products .oem-insertion-card:focus {
    transform: none;
  }
}

#products #oem-mms-dyna-applications {
  scroll-margin-top: 88px;
}

/* Payment & Access panels: stretch columns so both cards match height (Bootstrap 3 row uses floats). */
@media (min-width: 992px) {
  #products #oem-mms-dyna-applications .cr-applications-showcase__row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }

  #products
    #oem-mms-dyna-applications
    .cr-applications-showcase__row
    > .cr-applications-showcase__col {
    float: none;
    width: 50%;
    display: flex;
    flex-direction: column;
  }

  #products #oem-mms-dyna-applications .cr-applications-showcase__card {
    flex: 1 1 auto;
    width: 100%;
    min-height: 100%;
  }
}


/* --------------------------------------------------------------------------
   OEM page layout system (parity with Card Readers + Services rhythm)
   -------------------------------------------------------------------------- */

#products .oem-section-eyebrow {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d21242;
}

#products .oem-section-eyebrow--muted {
  color: #64748b;
  letter-spacing: 0.1em;
}

#products .oem-section--surface-alt {
  position: relative;
}

#products .oem-section--surface-alt::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    #d21242 0%,
    #263c50 55%,
    rgba(38, 60, 80, 0.15) 100%
  );
  opacity: 0.85;
  pointer-events: none;
}

#products .oem-catalog-bridge {
  margin-top: -0.5rem;
}

/* Stacked OEM catalog subsections: header rhythm matches Card Readers legacy band */
#products #oem-catalogs-section .cr-legacy-catalog-subsection .section-header {
  margin-bottom: 1.75rem;
}

/* Insertion band: quote above catalog grid (no side-by-side copy column) */
#products .oem-insertion-showcase-quote--fullwidth {
  margin: 0 0 clamp(1.75rem, 3vw, 2.5rem);
}


#products .oem-catalog-grid {
  margin-top: 0.25rem;
}

/*
 * OEM Components catalog — same MMS Dyna bento shell as Card Readers (card-readers.css .cr-mms-dyna-showcase).
 * OEM markup uses 6/6 top-level columns so the Shift-Out featured tile is a bit narrower than Card Readers’ 7/5.
 * Extra OEM-only tweak: two equal subrows of half-width tiles; don’t let row 2 flex-grow alone.
 */
#products .oem-components-catalog-grid .oem-components-catalog-dyna-wrap {
  width: 100%;
  float: none;
}

#products
  .oem-components-catalog-dyna
  .mms-dyna-readers-col--stack
  .mms-dyna-readers-subrow
  + .mms-dyna-readers-subrow {
  flex: 0 1 auto;
  min-height: 0;
}

/*
 * OEM featured column only (Shift-Out IntelliHead): larger *visual* product art without growing
 * the card. Layout uses the same PED max-height as card-readers.css; scale() enlarges paint only.
 * Image wrap: no flex-grow, no min-height tray; link overflow visible so scaled art isn’t clipped.
 */
#products
  .oem-components-catalog-dyna
  .mms-dyna-readers-col--main
  > .mms-dyna-card--ped.mms-dyna-card-link {
  justify-content: flex-start;
  overflow: visible;
}

#products
  .oem-components-catalog-dyna
  .mms-dyna-readers-col--main
  .mms-dyna-card--ped
  .mms-dyna-card-img-wrap--ped {
  flex: 0 1 auto;
  flex-grow: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  position: relative;
  z-index: 1;
}

/* Layout box = base PED; scale + slight translateY (visual only; flex height unchanged). */
#products
  .oem-components-catalog-dyna
  .mms-dyna-readers-col--main
  .mms-dyna-card--ped
  .mms-dyna-card-img-wrap--ped
  .mms-dyna-card-img {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  object-fit: contain;
  object-position: center top;
  max-height: min(52vw, 440px);
  transform: scale(1.88) translateY(-40px) translateX(5px);
  transform-origin: top center;
  transition: transform 0.25s ease;
  filter: drop-shadow(0 16px 36px rgba(15, 23, 42, 0.07));
}

#products
  .oem-components-catalog-dyna
  .mms-dyna-readers-col--main
  > .mms-dyna-card--ped.mms-dyna-card-link:hover
  .mms-dyna-card-img-wrap--ped
  .mms-dyna-card-img,
#products
  .oem-components-catalog-dyna
  .mms-dyna-readers-col--main
  > .mms-dyna-card--ped.mms-dyna-card-link:focus-visible
  .mms-dyna-card-img-wrap--ped
  .mms-dyna-card-img {
  transform: scale(1.90256) translateY(-40px) translateX(5px);
  transform-origin: top center;
}

#products
  .oem-components-catalog-dyna
  .mms-dyna-readers-col--main
  .mms-dyna-card--ped
  .mms-dyna-card-actions--ped {
  margin-top: auto;
  padding-top: clamp(0.5rem, 1.2vw, 0.85rem);
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  #products
    .oem-components-catalog-dyna
    .mms-dyna-readers-col--main
    .mms-dyna-card--ped
    .mms-dyna-card-img-wrap--ped
    .mms-dyna-card-img {
    max-height: min(88vw, 400px);
    transform: scale(1.78) translateY(-40px) translateX(5px);
    transform-origin: top center;
  }

  #products
    .oem-components-catalog-dyna
    .mms-dyna-readers-col--main
    > .mms-dyna-card--ped.mms-dyna-card-link:hover
    .mms-dyna-card-img-wrap--ped
    .mms-dyna-card-img,
  #products
    .oem-components-catalog-dyna
    .mms-dyna-readers-col--main
    > .mms-dyna-card--ped.mms-dyna-card-link:focus-visible
    .mms-dyna-card-img-wrap--ped
    .mms-dyna-card-img {
    transform: scale(1.80136) translateY(-40px) translateX(5px);
    transform-origin: top center;
  }
}

@media (prefers-reduced-motion: reduce) {
  #products
    .oem-components-catalog-dyna
    .mms-dyna-readers-col--main
    > .mms-dyna-card--ped.mms-dyna-card-link:hover
    .mms-dyna-card-img-wrap--ped
    .mms-dyna-card-img,
  #products
    .oem-components-catalog-dyna
    .mms-dyna-readers-col--main
    > .mms-dyna-card--ped.mms-dyna-card-link:focus-visible
    .mms-dyna-card-img-wrap--ped
    .mms-dyna-card-img {
    transform: scale(1.88) translateY(-40px) translateX(5px);
    transform-origin: top center;
  }

  @media (max-width: 767px) {
    #products
      .oem-components-catalog-dyna
      .mms-dyna-readers-col--main
      > .mms-dyna-card--ped.mms-dyna-card-link:hover
      .mms-dyna-card-img-wrap--ped
      .mms-dyna-card-img,
    #products
      .oem-components-catalog-dyna
      .mms-dyna-readers-col--main
      > .mms-dyna-card--ped.mms-dyna-card-link:focus-visible
      .mms-dyna-card-img-wrap--ped
      .mms-dyna-card-img {
      transform: scale(1.78) translateY(-40px) translateX(5px);
      transform-origin: top center;
    }
  }
}

/*
 * OEM Components bento: title / tagline / spec lines match legacy .cr-catalog-card
 * (card-readers.css — #oem-insertion-section et al.) for parity with PermaSeal-style grids.
 */
#products .oem-components-catalog-dyna .mms-dyna-card-title {
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 1.5vw + 1.4rem, 2.1rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #0f172a;
}

#products
  .oem-components-catalog-dyna
  .mms-dyna-card--ped
  .mms-dyna-card-title {
  font-size: clamp(1.75rem, 1.5vw + 1.4rem, 2.1rem);
}

#products .oem-components-catalog-dyna .mms-dyna-card-lead,
#products .oem-components-catalog-dyna .mms-dyna-card-lead--oem-bento {
  margin: 0 0 16px;
  font-size: var(--font-size-small);
  line-height: 1.5;
  font-weight: 600;
  font-style: normal;
  color: #475569;
}

#products .oem-components-catalog-dyna .mms-dyna-checklist {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#products .oem-components-catalog-dyna .mms-dyna-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  line-height: 1.5;
  font-size: var(--font-size-body);
  font-weight: 500;
  color: #0f172a;
  overflow-wrap: anywhere;
}

#products .oem-components-catalog-dyna .mms-dyna-checklist .mms-dyna-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 3px;
  border-radius: 4px;
  font-size: 1rem;
  background: #263c50;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

#products .oem-components-catalog-dyna .mms-dyna-card-img-wrap--go,
#products .oem-components-catalog-dyna .mms-dyna-card-img-wrap--prox {
  min-height: 118px;
  padding-top: 2px;
}

#products
  .oem-components-catalog-dyna
  .mms-dyna-card-img-wrap--go
  .mms-dyna-card-img,
#products
  .oem-components-catalog-dyna
  .mms-dyna-card-img-wrap--prox
  .mms-dyna-card-img {
  max-height: min(30vw, 198px);
}

/* Design study / legacy: Study 1 “centered spotlight” still uses .oem-shiftout-featured. */
#products .oem-components-catalog-grid .oem-shiftout-featured-wrap {
  width: 100%;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.85rem);
}

#products .oem-components-catalog-grid .oem-shiftout-featured {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  outline-offset: 4px;
}

#products .oem-components-catalog-grid .oem-shiftout-featured__inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: clamp(1.15rem, 2.2vw, 1.85rem);
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(1.15rem, 2.2vw, 1.65rem) clamp(1.15rem, 2.5vw, 1.85rem);
  background: #ffffff;
  border: 1px solid rgba(210, 18, 66, 0.22);
  border-left: 4px solid var(--magtek-red, #d21242);
  border-radius: 12px;
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.06),
    0 18px 44px -12px rgba(38, 60, 80, 0.2),
    0 0 0 1px rgba(210, 18, 66, 0.08);
  transition:
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

@media (min-width: 768px) {
  #products .oem-components-catalog-grid .oem-shiftout-featured__inner {
    grid-template-columns: minmax(260px, 1fr) minmax(0, 1fr);
    gap: clamp(1.35rem, 2.8vw, 2.25rem);
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  #products .oem-components-catalog-grid .oem-shiftout-featured__inner {
    transition: none;
  }
}

#products
  .oem-components-catalog-grid
  .oem-shiftout-featured:hover
  .oem-shiftout-featured__inner,
#products
  .oem-components-catalog-grid
  .oem-shiftout-featured:focus-visible
  .oem-shiftout-featured__inner {
  border-color: rgba(210, 18, 66, 0.32);
  border-left-color: var(--magtek-red, #d21242);
  box-shadow:
    0 6px 10px -2px rgba(15, 23, 42, 0.08),
    0 22px 52px -14px rgba(38, 60, 80, 0.24),
    0 0 0 1px rgba(210, 18, 66, 0.14);
}

#products .oem-components-catalog-grid .oem-shiftout-featured:focus-visible {
  outline: 2px solid var(--magtek-red, #d21242);
}

#products .oem-components-catalog-grid .oem-shiftout-featured__media {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: clamp(1.1rem, 2vw, 1.75rem);
  text-align: center;
  border-radius: 10px;
  background: linear-gradient(165deg, #f4f7fb 0%, #e8eef5 55%, #dfe7f0 100%);
  border: 1px solid rgba(38, 60, 80, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  min-height: clamp(11.5rem, 24vw, 15rem);
}

#products .oem-components-catalog-grid .oem-shiftout-featured__img {
  display: block;
  width: auto;
  max-width: min(100%, 340px);
  max-height: clamp(9.5rem, 22vw, 14rem);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(15, 23, 42, 0.12));
}

#products .oem-components-catalog-grid .oem-shiftout-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 0.15rem 0;
}

#products .oem-components-catalog-grid .oem-shiftout-featured__eyebrow {
  margin: 0 0 0.5rem;
  padding: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--magtek-red, #d21242);
}

#products .oem-components-catalog-grid .oem-shiftout-featured__title {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 1.35vw + 1.45rem, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0f172a;
}

#products .oem-components-catalog-grid .oem-shiftout-featured__tagline {
  margin: 0 0 16px;
  font-size: var(--font-size-small, 1.4rem);
  line-height: 1.5;
  font-weight: 600;
  font-style: normal;
  color: #475569;
}

#products .oem-components-catalog-grid .oem-shiftout-featured__specs {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: var(--font-size-body, 1.6rem);
  color: #0f172a;
  line-height: 1.5;
}

#products .oem-components-catalog-grid .oem-shiftout-featured__specs li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  font-size: var(--font-size-body, 1.6rem);
  font-weight: 500;
}

#products .oem-components-catalog-grid .oem-shiftout-featured__spec-ic {
  flex-shrink: 0;
  margin-top: 3px;
  font-size: var(--font-size-small, 1.4rem);
  opacity: 0.92;
  color: #334155;
}

#products .oem-components-catalog-grid .oem-shiftout-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-size-small, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--magtek-red, #d21242);
}

#products
  .oem-components-catalog-grid
  .oem-shiftout-featured__cta
  .fa-arrow-right {
  font-size: var(--font-size-small, 1.4rem);
  line-height: 1;
  transition: transform 0.2s ease;
}

#products
  .oem-components-catalog-grid
  .oem-shiftout-featured:hover
  .oem-shiftout-featured__cta
  .fa-arrow-right,
#products
  .oem-components-catalog-grid
  .oem-shiftout-featured:focus-visible
  .oem-shiftout-featured__cta
  .fa-arrow-right {
  transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
  #products
    .oem-components-catalog-grid
    .oem-shiftout-featured__cta
    .fa-arrow-right {
    transition: none;
  }

  #products
    .oem-components-catalog-grid
    .oem-shiftout-featured:hover
    .oem-shiftout-featured__cta
    .fa-arrow-right,
  #products
    .oem-components-catalog-grid
    .oem-shiftout-featured:focus-visible
    .oem-shiftout-featured__cta
    .fa-arrow-right {
    transform: none;
  }
}

/* ==========================================================================
   OEM product page — production refinements (.oem-product-page)
   ========================================================================== */

/* Split hero: balance copy vs. product art (non–family-hub OEM pages only).
   Hardware hubs use #products.product-family-hub rules in product-family-hub-shared.css
   (after card-readers.css); those must not lose to this block when oem-components.css loads last. */
#products.oem-product-page:not(.product-family-hub) .split-hero {
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

#products.oem-product-page:not(.product-family-hub)
  .split-hero
  .split-hero-row {
  align-items: center;
}

#products.oem-product-page:not(.product-family-hub)
  .split-hero
  .split-hero-media-inner {
  min-height: clamp(22rem, 34vw, 36rem);
  justify-content: center;
}

#products.oem-product-page:not(.product-family-hub)
  .split-hero
  .split-hero-media
  img {
  max-height: min(52vh, 420px);
}

@media (max-width: 991px) {
  #products.oem-product-page:not(.product-family-hub)
    .split-hero
    .split-hero-media-inner {
    min-height: 0;
  }
}

/* Insertion cards: consistent media wells (no accidental purple cast) */
#products .oem-insertion-card-media--neutral {
  background: #f1f5f9 !important;
  border: 1px solid rgba(38, 60, 80, 0.08);
}

#products .oem-insertion-card-media--dark {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#products .oem-insertion-card .oem-insertion-card-img {
  padding: 6px;
}

#products .oem-insertion-card__body .oem-insertion-card-tags {
  margin-top: auto;
  padding-top: 0.75rem;
}

/* API-driven catalog cards: tighter, less “empty tower”, neutral photo wells */
#products.oem-product-page .oem-dual-catalog-band .product-card {
  border-radius: 14px;
  padding: 18px 18px 20px;
}

#products.oem-product-page .oem-dual-catalog-band .caption.flex-grow-1 {
  min-height: 0 !important;
}

#products.oem-product-page .oem-dual-catalog-band .image-wrapper {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid rgba(38, 60, 80, 0.09);
  min-height: 200px;
  align-items: center;
}

#products.oem-product-page .oem-dual-catalog-band .image-wrapper img {
  min-height: 0;
  max-height: 200px;
  width: auto;
  max-width: 100%;
}

#products.oem-product-page .oem-dual-catalog-band .caption p {
  color: #64748b;
  font-weight: 500;
}

#products.oem-product-page .oem-dual-catalog-band .caption ul li {
  font-size: 1.35rem;
  line-height: 1.45;
  color: #475569;
}

/* Final CTA: clearer handoff before global footer */
#products.oem-product-page .cr-final-cta {
  position: relative;
  padding-bottom: clamp(4.5rem, 8vw, 6rem);
  margin-bottom: 0;
}

#products.oem-product-page .cr-final-cta::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  #products .oem-kiosk-embed-card:hover {
    transform: none;
  }
}

/* Insertion cards v2 — body stack + CTA line */
#products .oem-insertion-card {
  padding: 0;
  overflow: hidden;
}

#products .oem-insertion-card .oem-insertion-card-media {
  margin-bottom: 0;
  border-radius: 14px 14px 0 0;
  aspect-ratio: 4 / 3;
  max-height: 200px;
}

#products .oem-insertion-card .oem-insertion-card-img {
  max-height: 180px;
}

#products .oem-insertion-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.35rem 1.35rem 1.5rem;
  min-height: 0;
}

#products .oem-insertion-card-title {
  margin: 0 0 0.55rem;
}

#products .oem-insertion-card-desc {
  flex: 1 1 auto;
  margin-bottom: 1rem;
}

#products .oem-insertion-card__more {
  margin-top: 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #d21242;
  letter-spacing: 0.02em;
}

#products .oem-insertion-card__more i {
  font-size: 0.9em;
  margin-left: 0.25rem;
  transition: transform 0.15s ease;
}

#products .oem-insertion-card:hover .oem-insertion-card__more i,
#products .oem-insertion-card:focus .oem-insertion-card__more i {
  transform: translateX(3px);
}

#products .oem-insertion-card-media--emphasis {
  background: linear-gradient(180deg, #e2e8f0 0%, #f1f5f9 100%) !important;
  border-color: rgba(38, 60, 80, 0.12);
}

#products .oem-insertion-card--emphasis {
  border-color: rgba(38, 60, 80, 0.12);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.05),
    0 10px 32px rgba(38, 60, 80, 0.08);
}


/* =============================================================================
   OEM Components catalog — design study only (.oem-catalog-ds-root)
   Partial: Views/Shared/_OemComponentsCatalogDesignStudy.cshtml
   ============================================================================= */

.oem-catalog-ds-root {
  margin: 0;
  padding: 0;
}

.oem-catalog-ds-intro {
  padding: 1.25rem 15px 0.5rem;
}

.oem-catalog-ds-intro__text {
  margin: 0;
  padding: 1rem 1.25rem;
  font-size: 1.45rem;
  line-height: 1.55;
  color: #334155;
  background: #f1f5f9;
  border-left: 4px solid var(--magtek-red, #d21242);
  border-radius: 0 10px 10px 0;
}

.oem-catalog-ds-intro__text code {
  font-size: 0.95em;
  color: #0f172a;
}

.oem-catalog-ds-study {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(38, 60, 80, 0.12);
}

.oem-catalog-ds-study:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.oem-catalog-ds-study__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.85rem 15px 1rem;
}

.oem-catalog-ds-study__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.5rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  background: var(--magtek-red, #d21242);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(210, 18, 66, 0.25);
}

.oem-catalog-ds-study__label {
  font-size: 1.45rem;
  font-weight: 650;
  color: #1e293b;
  letter-spacing: -0.01em;
}

.oem-catalog-ds-study__band {
  padding-top: 0;
}

.oem-catalog-ds-grid .oem-catalog-ds-featured-slot {
  margin-bottom: clamp(1.15rem, 2.2vw, 1.65rem);
}

/* --- Study 2: editorial split --- */
.oem-catalog-ds-featured-v2 {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  outline-offset: 4px;
}

.oem-catalog-ds-featured-v2__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(1.35rem, 2.5vw, 2rem) clamp(1.25rem, 2.5vw, 2rem);
  background: #fff;
  border: 1px solid rgba(38, 60, 80, 0.1);
  border-radius: 14px;
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.06),
    0 16px 40px -12px rgba(38, 60, 80, 0.14);
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

@media (min-width: 768px) {
  .oem-catalog-ds-featured-v2__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
}

.oem-catalog-ds-featured-v2:hover .oem-catalog-ds-featured-v2__inner,
.oem-catalog-ds-featured-v2:focus-visible .oem-catalog-ds-featured-v2__inner {
  border-color: rgba(210, 18, 66, 0.28);
  box-shadow:
    0 8px 14px -2px rgba(15, 23, 42, 0.08),
    0 22px 48px -14px rgba(38, 60, 80, 0.18);
}

.oem-catalog-ds-featured-v2:focus-visible {
  outline: 2px solid var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v2__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v2__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 1.2vw + 1.5rem, 2.35rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #0f172a;
}

.oem-catalog-ds-featured-v2__rule {
  width: 4rem;
  height: 3px;
  margin: 0 0 1rem;
  border-radius: 2px;
  background: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v2__tagline {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.45;
}

.oem-catalog-ds-featured-v2__specs {
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 1.55rem;
  color: #0f172a;
}

.oem-catalog-ds-featured-v2__specs li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.oem-catalog-ds-featured-v2__specs .glyphicon {
  opacity: 0.85;
  color: #475569;
  margin-top: 0.2rem;
}

.oem-catalog-ds-featured-v2__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v2__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(160deg, #f4f7fb 0%, #e8eef5 100%);
  border-radius: 12px;
  border: 1px solid rgba(38, 60, 80, 0.1);
}

.oem-catalog-ds-featured-v2__img {
  max-width: min(100%, 320px);
  max-height: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(15, 23, 42, 0.12));
}

/* --- Study 3: dark spotlight --- */
.oem-catalog-ds-featured-v3 {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
  outline-offset: 4px;
}

.oem-catalog-ds-featured-v3__inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1040px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 55%, #1a2332 100%);
  border-radius: 14px;
  box-shadow:
    0 6px 12px -2px rgba(0, 0, 0, 0.2),
    0 20px 48px -12px rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .oem-catalog-ds-featured-v3__inner {
    grid-template-columns: minmax(240px, 2fr) minmax(0, 2.5fr);
    align-items: stretch;
  }
}

.oem-catalog-ds-featured-v3__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: rgba(0, 0, 0, 0.2);
}

.oem-catalog-ds-featured-v3__img {
  max-width: min(100%, 300px);
  max-height: 200px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
}

.oem-catalog-ds-featured-v3__body {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.oem-catalog-ds-featured-v3__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f87171;
}

.oem-catalog-ds-featured-v3__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 1.2vw + 1.4rem, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #f8fafc;
}

.oem-catalog-ds-featured-v3__tagline {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  color: rgba(248, 250, 252, 0.72);
  line-height: 1.45;
}

.oem-catalog-ds-featured-v3__specs {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 1.5rem;
  color: rgba(248, 250, 252, 0.92);
}

.oem-catalog-ds-featured-v3__specs .glyphicon {
  color: rgba(248, 250, 252, 0.55);
  margin-right: 0.35rem;
}

.oem-catalog-ds-featured-v3__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fda4af;
}

.oem-catalog-ds-featured-v3:hover .oem-catalog-ds-featured-v3__cta,
.oem-catalog-ds-featured-v3:focus-visible .oem-catalog-ds-featured-v3__cta {
  color: #fff;
}

.oem-catalog-ds-featured-v3:focus-visible {
  outline: 2px solid #fda4af;
}

/* --- Study 4: super-card --- */
.oem-catalog-ds-featured-v4-link {
  text-decoration: none;
  color: inherit;
}

.oem-catalog-ds-featured-v4 {
  position: relative;
  border: 1px solid rgba(210, 18, 66, 0.18);
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.06),
    0 18px 44px -12px rgba(210, 18, 66, 0.12);
}

.oem-catalog-ds-featured-v4__media {
  position: relative;
}

.oem-catalog-ds-featured-v4__chip {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 0.35rem 0.75rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--magtek-red, #d21242);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.oem-catalog-ds-featured-v4__media .cr-catalog-card__img {
  max-height: 240px;
  object-fit: contain;
}

@media (min-width: 992px) {
  .oem-catalog-ds-featured-v4__media .cr-catalog-card__img {
    max-height: 280px;
  }
}

/* --- Study 5: compact strip --- */
.oem-catalog-ds-featured-v5 {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  outline-offset: 4px;
}

.oem-catalog-ds-featured-v5__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  max-width: 1040px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(38, 60, 80, 0.1);
  border-left: 4px solid var(--magtek-red, #d21242);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.oem-catalog-ds-featured-v5__media {
  flex-shrink: 0;
}

.oem-catalog-ds-featured-v5__img {
  display: block;
  width: 88px;
  height: auto;
  object-fit: contain;
}

.oem-catalog-ds-featured-v5__main {
  flex: 1 1 200px;
  min-width: 0;
}

.oem-catalog-ds-featured-v5__eyebrow {
  margin: 0 0 0.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v5__title {
  margin: 0 0 0.25rem;
  font-size: clamp(1.5rem, 1.2vw + 1.2rem, 1.85rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.oem-catalog-ds-featured-v5__tagline {
  margin: 0;
  font-size: 1.4rem;
  color: #64748b;
  font-weight: 600;
}

.oem-catalog-ds-featured-v5__specs {
  flex: 1 1 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.35rem;
  font-weight: 600;
  color: #334155;
}

@media (min-width: 768px) {
  .oem-catalog-ds-featured-v5__specs {
    flex: 0 1 auto;
    margin-left: auto;
    max-width: 42%;
    flex-direction: column;
    gap: 0.35rem;
  }
}

.oem-catalog-ds-featured-v5__cta {
  flex-shrink: 0;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v5:focus-visible {
  outline: 2px solid var(--magtek-red, #d21242);
}

/* --- Study 6: bento frame --- */
.oem-catalog-ds-featured-v6 {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  outline-offset: 4px;
}

.oem-catalog-ds-featured-v6__frame {
  max-width: 1040px;
  margin: 0 auto;
  padding: 3px;
  border-radius: 16px;
  background: linear-gradient(
    125deg,
    rgba(210, 18, 66, 0.55) 0%,
    rgba(38, 60, 80, 0.35) 40%,
    rgba(210, 18, 66, 0.35) 100%
  );
  box-shadow: 0 12px 40px -12px rgba(38, 60, 80, 0.25);
}

.oem-catalog-ds-featured-v6__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
  background: #fff;
  border-radius: 13px;
}

@media (min-width: 768px) {
  .oem-catalog-ds-featured-v6__inner {
    grid-template-columns: minmax(260px, 1fr) minmax(0, 1.1fr);
    align-items: center;
  }
}

.oem-catalog-ds-featured-v6__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: radial-gradient(
    ellipse 80% 70% at 50% 40%,
    #f1f5f9 0%,
    #e2e8f0 100%
  );
  border-radius: 12px;
  border: 1px solid rgba(38, 60, 80, 0.08);
}

.oem-catalog-ds-featured-v6__img {
  max-width: min(100%, 300px);
  max-height: 200px;
  width: auto;
  object-fit: contain;
}

.oem-catalog-ds-featured-v6__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v6__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 1vw + 1.45rem, 2.1rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.18;
}

.oem-catalog-ds-featured-v6__tagline {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  color: #64748b;
  font-weight: 600;
}

.oem-catalog-ds-featured-v6__specs {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 1.5rem;
  color: #0f172a;
}

.oem-catalog-ds-featured-v6__specs .glyphicon {
  color: #64748b;
  margin-right: 0.4rem;
}

.oem-catalog-ds-featured-v6__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v6:focus-visible {
  outline: 2px solid var(--magtek-red, #d21242);
}

/* --- Study 7: bento — hero tile (2 rows) + 2×2 product tiles --- */
.oem-catalog-ds-v7-outer {
  width: 100%;
  margin-bottom: clamp(1.15rem, 2.2vw, 1.65rem);
}

.oem-catalog-ds-v7-bento {
  display: grid;
  gap: clamp(14px, 1.8vw, 22px);
  width: 100%;
  padding: clamp(12px, 2vw, 20px);
  background: linear-gradient(165deg, #e8eef5 0%, #f4f7fb 40%, #f8fafc 100%);
  border-radius: 22px;
  border: 1px solid rgba(38, 60, 80, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 14px 40px -24px rgba(38, 60, 80, 0.25);
}

.oem-catalog-ds-v7-bento > .oem-catalog-ds-v7-bento-hero {
  min-width: 0;
}

/* Drop Bootstrap row/column sizing inside the bento grid */
.oem-catalog-ds-v7-bento > .cr-catalog-grid-card-col {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-bottom: 0 !important;
}

/* Product tiles: bento chrome */
.oem-catalog-ds-v7-bento .cr-catalog-card-link {
  height: 100%;
}

.oem-catalog-ds-v7-bento .cr-catalog-card {
  height: 100%;
  margin: 0;
  border-radius: 18px !important;
  border: 1px solid rgba(38, 60, 80, 0.1);
  box-shadow:
    0 4px 6px -2px rgba(15, 23, 42, 0.05),
    0 14px 32px -18px rgba(38, 60, 80, 0.18);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

@media (hover: hover) {
  .oem-catalog-ds-v7-bento .cr-catalog-card-link:hover .cr-catalog-card {
    transform: translateY(-3px);
    box-shadow:
      0 8px 14px -4px rgba(15, 23, 42, 0.08),
      0 22px 44px -20px rgba(38, 60, 80, 0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  .oem-catalog-ds-v7-bento .cr-catalog-card,
  .oem-catalog-ds-featured-v7__card {
    transition: none;
  }

  @media (hover: hover) {
    .oem-catalog-ds-v7-bento .cr-catalog-card-link:hover .cr-catalog-card,
    .oem-catalog-ds-featured-v7:hover .oem-catalog-ds-featured-v7__card {
      transform: none;
    }
  }
}

@media (min-width: 992px) {
  .oem-catalog-ds-v7-bento {
    grid-template-columns: minmax(300px, 1.32fr) repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(248px, 1fr) minmax(248px, 1fr);
    align-items: stretch;
  }

  .oem-catalog-ds-v7-bento > .oem-catalog-ds-v7-bento-hero {
    grid-column: 1;
    grid-row: 1 / -1;
  }

  .oem-catalog-ds-v7-bento > .cr-catalog-grid-card-col:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .oem-catalog-ds-v7-bento > .cr-catalog-grid-card-col:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }

  .oem-catalog-ds-v7-bento > .cr-catalog-grid-card-col:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .oem-catalog-ds-v7-bento > .cr-catalog-grid-card-col:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .oem-catalog-ds-v7-bento {
    grid-template-columns: 1fr 1fr;
  }

  .oem-catalog-ds-v7-bento > .oem-catalog-ds-v7-bento-hero {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .oem-catalog-ds-v7-bento > .cr-catalog-grid-card-col:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .oem-catalog-ds-v7-bento > .cr-catalog-grid-card-col:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .oem-catalog-ds-v7-bento > .cr-catalog-grid-card-col:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
  }

  .oem-catalog-ds-v7-bento > .cr-catalog-grid-card-col:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }
}

@media (max-width: 767px) {
  .oem-catalog-ds-v7-bento {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .oem-catalog-ds-v7-bento > .oem-catalog-ds-v7-bento-hero,
  .oem-catalog-ds-v7-bento > .cr-catalog-grid-card-col {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
}

.oem-catalog-ds-featured-v7 {
  display: block;
  height: 100%;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
  outline-offset: 4px;
}

.oem-catalog-ds-featured-v7__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.35rem, 2.2vw, 1.85rem);
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(38, 60, 80, 0.1);
  box-shadow:
    0 8px 24px -8px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(210, 18, 66, 0.08);
  border-top: 5px solid var(--magtek-red, #d21242);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

@media (hover: hover) {
  .oem-catalog-ds-featured-v7:hover .oem-catalog-ds-featured-v7__card {
    transform: translateY(-2px);
    box-shadow:
      0 14px 36px -12px rgba(38, 60, 80, 0.16),
      0 0 0 1px rgba(210, 18, 66, 0.12);
  }
}

.oem-catalog-ds-featured-v7:focus-visible .oem-catalog-ds-featured-v7__card {
  box-shadow:
    0 14px 36px -12px rgba(38, 60, 80, 0.16),
    0 0 0 1px rgba(210, 18, 66, 0.12);
}

.oem-catalog-ds-featured-v7__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v7__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.85rem, 1.15vw + 1.45rem, 2.35rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.16;
}

.oem-catalog-ds-featured-v7__tagline {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  color: #64748b;
  font-weight: 600;
}

.oem-catalog-ds-featured-v7__media {
  flex: 1 1 auto;
  margin: 0 0 1.15rem;
  padding: clamp(1rem, 2vw, 1.75rem);
  min-height: 140px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  border-radius: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oem-catalog-ds-featured-v7__img {
  max-height: clamp(160px, 22vh, 260px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(15, 23, 42, 0.12));
}

.oem-catalog-ds-featured-v7__specs {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  font-size: 1.45rem;
  color: #334155;
  line-height: 1.5;
}

.oem-catalog-ds-featured-v7__specs li {
  margin: 0.4rem 0;
  padding-left: 1em;
  position: relative;
}

.oem-catalog-ds-featured-v7__specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v7__cta {
  margin-top: auto;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v7:focus-visible {
  outline: 2px solid var(--magtek-red, #d21242);
}

/* --- Study 8: inverted (grid first) --- */
.oem-catalog-ds-v8-kicker {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: #475569;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.oem-catalog-ds-v8-anchor {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.oem-catalog-ds-featured-v8 {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  outline-offset: 4px;
}

.oem-catalog-ds-featured-v8__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(210, 18, 66, 0.2);
  border-radius: 16px;
  box-shadow: 0 20px 50px -24px rgba(38, 60, 80, 0.25);
}

@media (min-width: 768px) {
  .oem-catalog-ds-featured-v8__inner {
    grid-template-columns: 200px 1fr;
    align-items: center;
  }
}

.oem-catalog-ds-featured-v8__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.oem-catalog-ds-featured-v8__img {
  max-height: 140px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(15, 23, 42, 0.12));
}

.oem-catalog-ds-featured-v8__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v8__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.7rem, 1.2vw + 1.35rem, 2.05rem);
  font-weight: 700;
  color: #0f172a;
}

.oem-catalog-ds-featured-v8__tagline {
  margin: 0 0 1rem;
  font-size: 1.45rem;
  color: #64748b;
}

.oem-catalog-ds-featured-v8__specs {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  font-size: 1.45rem;
  color: #1e293b;
}

.oem-catalog-ds-featured-v8__specs li {
  margin: 0.4rem 0;
}

.oem-catalog-ds-featured-v8__cta {
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v8:focus-visible {
  outline: 2px solid var(--magtek-red, #d21242);
}

/* --- Study 9: vertical spine rail --- */
.oem-catalog-ds-featured-v9 {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  outline-offset: 4px;
}

.oem-catalog-ds-featured-v9__inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  max-width: 1040px;
  margin: 0 auto;
  min-height: 200px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(38, 60, 80, 0.1);
  box-shadow: 0 8px 28px -12px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.oem-catalog-ds-featured-v9__spine {
  flex: 0 0 52px;
  background: var(--magtek-red, #d21242);
  display: flex;
  align-items: center;
  justify-content: center;
}

.oem-catalog-ds-featured-v9__spine-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.oem-catalog-ds-featured-v9__main {
  flex: 1;
  padding: 1.35rem 1.5rem 1.5rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .oem-catalog-ds-featured-v9__main {
    grid-template-columns: minmax(0, 1.1fr) minmax(160px, 240px);
    grid-template-rows: auto auto 1fr auto;
    align-items: start;
  }

  .oem-catalog-ds-featured-v9__title {
    grid-column: 1;
  }

  .oem-catalog-ds-featured-v9__tagline {
    grid-column: 1;
  }

  .oem-catalog-ds-featured-v9__specs {
    grid-column: 1;
  }

  .oem-catalog-ds-featured-v9__cta {
    grid-column: 1;
  }

  .oem-catalog-ds-featured-v9__media {
    grid-column: 2;
    grid-row: 1 / span 4;
    align-self: center;
    justify-self: center;
  }
}

.oem-catalog-ds-featured-v9__title {
  margin: 0;
  font-size: clamp(1.65rem, 1vw + 1.4rem, 2rem);
  font-weight: 700;
  color: #0f172a;
}

.oem-catalog-ds-featured-v9__tagline {
  margin: 0;
  font-size: 1.45rem;
  color: #64748b;
  font-weight: 600;
}

.oem-catalog-ds-featured-v9__media {
  margin: 0;
  padding: 0.75rem;
  background: #f1f5f9;
  border-radius: 10px;
}

.oem-catalog-ds-featured-v9__img {
  display: block;
  max-height: 140px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}

.oem-catalog-ds-featured-v9__specs {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.4rem;
  color: #334155;
}

.oem-catalog-ds-featured-v9__specs li {
  margin: 0.35rem 0;
}

.oem-catalog-ds-featured-v9__cta {
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v9:focus-visible {
  outline: 2px solid var(--magtek-red, #d21242);
}

/* --- Study 10: single-row spec matrix --- */
.oem-catalog-ds-featured-v10 {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  outline-offset: 4px;
}

.oem-catalog-ds-featured-v10__table {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(38, 60, 80, 0.12);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.oem-catalog-ds-featured-v10__row {
  display: grid;
  grid-template-columns: 100px minmax(180px, 1.4fr) 1fr 0.7fr 0.7fr 100px;
  gap: 0.75rem 1rem;
  align-items: center;
  padding: 0.85rem 1rem;
}

@media (max-width: 991px) {
  .oem-catalog-ds-featured-v10__row {
    grid-template-columns: 88px 1fr;
    grid-template-rows: auto;
  }

  .oem-catalog-ds-featured-v10__row--head {
    display: none;
  }

  .oem-catalog-ds-featured-v10__row--body
    .oem-catalog-ds-featured-v10__cell:not(
      .oem-catalog-ds-featured-v10__cell--thumb
    ):not(.oem-catalog-ds-featured-v10__cell--title):not(
      .oem-catalog-ds-featured-v10__cell--cta
    ) {
    grid-column: 2;
  }

  .oem-catalog-ds-featured-v10__row--body
    .oem-catalog-ds-featured-v10__cell--cta {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

.oem-catalog-ds-featured-v10__row--head {
  background: #f8fafc;
  border-bottom: 1px solid rgba(38, 60, 80, 0.1);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}

.oem-catalog-ds-featured-v10__row--body {
  font-size: 1.4rem;
  color: #1e293b;
}

.oem-catalog-ds-featured-v10__cell--feat {
  color: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v10__thumb {
  padding: 0.25rem;
}

.oem-catalog-ds-featured-v10__thumb img {
  display: block;
  max-width: 88px;
  height: auto;
  margin: 0 auto;
}

.oem-catalog-ds-featured-v10__title {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.oem-catalog-ds-featured-v10__sub {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #64748b;
}

.oem-catalog-ds-featured-v10__cta-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v10:focus-visible {
  outline: 2px solid var(--magtek-red, #d21242);
}

/* --- Study 11: overlap glass --- */
.oem-catalog-ds-featured-v11 {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  outline-offset: 4px;
}

.oem-catalog-ds-featured-v11__stage {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(2.5rem, 8vw, 4rem) 1rem 6rem;
  border-radius: 16px;
  background: linear-gradient(165deg, #e2e8f0 0%, #f8fafc 50%, #e8eef4 100%);
  overflow: visible;
}

.oem-catalog-ds-featured-v11__art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.oem-catalog-ds-featured-v11__img {
  max-width: min(100%, 420px);
  max-height: 260px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.15));
}

.oem-catalog-ds-featured-v11__glass {
  margin: -4rem 1.25rem 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.35rem 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  box-shadow: 0 12px 40px -16px rgba(38, 60, 80, 0.2);
}

.oem-catalog-ds-featured-v11__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v11__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.65rem, 1vw + 1.4rem, 2rem);
  font-weight: 700;
  color: #0f172a;
}

.oem-catalog-ds-featured-v11__tagline {
  margin: 0 0 0.85rem;
  font-size: 1.45rem;
  color: #475569;
}

.oem-catalog-ds-featured-v11__chips {
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.oem-catalog-ds-featured-v11__chips li {
  margin: 0;
  padding: 0.35rem 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  background: rgba(241, 245, 249, 0.95);
  border-radius: 999px;
  border: 1px solid rgba(38, 60, 80, 0.1);
}

.oem-catalog-ds-featured-v11__cta {
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v11:focus-visible {
  outline: 2px solid var(--magtek-red, #d21242);
}

/* --- Study 12: full-bleed band --- */
.oem-catalog-ds-v12-slot {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: 100vw;
}

.oem-catalog-ds-featured-v12 {
  display: block;
  text-decoration: none;
  color: inherit;
  outline-offset: 4px;
}

.oem-catalog-ds-featured-v12__bleed {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  background:
    linear-gradient(90deg, rgba(210, 18, 66, 0.06) 0%, transparent 45%),
    linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
  border-top: 1px solid rgba(38, 60, 80, 0.08);
  border-bottom: 1px solid rgba(38, 60, 80, 0.08);
}

.oem-catalog-ds-featured-v12__container {
  max-width: 1140px;
}

.oem-catalog-ds-featured-v12__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .oem-catalog-ds-featured-v12__split {
    grid-template-columns: 1fr minmax(220px, 380px);
  }
}

.oem-catalog-ds-featured-v12__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v12__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.85rem, 1.2vw + 1.45rem, 2.35rem);
  font-weight: 700;
  color: #0f172a;
}

.oem-catalog-ds-featured-v12__tagline {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  color: #64748b;
}

.oem-catalog-ds-featured-v12__specs {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  font-size: 1.45rem;
  color: #334155;
}

.oem-catalog-ds-featured-v12__cta {
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v12__visual {
  display: flex;
  justify-content: center;
}

.oem-catalog-ds-featured-v12__img {
  max-width: 100%;
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(15, 23, 42, 0.12));
}

.oem-catalog-ds-featured-v12:focus-visible {
  outline: 2px solid var(--magtek-red, #d21242);
}

/* --- Study 13: stepped deck --- */
.oem-catalog-ds-featured-v13 {
  display: block;
  text-decoration: none;
  color: inherit;
  outline-offset: 4px;
}

.oem-catalog-ds-featured-v13__deck {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 1.75rem;
}

.oem-catalog-ds-featured-v13__layer {
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(38, 60, 80, 0.1);
}

.oem-catalog-ds-featured-v13__layer--back {
  position: absolute;
  left: 1.5rem;
  right: -0.25rem;
  top: 0.5rem;
  height: calc(100% - 1.25rem);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  transform: rotate(-1.2deg);
  z-index: 0;
}

.oem-catalog-ds-featured-v13__layer--mid {
  position: absolute;
  left: 0.75rem;
  right: 0.35rem;
  top: 0.25rem;
  height: calc(100% - 1rem);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  transform: rotate(0.6deg);
  z-index: 1;
  border-top: 3px solid rgba(210, 18, 66, 0.35);
}

.oem-catalog-ds-featured-v13__layer--front {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 16px 40px -16px rgba(38, 60, 80, 0.2);
  border-top: 4px solid var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v13__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.oem-catalog-ds-featured-v13__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.6rem, 1vw + 1.35rem, 1.95rem);
  font-weight: 700;
  color: #0f172a;
}

.oem-catalog-ds-featured-v13__tagline {
  margin: 0 0 0.85rem;
  font-size: 1.4rem;
  color: #64748b;
}

.oem-catalog-ds-featured-v13__media {
  margin: 0 0 1rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 10px;
  text-align: center;
}

.oem-catalog-ds-featured-v13__img {
  max-height: 140px;
  width: auto;
  object-fit: contain;
}

.oem-catalog-ds-featured-v13__specs {
  margin: 0 0 0.85rem;
  padding: 0;
  list-style: none;
  font-size: 1.35rem;
  color: #334155;
}

.oem-catalog-ds-featured-v13__cta {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v13:focus-visible {
  outline: 2px solid var(--magtek-red, #d21242);
}

/* --- Study 14: circle + chips --- */
.oem-catalog-ds-featured-v14 {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  outline-offset: 4px;
}

.oem-catalog-ds-featured-v14__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  max-width: 1040px;
  margin: 0 auto;
  padding: 1.25rem;
}

.oem-catalog-ds-featured-v14__orbit {
  flex: 0 0 auto;
}

.oem-catalog-ds-featured-v14__circle {
  width: min(220px, 70vw);
  height: min(220px, 70vw);
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
  border: 4px solid #fff;
  box-shadow:
    0 0 0 1px rgba(38, 60, 80, 0.08),
    0 16px 40px -12px rgba(38, 60, 80, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.oem-catalog-ds-featured-v14__img {
  width: 78%;
  height: auto;
  object-fit: contain;
}

.oem-catalog-ds-featured-v14__copy {
  flex: 1 1 260px;
  min-width: 0;
}

.oem-catalog-ds-featured-v14__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v14__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.65rem, 1vw + 1.4rem, 2rem);
  font-weight: 700;
  color: #0f172a;
}

.oem-catalog-ds-featured-v14__tagline {
  margin: 0 0 1rem;
  font-size: 1.45rem;
  color: #64748b;
}

.oem-catalog-ds-featured-v14__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
}

.oem-catalog-ds-featured-v14__chip {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  background: #fff;
  border: 1px solid rgba(38, 60, 80, 0.12);
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.oem-catalog-ds-featured-v14__cta {
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v14:focus-visible {
  outline: 2px solid var(--magtek-red, #d21242);
}

/* --- Study 15: blueprint --- */
.oem-catalog-ds-featured-v15 {
  display: block;
  text-decoration: none;
  color: inherit;
  outline-offset: 4px;
}

.oem-catalog-ds-featured-v15__plate {
  max-width: 1040px;
  margin: 0 auto;
  padding: 1.35rem 1.25rem;
  background: #fafbfc;
  border: 2px dashed rgba(38, 60, 80, 0.22);
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.oem-catalog-ds-featured-v15__fig {
  display: block;
  font-family:
    ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #64748b;
  margin-bottom: 1rem;
}

.oem-catalog-ds-featured-v15__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .oem-catalog-ds-featured-v15__grid {
    grid-template-columns: minmax(200px, 1fr) minmax(0, 1.2fr);
    align-items: start;
  }
}

.oem-catalog-ds-featured-v15__sketch {
  padding: 1rem;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 8px,
    rgba(38, 60, 80, 0.04) 8px,
    rgba(38, 60, 80, 0.04) 9px
  );
  border: 1px solid rgba(38, 60, 80, 0.12);
  border-radius: 2px;
  text-align: center;
}

.oem-catalog-ds-featured-v15__img {
  max-height: 180px;
  width: auto;
  object-fit: contain;
}

.oem-catalog-ds-featured-v15__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.6rem, 1vw + 1.35rem, 1.95rem);
  font-weight: 700;
  color: #0f172a;
}

.oem-catalog-ds-featured-v15__tagline {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  color: #475569;
  font-weight: 600;
}

.oem-catalog-ds-featured-v15__dl {
  margin: 0 0 1rem;
  display: grid;
  grid-template-columns: minmax(5rem, auto) 1fr;
  gap: 0.35rem 1rem;
  font-size: 1.35rem;
}

.oem-catalog-ds-featured-v15__dl dt {
  margin: 0;
  font-weight: 700;
  color: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v15__dl dd {
  margin: 0;
  color: #1e293b;
}

.oem-catalog-ds-featured-v15__cta {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0f172a;
}

.oem-catalog-ds-featured-v15:focus-visible {
  outline: 2px solid var(--magtek-red, #d21242);
}

/* --- Study 16: diagonal cut --- */
.oem-catalog-ds-featured-v16 {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 0;
  outline-offset: 4px;
}

.oem-catalog-ds-featured-v16__shell {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1040px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 20px 50px -28px rgba(15, 23, 42, 0.25);
}

@media (min-width: 768px) {
  .oem-catalog-ds-featured-v16__shell {
    grid-template-columns: 1fr 1fr;
    min-height: 280px;
  }
}

.oem-catalog-ds-featured-v16__diag {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.oem-catalog-ds-featured-v16__diag--media {
  background: linear-gradient(135deg, #e8eef5 0%, #dce6f0 100%);
  align-items: center;
}

@media (min-width: 768px) {
  .oem-catalog-ds-featured-v16__diag--media {
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    margin-right: -12%;
  }

  .oem-catalog-ds-featured-v16__diag--copy {
    padding-left: 8%;
  }
}

.oem-catalog-ds-featured-v16__img {
  max-width: min(100%, 320px);
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(15, 23, 42, 0.12));
}

.oem-catalog-ds-featured-v16__diag--copy {
  background: #fff;
}

.oem-catalog-ds-featured-v16__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v16__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.65rem, 1vw + 1.4rem, 2rem);
  font-weight: 700;
  color: #0f172a;
}

.oem-catalog-ds-featured-v16__tagline {
  margin: 0 0 0.85rem;
  font-size: 1.45rem;
  color: #64748b;
}

.oem-catalog-ds-featured-v16__specs {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  font-size: 1.4rem;
  color: #334155;
}

.oem-catalog-ds-featured-v16__cta {
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--magtek-red, #d21242);
}

.oem-catalog-ds-featured-v16:focus-visible {
  outline: 2px solid var(--magtek-red, #d21242);
}
