.pricing-hero {
  min-height: 500px;
}

.pricing-main {
  display: grid;
  gap: 88px;
}

.pricing-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.pricing-intro p:last-child {
  max-width: 780px;
  margin: 0 auto;
}

.pricing-section {
  display: grid;
  gap: 28px;
}

.pricing-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.pricing-heading h2 {
  margin-bottom: 0;
}

.section-note {
  max-width: 360px;
  margin: 0;
  text-align: right;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.compact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(240,195,107,.12), transparent 38%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: 0 18px 38px rgba(0,0,0,.3);
  overflow: hidden;
}

.featured-price-card {
  border-color: rgba(240,195,107,.65);
  box-shadow: 0 20px 45px rgba(201,154,71,.16), 0 18px 38px rgba(0,0,0,.35);
}

.website-exclusive {
  border-color: rgba(136,190,255,.45);
  background:
    radial-gradient(circle at top right, rgba(136,190,255,.15), transparent 38%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
}

.price-card-topline {
  min-height: 30px;
  margin-bottom: 10px;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #160e08;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.subtle-badge {
  background: rgba(240,195,107,.12);
  color: var(--gold-2);
  border: 1px solid var(--line);
}

.exclusive-badge {
  background: rgba(136,190,255,.14);
  color: #cde5ff;
  border: 1px solid rgba(136,190,255,.3);
}

.price-card h3 {
  font-size: 30px;
  margin-bottom: 4px;
}

.product-size {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: .04em;
}

.price {
  margin: 18px 0 20px;
  color: var(--gold-2);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(44px, 7vw, 66px);
  font-weight: 700;
  line-height: 1;
}

.price-card ul {
  margin: 0;
  padding-left: 20px;
  color: #ead9bc;
  font-family: Arial, sans-serif;
  line-height: 1.7;
}

.price-card li + li {
  margin-top: 5px;
}

.accessory-note {
  margin: auto 0 0;
  padding-top: 22px;
  color: var(--gold-2);
  font-weight: 700;
}

.muted-accessory {
  color: var(--muted);
  font-weight: 400;
}

.compact-price-card .price {
  font-size: 52px;
}

.accessory-card {
  border-style: dashed;
}

/* Product photo treatment for the faceted heart card. This uses the third
   crystal card so the current HTML stays clean while more product photos
   are collected. */
#crystal-pricing + .section-note {
  position: relative;
}

.pricing-section[aria-labelledby="crystal-pricing"] .pricing-grid > .price-card:nth-child(3)::before {
  content: "";
  display: block;
  width: calc(100% + 56px);
  height: 245px;
  margin: -28px -28px 22px;
  background:
    linear-gradient(180deg, transparent 72%, rgba(26,17,12,.72)),
    url("pictures/products/faceted-heart-crystal.webp") center 47% / cover no-repeat;
  border-bottom: 1px solid rgba(240,195,107,.22);
}

.pricing-section[aria-labelledby="crystal-pricing"] .pricing-grid > .price-card:nth-child(3) {
  border-color: rgba(240,195,107,.42);
  background: linear-gradient(180deg, rgba(53,36,24,.98), var(--panel));
}

.pricing-section[aria-labelledby="crystal-pricing"] .pricing-grid > .price-card:nth-child(3)::after {
  content: "Product shape shown before engraving";
  position: absolute;
  top: 210px;
  left: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(13,9,7,.78);
  color: rgba(255,255,255,.88);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  backdrop-filter: blur(8px);
}

.addon-section {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(201,154,71,.1), rgba(36,24,16,.96));
}

.addon-list {
  display: grid;
  gap: 12px;
}

.addon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 22px;
  border: 1px solid rgba(240,195,107,.16);
  border-radius: 18px;
  background: rgba(0,0,0,.18);
}

.addon-row h3 {
  margin: 0 0 5px;
  font-size: 21px;
}

.addon-row p {
  margin: 0;
}

.addon-row strong {
  flex: 0 0 auto;
  color: var(--gold-2);
  font-family: Arial, sans-serif;
  font-size: 18px;
  white-space: nowrap;
}

.coming-prices {
  text-align: center;
}

.pricing-soon-list {
  margin-top: 0;
}

.coming-prices-copy {
  max-width: 720px;
  margin: 0 auto;
}

.pricing-cta {
  margin-bottom: 0;
}

.nav-links a[aria-current="page"] {
  color: var(--gold-2);
  border-bottom: 1px solid rgba(240,195,107,.55);
}

@media (max-width: 900px) {
  .pricing-main {
    gap: 68px;
  }

  .pricing-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .pricing-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-note {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .price-card,
  .addon-section {
    padding: 22px;
  }

  .pricing-section[aria-labelledby="crystal-pricing"] .pricing-grid > .price-card:nth-child(3)::before {
    width: calc(100% + 44px);
    height: 210px;
    margin: -22px -22px 20px;
  }

  .pricing-section[aria-labelledby="crystal-pricing"] .pricing-grid > .price-card:nth-child(3)::after {
    top: 180px;
    left: 22px;
  }

  .addon-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .price {
    font-size: 48px;
  }
}
