.fp-e { background: var(--cream); padding: 96px 0 120px; }
.fp-e__head { max-width: 700px; margin-bottom: 48px; }
.fp-e__head h2 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(32px, 4vw, 52px); margin: 0; }
.fp-e__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 769px) { .fp-e__grid { grid-template-columns: repeat(3, 1fr); } }
.fp-e__card {
  display: flex;
  gap: 16px;
  padding: 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  cursor: pointer;
  align-items: center;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  border: 2px solid transparent;
  position: relative;
}
.fp-e__card:has(input:checked) { border-color: var(--teal); }
.fp-e__card input { position: absolute; opacity: 0; pointer-events: none; }
.fp-e__check {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--line);
  flex-shrink: 0;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
}
.fp-e__card:has(input:checked) .fp-e__check {
  background: var(--teal);
  border-color: var(--teal);
}
.fp-e__card:has(input:checked) .fp-e__check::after {
  content: '';
  position: absolute;
  top: 6px; left: 9px;
  width: 8px; height: 12px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
}
.fp-e__img { width: 70px; height: 70px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.fp-e__img img { width: 100%; height: 100%; object-fit: cover; }
.fp-e__info h3 { font-family: var(--font-serif); font-weight: 400; font-size: 18px; margin: 0 0 4px; color: var(--navy); }
.fp-e__price { font-size: 14px; color: var(--ink-muted); }

.fp-e__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 24px 32px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
}
.fp-e__total-row { display: flex; align-items: baseline; gap: 20px; flex-wrap: wrap; }
.fp-e__total-label { color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.fp-e__total-price { font-family: var(--font-serif); font-size: 32px; }
.fp-e__total-save { background: var(--pink); color: var(--navy); padding: 4px 12px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; }
.fp-e__cta:disabled, .fp-e__cta[disabled] { opacity: 0.4; pointer-events: none; }
