/* Gift cards page + confirmation styles. Complements styles.css and uses the
   site's warm palette (maroon / sand / brown) so it matches the booking pages. */

.gift-hero { text-align: center; }
.gift-kicker {
  text-transform: uppercase; letter-spacing: 2px; font-weight: 700;
  font-size: 0.78rem; color: var(--sea); margin: 0 0 6px;
}
.gift-hero h1 { margin: 0 0 10px; }
.gift-lead { max-width: 720px; margin: 0 auto; color: var(--ink-soft); }

.gift-card-panel { margin-top: 20px; }
.gift-form { max-width: 760px; margin: 0 auto; }
.gift-form button { font-family: inherit; }
.gift-fieldset {
  border: 1px solid #e5d5be; border-radius: 12px; padding: 18px 18px 22px;
  margin: 0 0 18px; background: #faf7f0;
}
.gift-fieldset legend {
  font-weight: 700; color: var(--sea-dark); padding: 0 8px; font-size: 1rem;
}

.gift-type-toggle { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.gift-type-button {
  flex: 1 1 160px; padding: 12px 14px; border: 2px solid var(--line); background: #fff;
  border-radius: 10px; font-weight: 700; cursor: pointer; color: var(--ink-soft); font-size: 0.96rem;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.gift-type-button:hover { border-color: var(--sun); }
.gift-type-button.is-active { border-color: var(--sea); background: var(--sea); color: #fff; }

.gift-field-label { display: block; font-weight: 600; margin: 6px 0 8px; color: var(--ink-soft); }
.gift-presets { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.gift-preset {
  flex: 1 1 90px; padding: 14px 10px; border: 2px solid var(--line); background: #fff;
  border-radius: 10px; font-weight: 700; cursor: pointer; font-size: 1.05rem; color: var(--ink);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.gift-preset:hover { border-color: var(--sun); }
.gift-preset.is-active { border-color: var(--sea); background: #f6ece0; color: var(--sea-dark); }

/* Charter type buttons, passenger stepper + mate tip */
.gift-charter-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
  margin: 0 0 14px;
}
.gift-charter-option {
  display: grid;
  gap: 4px;
  min-height: 104px;
  padding: 13px 14px;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.gift-charter-option:hover { border-color: var(--sun); }
.gift-charter-option.is-active {
  border-color: var(--sea);
  background: #f6ece0;
  box-shadow: 0 0 0 3px rgba(130, 41, 42, 0.1);
}
.gift-charter-option-title {
  color: var(--sea-dark);
  font-weight: 700;
  line-height: 1.2;
}
.gift-charter-option-price {
  color: var(--ink);
  font-weight: 700;
}
.gift-charter-option-detail {
  color: #7a665d;
  font-size: 0.84rem;
  line-height: 1.3;
}
.gift-pax-row { margin: 14px 0 4px; }
.gift-stepper { display: inline-flex; align-items: stretch; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.gift-stepper-btn {
  background: #f1e4cd; border: 0; color: var(--sea-dark); font-weight: 700; font-size: 1.2rem;
  width: 44px; cursor: pointer; line-height: 1;
}
.gift-stepper-btn:hover { background: #e9d8b8; }
.gift-stepper input {
  width: 64px; text-align: center; border: 0 !important; border-left: 1px solid var(--line) !important;
  border-right: 1px solid var(--line) !important; border-radius: 0 !important; font-weight: 700; background: #fff;
  -moz-appearance: textfield;
}
.gift-stepper input::-webkit-outer-spin-button,
.gift-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.gift-tip-block { margin-top: 16px; }
.gift-tip-presets { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.gift-tip-button {
  display: grid;
  gap: 2px;
  flex: 1 1 64px; padding: 10px 8px; border: 2px solid var(--line); background: #fff; border-radius: 10px;
  font-weight: 700; cursor: pointer; color: var(--ink-soft);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.gift-tip-button:hover { border-color: var(--sun); }
.gift-tip-button.is-active { border-color: var(--sea); background: #f6ece0; color: var(--sea-dark); }
.gift-tip-label,
.gift-tip-amount {
  display: block;
  line-height: 1.15;
}
.gift-tip-amount {
  font-size: 0.78rem;
  font-weight: 600;
  color: #2f241d;
}
.gift-tip-custom-row { max-width: 200px; }

.gift-custom { display: block; font-size: 0.9rem; color: #7a665d; margin: 4px 0 6px; }
.gift-custom-row { display: flex; align-items: center; max-width: 220px; }
.gift-custom-prefix {
  padding: 10px 12px; background: #f1e4cd; border: 1px solid var(--line); border-right: 0;
  border-radius: 8px 0 0 8px; font-weight: 700; color: var(--ink-soft);
}
.gift-custom-row input { border-radius: 0 8px 8px 0 !important; }
.gift-hint { font-size: 0.85rem; color: #7a665d; margin: 6px 0 0; }

.gift-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .gift-grid { grid-template-columns: 1fr; } }
.gift-form label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--ink-soft); }
.gift-form input, .gift-form select, .gift-form textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 8px;
  font-size: 1rem; font-family: inherit; background: #fff; color: var(--ink);
}
.gift-form input:focus, .gift-form select:focus, .gift-form textarea:focus {
  outline: none; border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(130, 41, 42, 0.15);
}
.gift-form textarea { resize: vertical; }

.gift-toggle { display: flex; align-items: center; gap: 10px; font-weight: 600; cursor: pointer; color: var(--ink-soft); }
.gift-toggle input { width: auto; }
.gift-recipient-panel { margin-top: 14px; }

.gift-summary { text-align: center; margin-top: 8px; }
.gift-summary-line { font-size: 1.2rem; margin: 0 0 12px; }
.gift-summary-line strong { color: var(--sea-dark); }
.gift-helper { font-size: 0.85rem; color: #7a665d; margin: 10px 0 0; }
.gift-summary .btn { min-width: 220px; }

/* Confirmation */
.gift-confirm-shell { max-width: 640px; margin: 0 auto; text-align: center; }
.gift-confirm-card {
  border: 1px solid #e5d5be; border-radius: 12px; padding: 24px; margin-top: 16px; background: #faf7f0;
}
.gift-confirm-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
.gift-confirm-detail { color: var(--ink-soft); margin: 6px 0; }
