/* Keep the studio's four-card pricing layout while making the offer clear. */
.price-card {
  min-width: 0;
  min-height: 615px;
}
.price-card h3 {
  margin-bottom: 9px;
}
.price-card .original-price,
.price-card .promo-label {
  min-height: 23px;
  margin: 0;
  color: #74675b;
  font: 13px/1.5 var(--serif);
}
.price-card.featured .original-price {
  color: #dfcdbb;
}
.price-card .promo-label {
  color: #9d7749;
  font-style: italic;
}
.original-price del {
  position: relative;
  display: inline-block;
  padding-inline: 2px;
  text-decoration: none;
}
.original-price del::after {
  content: "";
  position: absolute;
  top: 51%;
  left: -7%;
  width: 114%;
  height: 2px;
  background: #a75c54;
  transform: rotate(-13deg);
}
.featured .original-price del::after {
  background: #efc59f;
}
.price-card .price-row {
  min-height: 78px;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.price-card .price-row .price {
  margin: 0;
  font-size: clamp(39px, 3.4vw, 48px);
  white-space: nowrap;
}
.discount-badge {
  width: 64px;
  height: 64px;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #bd936a;
  border-radius: 50%;
  background: #fff8ef;
  color: #894449;
  font: 700 9px/1.2 var(--sans);
  letter-spacing: .06em;
  box-shadow: 0 0 0 3px #fffdf9, 0 0 0 4px #d9bd9e;
  transform: rotate(7deg);
}
.discount-badge strong {
  font: italic 700 20px/1 var(--serif);
  letter-spacing: -.05em;
}
.featured .discount-badge {
  background: #f5dfc8;
  color: #66343a;
  box-shadow: 0 0 0 3px #302720, 0 0 0 4px #bc946d;
}
.price-card .price-desc {
  margin-bottom: 17px;
  min-height: 65px;
}
.price-card li {
  padding: 5px 0 5px 18px;
  font-size: 11px;
  line-height: 1.45;
}
.price-card li::before {
  top: 7px;
}
.price-card .badge.promo-badge {
  background: #eed8cb;
}
.price-card .button {
  margin-top: auto;
}
.add-on p {
  max-width: 780px;
}
@media (max-width: 1100px) {
  .price-card { min-height: 555px; }
  .price-card .price-row .price { font-size: 48px; }
  .price-card li { font-size: 12px; }
}
@media (max-width: 600px) {
  .price-card { min-height: auto; }
  .price-card h3 { min-height: auto; }
  .price-card .price-desc { min-height: auto; }
  .price-card .price-row { justify-content: flex-start; gap:22px; }
  .price-card ul { margin-top: 0; }
}
