/* GENERAL PAGE LAYOUT */

body {
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background-color: #ffffff;
  color: #111111;
}

/* keep content from touching edges on very wide screens */
.gift-main {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

/* TOP NAV BAR (Nike Gift Cards + Gifts for Men/Women etc.) */

.gift-top-nav {
  border-bottom: 1px solid #e5e5e5;
  background-color: #fafafa;
}

.gift-top-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gift-top-title {
  font-weight: 700;
}

.gift-top-links a {
  margin-left: 18px;
  text-decoration: none;
  color: #555555;
  font-weight: 500;
}

.gift-top-links a:hover {
  color: #111111;
}

/* HERO SECTION */

.gift-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 0 40px;
}

.gift-hero-text {
  max-width: 540px;
}

.gift-tagline {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #777777;
  margin-bottom: 12px;
}

.gift-hero-text h1 {
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.gift-hero-copy {
  font-size: 15px;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 24px;
}

.gift-hero-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-primary.small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: none;
  cursor: pointer;
}

.btn-primary,
.btn-primary.small {
  background-color: #111111;
  color: #ffffff;
  border: 1px solid #111111;
}

.btn-primary:hover,
.btn-primary.small:hover {
  background-color: #333333;
  border-color: #333333;
}

.btn-secondary {
  background-color: #ffffff;
  color: #111111;
  border: 1px solid #111111;
}

.btn-secondary:hover {
  background-color: #f5f5f5;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #111111;
  color: #111111;
}

.btn-outline:hover {
  background-color: #111111;
  color: #ffffff;
}

.btn-primary.small {
  padding-inline: 16px;
  font-size: 13px;
}

/* HERO IMAGE */

.gift-hero-image {
  flex: 1 1 0;
  display: flex;
  justify-content: flex-end;
}

.gift-hero-image img {
  max-width: 420px;
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* FAQ SECTION */

.gift-faq {
  border-top: 1px solid #e5e5e5;
  padding-top: 32px;
}

.gift-faq-inner {
  max-width: 800px;
  padding-top: 8px;
}

.faq-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: #777777;
  margin-bottom: 16px;
}

.faq-item {
  margin-bottom: 28px;
}

.faq-item h2 {
  font-size: 20px;
  margin-bottom: 6px;
}

.faq-item p {
  font-size: 14px;
  line-height: 1.7;
  color: #444444;
}

/* MORE QUESTIONS CTA */

.gift-more-questions {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
}

.gift-more-questions h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.gift-more-questions p {
  font-size: 14px;
  color: #555555;
  margin-bottom: 16px;
  max-width: 520px;
}

.gift-more-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .gift-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .gift-hero-image {
    width: 100%;
    justify-content: center;
  }

  .gift-hero-image img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .gift-top-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .gift-top-links {
    display: flex;
    flex-wrap: wrap;
  }

  .gift-top-links a {
    margin-left: 0;
    margin-right: 16px;
    font-size: 12px;
  }

  .gift-main {
    padding: 0 16px 60px;
  }

  .gift-hero-text h1 {
    font-size: 30px;
  }

  .gift-hero-copy {
    font-size: 14px;
  }

  .gift-hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .gift-hero {
    padding-top: 32px;
  }

  .gift-hero-text h1 {
    font-size: 26px;
  }

  .gift-hero-copy {
    font-size: 13px;
  }

  .faq-item h2 {
    font-size: 18px;
  }

  .gift-more-questions h3 {
    font-size: 16px;
  }
}


.toggle-faq-btn {
  margin: 20px 10px;
  display: block;
  padding: 12px 24px;
  background: black;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
}

.toggle-faq-btn:hover {
  opacity: .8;
}
