/* =============================================
   GIFT CARDS PAGE
   ============================================= */

.giftcards-page { background: var(--hh-black); }

/* --- Hero --- */
.gc-hero {
  padding: 80px 24px 64px;
  text-align: center;
  background: var(--hh-black);
  overflow: hidden;
  position: relative;
}
.gc-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(227,0,11,0.12) 0%, transparent 70%);
  transform: translate(-50%, -60%);
  pointer-events: none;
}
.gc-hero__inner {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.gc-hero__mascot {
  margin-bottom: 28px;
}
.gc-hero__mascot img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--hh-charcoal);
  border: 3px solid var(--hh-red);
  object-fit: cover;
  animation: gc-pulse 3s ease-in-out infinite;
}
@keyframes gc-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(227,0,11,0.3); }
  50% { box-shadow: 0 0 0 16px rgba(227,0,11,0); }
}
.gc-hero__heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 8vw, 56px);
  text-transform: uppercase;
  color: var(--hh-white);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.gc-hero__sub {
  font-size: 17px;
  color: var(--hh-gray);
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.gc-hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- How It Works --- */
.gc-how {
  padding: 64px 24px;
  background: var(--hh-charcoal);
}
.gc-how__inner {
  max-width: 800px;
  margin: 0 auto;
}
.gc-how__heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 5vw, 36px);
  text-transform: uppercase;
  color: var(--hh-white);
  text-align: center;
  margin-bottom: 40px;
}
.gc-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.gc-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
}
.gc-step__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hh-red);
  color: var(--hh-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  border-radius: 12px;
}
.gc-step__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--hh-white);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.gc-step__desc {
  font-size: 14px;
  color: var(--hh-gray);
  line-height: 1.5;
}

/* --- Occasions --- */
.gc-occasions {
  padding: 64px 24px;
  background: var(--hh-black);
}
.gc-occasions__inner {
  max-width: 800px;
  margin: 0 auto;
}
.gc-occasions__heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 5vw, 36px);
  text-transform: uppercase;
  color: var(--hh-white);
  text-align: center;
  margin-bottom: 40px;
}
.gc-occasions__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.gc-occasion {
  padding: 28px 20px;
  background: var(--hh-charcoal);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.gc-occasion:hover {
  border-color: rgba(227,0,11,0.3);
  transform: translateY(-2px);
}
.gc-occasion__icon {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1;
}
.gc-occasion__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--hh-white);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.gc-occasion__desc {
  font-size: 13px;
  color: var(--hh-gray);
  line-height: 1.5;
}

/* --- CTA --- */
.gc-cta {
  padding: 80px 24px;
  background: var(--hh-charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gc-cta__inner {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.gc-cta__mascot {
  width: 140px;
  height: auto;
  margin-bottom: 24px;
  border-radius: 16px;
  background: var(--hh-black);
  padding: 8px;
}
.gc-cta__heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 6vw, 44px);
  text-transform: uppercase;
  color: var(--hh-white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.gc-cta__sub {
  font-size: 16px;
  color: var(--hh-gray);
  margin-bottom: 28px;
}
.gc-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Responsive --- */
@media (max-width: 520px) {
  .gc-occasions__grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) {
  .gc-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .gc-step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* --- Print --- */
@media print {
  .subpage-header { display: none; }
  .gc-hero { background: #fff; }
  .gc-hero__heading { color: #000; }
}
