/* Gift card purchase page — pairs with about.css for nav/footer/base. */

.gift-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 20px 64px;
}

.gift-hero {
  text-align: center;
  margin-bottom: 32px;
}
.gift-hero h1 {
  color: #2c5f4f;
  font-size: 2.1em;
  margin: 0 0 12px;
}
.gift-hero p {
  color: #555;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.gift-card-form {
  background: #fff;
  border: 1px solid #e3ece6;
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 6px 24px rgba(44, 95, 79, .06);
}

.gift-section {
  border: none;
  padding: 0;
  margin: 0 0 26px;
}
.gift-section legend {
  font-size: .8em;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7a9485;
  font-weight: 700;
  margin-bottom: 12px;
  padding: 0;
}

.gift-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.gift-preset {
  flex: 1 1 auto;
  min-width: 72px;
  padding: 12px 0;
  border: 1.5px solid #cdddd4;
  background: #f8fbf9;
  color: #2c5f4f;
  border-radius: 10px;
  font-size: 1.05em;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s ease;
}
.gift-preset:hover { border-color: #2c5f4f; }
.gift-preset.selected {
  background: #2c5f4f;
  color: #fff;
  border-color: #2c5f4f;
}

.gift-field { display: block; margin-bottom: 16px; }
.gift-field > span {
  display: block;
  font-size: .92em;
  color: #444;
  margin-bottom: 6px;
  font-weight: 600;
}
.gift-field > span small { font-weight: 400; color: #6b6b6b; }

.gift-field input,
.gift-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1.5px solid #d8e3dd;
  border-radius: 9px;
  font-size: 1em;
  font-family: inherit;
  color: #333;
}
.gift-field input:focus,
.gift-field textarea:focus {
  outline: none;
  border-color: #2c5f4f;
  box-shadow: 0 0 0 3px rgba(44, 95, 79, .1);
}
.gift-field textarea { resize: vertical; }

.gift-amount-input { position: relative; }
.gift-amount-prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b6b6b;
  font-size: 1.05em;
}
.gift-amount-input input { padding-left: 28px; }

.gift-validity {
  font-size: .86em;
  color: #6b6b6b;
  text-align: center;
  margin: 0 0 14px;
}
.gift-error {
  background: #f8d7da;
  color: #842029;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .92em;
  margin: 0 0 14px;
}
.gift-submit {
  width: 100%;
  padding: 15px;
  background: #2c5f4f;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.08em;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease;
}
.gift-submit:hover:not(:disabled) { background: #244d40; }
.gift-submit:disabled { opacity: .6; cursor: default; }
.gift-secure {
  text-align: center;
  color: #6b6b6b;
  font-size: .82em;
  margin: 12px 0 0;
}

/* ── Shared cross-site CTA + banner (homepage / services / contact) ─────────── */
/* Calm white card to match the site's other homepage sections — no bold band. */
.gift-cta-section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .05);
  padding: 44px 32px;
  margin-bottom: 40px;
}
.gift-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.gift-cta-eyebrow {
  display: block;
  font-size: .78em;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #4f6f5d;
  font-weight: 600;
  margin-bottom: 10px;
}
.gift-cta-inner h2 { color: #2c5f4f; font-size: 1.8em; font-weight: 300; margin: 0 0 14px; }
.gift-cta-inner p { color: #555; line-height: 1.7; margin: 0 auto 24px; }
.gift-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.gift-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid #2c5f4f;
  color: #2c5f4f;
  background: #fff;
  transition: all .2s ease;
}
.gift-cta-btn:hover { background: #f4f8f6; }
.gift-cta-btn.primary { background: #2c5f4f; color: #fff; }
.gift-cta-btn.primary:hover { background: #234d40; }

/* Inline banner used mid-page on services / contact */
.gift-banner {
  background: #f4f8f6;
  border: 1px solid #e3ece6;
  border-radius: 12px;
  padding: 24px 28px;
  margin: 32px auto;
  max-width: 760px;
  text-align: center;
}
.gift-banner h3 { color: #2c5f4f; margin: 0 0 8px; font-size: 1.25em; font-weight: 400; }
.gift-banner p { color: #555; margin: 0 0 16px; line-height: 1.6; }
