.prqd-bundle,
.prqd-bundle *,
.prqd-bundle *::before,
.prqd-bundle *::after {
  box-sizing: border-box;
}

.prqd-bundle {
  margin: 0 0 1.25rem;
  max-width: 100%;
}
.prqd-bundle__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.prqd-bundle__divider {
  flex: 1;
  height: 1px;
  background: #ddd;
}
.prqd-bundle__title {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}
.prqd-bundle__tiers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.prqd-bundle__tier {
  position: relative;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
  padding: 0.75rem;
}
.prqd-bundle__tier:has(.prqd-bundle__radio:checked) {
  background: #fcf2f7;
}
.prqd-bundle__tier:has(.prqd-bundle__radio:checked) .prqd-bundle__save-pill {
  background: #fff;
}
.prqd-bundle__row {
  margin: 0;
}

/* Custom radios: input must be immediately before label (scoped to bundle) */
.prqd-bundle [type="radio"]:checked,
.prqd-bundle [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.prqd-bundle [type="radio"]:checked + .prqd-bundle__tier-label,
.prqd-bundle [type="radio"]:not(:checked) + .prqd-bundle__tier-label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  color: #333;
  margin: 0;
  min-height: 22px;
}
.prqd-bundle [type="radio"]:checked + .prqd-bundle__tier-label:before,
.prqd-bundle [type="radio"]:not(:checked) + .prqd-bundle__tier-label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}
.prqd-bundle [type="radio"]:checked + .prqd-bundle__tier-label:after,
.prqd-bundle [type="radio"]:not(:checked) + .prqd-bundle__tier-label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: #cf1778;
  position: absolute;
  left: 3px;
  top: 50%;
  margin-top: -6px;
  border-radius: 100%;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.prqd-bundle [type="radio"]:not(:checked) + .prqd-bundle__tier-label:after {
  opacity: 0;
  transform: scale(0);
}
.prqd-bundle [type="radio"]:checked + .prqd-bundle__tier-label:after {
  opacity: 1;
  transform: scale(1);
}

.prqd-bundle__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}
.prqd-bundle__label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  width: 100%;
}
.prqd-bundle__label {
  display: inline-block;
  padding: 0;
  background: none;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-transform: none;
}
.prqd-bundle__save-pill {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  background: #fcf2f7;
  color: #333;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
}
.prqd-bundle__sub {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  color: #4d4d4f;
  text-transform: none;
}
.prqd-bundle__prices {
  text-align: right;
  min-width: 5rem;
  flex-shrink: 0;
}
.prqd-bundle__price-current {
  font-weight: 700;
  font-size: 14px;
  color: #111;
}
.prqd-bundle__tag {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(0, -45%);
  background: #cf1778;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  text-transform: none;
  letter-spacing: normal;
  padding: 2px 10px;
  border-radius: 0;
}
