/**
 * Podlood Bundles: PDP-elementen. Theme-tokens met fallback zodat het ook onder
 * een ander thema leesbaar blijft.
 */

.podb-savings {
  margin: 0.25rem 0 0.75rem;
  font-size: 0.9rem;
  color: var(--color-muted, #6b6b6b);
}

.podb-contents { margin: 0 0 1.5rem; }

.podb-contents__title {
  margin: 0 0 0.6rem;
  font-family: var(--font-sans, inherit);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted, #6b6b6b);
}

.podb-contents__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Plusje tussen de onderdelen: "A + B + C", benadrukt dat je meer krijgt.
   Groter dan de tussenruimte, zodat het over beide kaartjes heen valt. */
.podb-contents__list li { position: relative; }
.podb-contents__list li + li { margin-top: 0.75rem; }
.podb-contents__list li + li::before {
  content: '+';
  position: absolute;
  top: -0.375rem; /* midden van de tussenruimte */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.85rem;
  height: 1.85rem;
  border: 2px solid #fff;
  border-radius: 9999px;
  box-sizing: border-box;
  background: var(--color-ink, #232323);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: calc(1.85rem - 4px);
  text-align: center;
  z-index: 1;
}

.podb-contents__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border: 1px solid var(--color-line, #e2e2e2);
  border-radius: 0.6rem;
  background: #fff;
  color: inherit;
  text-decoration: none;
}
.podb-contents__item:hover { border-color: var(--color-ink, #232323); }

.podb-contents__item img {
  width: 3.5rem;
  height: 4.375rem;
  object-fit: cover;
  border-radius: 0.35rem;
  flex: 0 0 auto;
}

.podb-contents__name {
  flex: 1;
  min-width: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.podb-contents__price {
  flex: 0 0 auto;
  font-size: 0.9rem;
  color: var(--color-muted, #6b6b6b);
  white-space: nowrap;
}
