/* ALLBATTERY · ab_bundle PDP block */
.pdp__bundle {
  margin: 0 0 20px;
  padding: 12px 16px 14px;
  background: var(--bg-2);
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px var(--line);
}
.pdp__bundle__lead {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}
.pdp__bundle__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.pdp__bundle__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #fff;
  border-radius: var(--r-sm);
  box-shadow: inset 0 0 0 1.5px var(--line);
  cursor: pointer;
  transition: box-shadow .15s, background .15s;
}
.pdp__bundle__item:hover { box-shadow: inset 0 0 0 1.5px #b7e4c7; }
.pdp__bundle__item.is-selected {
  box-shadow: inset 0 0 0 2px var(--blue);
  background: var(--blue-50);
}
.pdp__bundle__check {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  accent-color: var(--blue);
  cursor: pointer;
}
.pdp__bundle__thumb {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: var(--r-sm);
  background: var(--bg);
  flex: 0 0 64px;
}
.pdp__bundle__name {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink-2);
}
.pdp__bundle__price {
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--ink);
}
.pdp__bundle__total {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-700);
  margin-bottom: 0;
  min-height: 1.2em;
}
