.price-sheet-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: end;
  color: #fff;
  background: #151515 url("wowcardsGROKNEW/gift%20cards%201.jpeg") center / cover no-repeat;
  isolation: isolate;
}

.price-sheet-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8,8,8,.93) 0%, rgba(8,8,8,.72) 52%, rgba(8,8,8,.2) 100%);
}

.price-sheet-hero .wrap {
  padding-block: 76px 62px;
}

.price-sheet-copy {
  max-width: 720px;
}

.price-sheet-copy h1 {
  max-width: 690px;
  margin: 12px 0 18px;
  font-size: clamp(45px, 6vw, 76px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: 0;
}

.price-sheet-copy .hero-lead {
  max-width: 660px;
}

.received-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 6px;
  background: rgba(0,0,0,.35);
  font-size: 13px;
  font-weight: 800;
}

.received-note svg {
  width: 18px;
  color: var(--yellow);
}

.price-inclusion-bar {
  background: var(--yellow);
  color: var(--ink);
}

.price-inclusion-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  font-weight: 900;
  font-size: 14px;
}

.price-inclusion-inner span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.price-inclusion-inner svg {
  width: 18px;
}

.pricing-section {
  padding-block: 72px;
  background: #f5f5f6;
}

.pricing-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.pricing-head .section-intro {
  max-width: 470px;
  margin: 0;
}

.price-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.price-option {
  position: relative;
  min-height: 164px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
  overflow: hidden;
  border: 2px solid #dedfe2;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.price-option:hover {
  transform: translateY(-2px);
  border-color: #999;
}

.price-option.selected,
.price-option:has(input:checked) {
  border-color: var(--pink);
  box-shadow: 0 12px 32px rgba(230,0,126,.12);
}

.price-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.price-option .choice-check {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 2px solid #c8c9cc;
  border-radius: 50%;
  color: transparent;
}

.price-option.selected .choice-check,
.price-option:has(input:checked) .choice-check {
  border-color: var(--pink);
  background: var(--pink);
  color: #fff;
}

.price-option .choice-check svg {
  width: 14px;
}

.price-option .quantity {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-option .amount {
  margin: 7px 0 5px;
  font-size: clamp(34px, 4vw, 47px);
  line-height: 1;
  font-weight: 900;
  color: var(--pink);
}

.price-option .unit {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.popular-tag {
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 10px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.selection-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 18px;
  padding: 24px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.selection-panel strong {
  display: block;
  margin-bottom: 4px;
  font-size: 19px;
}

.selection-panel p {
  margin: 0;
  color: #c8c9cc;
  font-size: 14px;
}

.pricing-fineprint {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.included-item {
  min-height: 164px;
  padding: 24px;
  background: #fff;
}

.included-item svg {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  padding: 12px;
  border: 1px solid #bde7e3;
  border-radius: 8px;
  background: #eaf8f6;
  color: var(--teal);
  stroke-width: 2.2;
}

.included-item h3 {
  margin-bottom: 5px;
  font-size: 17px;
}

.included-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.option-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.option-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
  background: #252525;
}

.option-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.option-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(0,0,0,.92));
}

.option-card div {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 17px;
  color: #fff;
}

.option-card h3 {
  margin-bottom: 3px;
  font-size: 17px;
}

.option-card p {
  margin: 0;
  color: #d8d9dc;
  font-size: 12px;
}

.next-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 64px;
  align-items: center;
}

.next-steps {
  counter-reset: price-step;
  border-top: 1px solid var(--line);
}

.next-step {
  counter-increment: price-step;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.next-step::before {
  content: counter(price-step);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-weight: 900;
}

.next-step h3 {
  margin-bottom: 4px;
  font-size: 17px;
}

.next-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.sample-band {
  background: var(--yellow);
}

.sample-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 54px;
}

.sample-layout img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 8px;
}

.sample-layout .section-kicker {
  color: #7a4300;
}

@media (max-width: 900px) {
  .price-choice-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid, .option-gallery { grid-template-columns: repeat(2, 1fr); }
  .next-layout, .sample-layout { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 700px) {
  .price-sheet-hero { min-height: 510px; }
  .price-sheet-hero::before { background: linear-gradient(0deg, rgba(8,8,8,.96) 0%, rgba(8,8,8,.62) 70%, rgba(8,8,8,.3) 100%); }
  .price-sheet-hero .wrap { padding: 110px 14px 42px; }
  .price-sheet-copy h1 { font-size: 45px; }
  .price-inclusion-inner { min-height: 76px; flex-wrap: wrap; gap: 5px 14px; padding-block: 12px; font-size: 11px; }
  .pricing-section { padding-block: 48px; }
  .pricing-head { display: block; margin-bottom: 22px; }
  .pricing-head .section-intro { margin-top: 12px; }
  .price-choice-grid { gap: 8px; }
  .price-option { min-height: 142px; padding: 19px 14px; }
  .price-option .choice-check { top: 10px; right: 10px; width: 21px; height: 21px; }
  .price-option .amount { font-size: 33px; }
  .price-option .quantity { font-size: 11px; }
  .price-option .unit { font-size: 11px; }
  .popular-tag { font-size: 8px; padding: 5px 7px; }
  .selection-panel { grid-template-columns: 1fr; gap: 15px; padding: 19px; }
  .selection-panel .button { width: 100%; }
  .included-grid { grid-template-columns: 1fr 1fr; }
  .included-item { min-height: 145px; padding: 18px; }
  .included-item svg { width: 46px; height: 46px; margin-bottom: 16px; padding: 10px; }
  .option-gallery { grid-template-columns: 1fr 1fr; gap: 8px; }
  .option-card { min-height: 205px; }
  .option-card div { left: 13px; right: 13px; bottom: 13px; }
  .sample-layout { gap: 24px; }
}

@media (max-width: 360px) {
  .price-sheet-copy h1 { font-size: 40px; }
  .price-option .amount { font-size: 29px; }
  .option-gallery { grid-template-columns: 1fr; }
}
