/* ============================================================================
   Joenit public site — B-Stock deals page. Layered on styles.css + catalogue.css
   (reuses the .cat__head header block and the .pcard card grid). Owns only the
   deal-specific bits: the amber discount badge, the struck "was" price and the
   one-unit chip. Cards are not clickable (no variant modal — one unit, one price).
   ========================================================================== */

.cat__dot--deal{background:#d97706}                 /* amber, matches the hero CTA */

.pcard--deal{cursor:default}
.pcard--deal:hover{transform:none}
.pcard--deal:hover .pcard__media img{transform:none}

.dealbadge{
  position:absolute; top:.6rem; left:.6rem; z-index:1;
  background:linear-gradient(180deg,#f59e0b,#d97706); color:#fff;
  font-weight:800; font-size:.85rem; letter-spacing:.02em;
  padding:.25rem .65rem; border-radius:999px;
  box-shadow:0 2px 8px rgba(0,0,0,.18);
}

.pcard__was{
  font-size:.85rem; font-weight:600; color:var(--grey-500);
  text-decoration:line-through;
}
.pcard__unit{
  margin-top:.35rem; font-size:.72rem; font-weight:600; color:var(--grey-500);
  text-transform:uppercase; letter-spacing:.05em;
}
