/* ---------------------------------------------------------------------
   Bundle deal panel  —  used on Volume One page to show the math.
   --------------------------------------------------------------------- */
.bundle-deal {
  max-width: 420px;
  margin: 28px auto 0;
  padding: 20px 22px 18px;
  background: rgba(246, 239, 222, 0.55);
  border: 1.5px solid #b48316;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(180, 131, 22, 0.12);
  text-align: left;
  font-family: 'Work Sans', system-ui, sans-serif;
}

.bundle-deal__heading {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #14213d;
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.3;
}

.bundle-deal__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 7px 0;
  font-size: 15px;
  color: #3a3a48;
  border-bottom: 1px dashed rgba(180, 131, 22, 0.25);
}
.bundle-deal__row:last-child { border-bottom: 0; }

.bundle-deal__label { color: #3a3a48; }

.bundle-deal__strike {
  color: #8a8a92;
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}

.bundle-deal__row--final {
  padding-top: 10px;
}
.bundle-deal__row--final .bundle-deal__label {
  font-weight: 600;
  color: #14213d;
}
.bundle-deal__price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: #14213d;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.bundle-deal__row--savings {
  padding-top: 8px;
}
.bundle-deal__row--savings .bundle-deal__label {
  font-weight: 600;
  color: #b48316;
}
.bundle-deal__save {
  font-weight: 700;
  color: #b48316;
  font-variant-numeric: tabular-nums;
}

/* Dark theme tweaks (if site has one) */
@media (prefers-color-scheme: dark) {
  .bundle-deal {
    background: rgba(246, 239, 222, 0.08);
  }
  .bundle-deal__row { border-bottom-color: rgba(180, 131, 22, 0.35); }
  .bundle-deal__label { color: #cfcfd6; }
  .bundle-deal__row--final .bundle-deal__label,
  .bundle-deal__price { color: #f6efde; }
  .bundle-deal__strike { color: #8a8a92; }
}

/* ---------------------------------------------------------------------
   Bundle upsell card  —  used on individual picture book pages to point
   readers toward Volume One.
   --------------------------------------------------------------------- */
.bundle-upsell {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 640px;
  margin: 36px auto 0;
  padding: 16px 18px;
  background: rgba(246, 239, 222, 0.6);
  border: 1.5px solid #b48316;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 18px rgba(180, 131, 22, 0.12);
  font-family: 'Work Sans', system-ui, sans-serif;
  transition: transform 0.12s ease, box-shadow 0.15s ease;
}
.bundle-upsell:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(180, 131, 22, 0.22);
}

.bundle-upsell__cover {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

.bundle-upsell__body {
  flex: 1 1 auto;
  min-width: 0;
}

.bundle-upsell__eyebrow {
  display: inline-block;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b48316;
  margin-bottom: 4px;
}

.bundle-upsell__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  color: #14213d;
  line-height: 1.25;
  margin: 0 0 2px;
}

.bundle-upsell__sub {
  font-size: 13.5px;
  color: #3a3a48;
  line-height: 1.4;
}
.bundle-upsell__sub strong { color: #b48316; }

.bundle-upsell__arrow {
  flex: 0 0 auto;
  color: #b48316;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.15s ease;
}
.bundle-upsell:hover .bundle-upsell__arrow {
  transform: translateX(3px);
}

@media (max-width: 520px) {
  .bundle-upsell { padding: 14px; gap: 14px; }
  .bundle-upsell__cover { width: 54px; height: 54px; }
  .bundle-upsell__title { font-size: 17px; }
}

@media (prefers-color-scheme: dark) {
  .bundle-upsell {
    background: rgba(246, 239, 222, 0.08);
  }
  .bundle-upsell__title { color: #f6efde; }
  .bundle-upsell__sub { color: #cfcfd6; }
}
