.gift-cards-page .site-shell {
  min-height: auto;
}

.gift-cards-page {
  background: #f8f0fa;
}

.gift-hero {

  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 80px) 24px 120px;
  text-align: center;
  color: #ffffff;
  background-image:
    linear-gradient(180deg, rgba(9, 7, 18, 0.64) 0%, rgba(22, 13, 41, 0.38) 100%),
    url("../images/gift-cards/Gift-hero-desktop.jpg");
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat;

}

.gift-hero-content {
  width: min(980px, 100%);
}

.gift-hero h1 {
  margin: 0;
  font-size: 80px;
  white-space: nowrap;
  color: #ffffff;
  text-shadow:
    0 0 8px rgba(193, 109, 255, 0.4),
    0 0 18px rgba(151, 40, 184, 0.3),
    0 0 30px rgba(151, 40, 184, 0.2),
    0 8px 20px rgba(0, 0, 0, 0.34);
}

.gift-hero p {
  margin: 38px auto 0;
  width: min(1080px, 100%);
  font-size: 20px;
  color: #ffffff;
}

.gift-choice {
  position: relative;
  background: #f8f0fa;
  padding: 80px 80px 0 80px;
}


.gift-choice-inner {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.gift-choice h2 {
  margin: 0;
  text-align: center;
  font-size: 32px;
}

.gift-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 56px;
}

.gift-product {
  min-width: 0;
  padding: 8px;
  background: #edd4f1;
  border-radius: 14px;
}

.gift-card-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.gift-product h3 {
  margin: 10px 10px 0;
  color: #0c0b11;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .gift-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .gift-cards-page {
    --header-height: 76px;
  }

  .gift-hero {
    min-height: 560px;
    padding: calc(var(--header-height) + 70px) 20px 90px;
  }

  .gift-hero h1 {
    font-size: 52px;
    white-space: normal;
    color: #ffffff;
  }

  .gift-hero p {
    margin-top: 28px;
    font-size: 15px;
    color: #ffffff;
  }

  .gift-choice {
    padding: 70px 24px 86px;
  }

  .gift-choice h2 {
    font-size: 24px;
  }

  .gift-card-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 36px;
  }
}

@media (max-width: 520px) {
  .gift-hero {
    min-height: 720px;
    padding: calc(var(--header-height) + 68px) 16px 70px;
    background-image:
      linear-gradient(180deg, rgba(9, 7, 18, 0.64) 0%, rgba(22, 13, 41, 0.38) 100%),
      url("../images/gift-cards/gift-hero-mobile.png");
  }

  .gift-hero h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .gift-hero p {
    width: min(100%, 320px);
    font-size: 18px;
    line-height: 1.55;
  }

  .gift-choice {
    padding: 64px 14px 72px;
  }

  .gift-choice h2 {
    font-size: 24px;
    line-height: 1.35;
  }

  .gift-product {
    padding: 8px;
  }

  .gift-card-image {
    border-radius: 10px;
  }

  .gift-product h3 {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 700;
  }
}
