/* Local Kaching-style bundle selector — 2-up image cards (matches live site). */
.plb-wrap { margin: 0 0 1.6rem; }
.plb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.plb-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .4rem;
  padding: 1.6rem 1.2rem 1.4rem;
  border: 2px solid rgba(var(--color-foreground), .18);
  border-radius: 1rem;
  cursor: pointer;
  background: rgb(var(--color-background));
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
  position: relative;
  overflow: hidden;
}
.plb-card:hover { border-color: rgba(var(--color-foreground), .4); }
.plb-card--active {
  border-color: #e2231a;
  background: #fdecea;
  box-shadow: 0 0 0 1px #e2231a;
}

/* "MOST POPULAR" banner across the top of the card */
.plb-banner {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: #e2231a;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .4rem;
  text-align: center;
}
.plb-card:has(.plb-banner) { padding-top: 2.8rem; }

.plb-media {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: .4rem;
}
.plb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.plb-title { font-weight: 700; font-size: 1.6rem; line-height: 1.2; }
.plb-pricing { display: flex; align-items: baseline; justify-content: center; gap: .6rem; }
.plb-price { font-weight: 700; font-size: 1.7rem; color: #e2231a; }
.plb-compare { font-size: 1.3rem; opacity: .6; text-decoration: line-through; }
.plb-save { font-size: 1.2rem; font-weight: 700; color: #e2231a; }

@media screen and (max-width: 480px) {
  .plb-title { font-size: 1.4rem; }
  .plb-price { font-size: 1.5rem; }
}
