.gift-catalog-hero,
.gift-catalog-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.gift-catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 64px;
  align-items: end;
  padding: 72px 0 52px;
  border-bottom: 1px solid var(--line);
}

.gift-catalog-hero h1 {
  margin: 14px 0 20px;
  font-size: 48px;
  line-height: 1.08;
}

.gift-catalog-hero p {
  max-width: 740px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.gift-catalog-hero ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gift-catalog-hero li {
  padding: 13px 16px;
  background: #fff;
  border-left: 3px solid var(--teal);
  font-weight: 700;
}

.gift-catalog-hero li::before {
  content: "\2713";
  margin-right: 10px;
  color: var(--teal);
}

.gift-catalog-section {
  padding: 58px 0 70px;
}

.gift-catalog-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: end;
  gap: 30px;
  margin-bottom: 28px;
}

.gift-catalog-section .section-heading .eyebrow {
  grid-column: 1;
}

.gift-catalog-section .section-heading h2 {
  grid-column: 1;
  margin: 8px 0 0;
  font-size: 34px;
}

.gift-catalog-section .section-heading p {
  grid-column: 2;
  grid-row: 1 / 3;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.gift-product-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 20px;
  min-height: 350px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 7px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.gift-product-card.is-selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(240, 205, 142, .28);
}

.gift-product-card-premium {
  border-top-color: #a87820;
}

.gift-product-card > img {
  display: block;
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.gift-product-card h3 {
  margin: 7px 0 9px;
  font-size: 23px;
}

.gift-product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.gift-product-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.gift-product-card li {
  padding: 8px 0;
  border-top: 1px solid #eee8ef;
}

.gift-product-card li::before {
  content: "\2713";
  margin-right: 9px;
  color: var(--teal);
}

.gift-product-action {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  align-self: end;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.gift-product-action strong {
  margin-right: auto;
  font-size: 25px;
  white-space: nowrap;
}

.gift-product-action .primary-action {
  min-width: 205px;
}

.gift-product-action-detail {
  display: grid;
  grid-template-columns: auto minmax(230px, 1fr);
  column-gap: 18px;
  row-gap: 9px;
}

.gift-product-action-detail strong {
  grid-row: 1 / 3;
  align-self: center;
  margin: 0;
}

.gift-product-action-detail .primary-action {
  grid-column: 2;
  width: 100%;
  min-width: 0;
  white-space: nowrap;
}

.gift-product-action-detail .text-link {
  grid-column: 2;
  justify-self: center;
  white-space: nowrap;
}

.text-link {
  color: var(--plum);
  font-weight: 700;
}

.gift-policy-section details {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.gift-policy-section summary {
  cursor: pointer;
  font-weight: 700;
}

.redeem-preview {
  display: grid;
  gap: 12px;
}

.redeem-preview[hidden] {
  display: none;
}

.redeem-preview h2,
.redeem-preview p {
  margin: 0;
}

.redeem-preview .secondary-action {
  margin-top: 4px;
}

@media (max-width: 860px) {
  .gift-catalog-hero,
  .gift-catalog-section .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gift-catalog-section .section-heading p {
    grid-column: 1;
    grid-row: auto;
  }

  .gift-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .gift-catalog-hero {
    padding-top: 42px;
  }

  .gift-catalog-hero h1 {
    font-size: 34px;
  }

  .gift-product-card {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 19px;
  }

  .gift-product-card > img {
    width: 48px;
    height: 48px;
  }

  .gift-product-action {
    align-items: stretch;
    flex-direction: column;
  }

  .gift-product-action strong {
    margin: 0;
  }

  .gift-product-action .primary-action {
    width: 100%;
    min-width: 0;
  }

  .gift-product-action-detail {
    display: flex;
  }

  .gift-product-action-detail .text-link {
    align-self: center;
  }
}
