* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Josefin Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #fdfbf7; /* matching a bright warm tone */
  color: #333;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.container {
  max-width: 720px;
  width: 100%;
}

.header {
  text-align: center;
  margin-bottom: 2rem;
}

.header h1 {
  font-size: 2.5rem;
  color: #009390; /* SN Hawaii green */
  margin-bottom: 0.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.subtitle {
  font-size: 1.1rem;
  color: #555;
}

.options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .options {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.card {
  background: #fff;
  border-radius: 0;
  padding: 2.5rem 2rem;
  box-shadow: 0 12px 30px rgba(0, 147, 144, 0.15);
  display: flex;
  flex-direction: column;
  border: 2px solid #e0f2f1;
  border-top: 6px solid #009390;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 147, 144, 0.25);
}

.price-original {
  font-size: 1.25rem;
  font-weight: 500;
  color: #a0a0a0;
  text-decoration: line-through;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #009390;
}

.price {
  font-size: 2.25rem;
  font-weight: 700;
  color: #009390;
  margin-bottom: 1rem;
}

.discount-badge {
  background: #e0f2f1;
  color: #00695c;
  padding: 1rem 1.25rem;
  border-radius: 0;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 147, 144, 0.1);
  display: block;
}

.discount-badge strong {
  display: block;
  font-size: 1.1rem;
  color: #009390;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.discount-badge span {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

.description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.btn {
  display: block;
  width: 100%;
  padding: 0.875rem;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background: #009390;
  color: #fff;
}

.btn-primary:hover:not(:disabled) {
  background: #0169aa;
}

.btn-pad {
  background: transparent;
  color: #009390;
  border: 1px solid #009390;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.btn-pad:hover:not(:disabled) {
  background: #f0f4f8;
}

.btn-secondary {
  background: #009390;
  color: #fff;
}

.btn-secondary:hover:not(:disabled) {
  background: #0169aa;
}

.note-deposit {
  font-size: 0.85rem;
  color: #777;
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
  line-height: 1.4;
}

.trip-info {
  background: #e0f2f1;
  color: #00695c;
  padding: 1rem;
  border-radius: 0;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.5;
}

.questions-section {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eaeaea;
}

.questions-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1rem;
}

.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #009390;
  color: #009390;
  background: transparent;
  border-radius: 0;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  width: auto;
}

.btn-outline:hover {
  background: #009390;
  color: #fff;
}

.loading {
  text-align: center;
  color: #888;
  font-size: 1.1rem;
  padding: 4rem 0;
}

.cancelled {
  text-align: center;
  background: #fff3cd;
  padding: 1rem;
  border-radius: 0;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #664d03;
}

.error {
  text-align: center;
  background: #f8d7da;
  padding: 1rem;
  border-radius: 0;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #842029;
}

.error a,
.cancelled a {
  color: inherit;
  font-weight: 600;
}
/* Bandeau liste d'attente, en haut de page. Angles droits comme tout le reste
   (border-radius: 0 partout dans cette feuille), teinte foncée pour se
   distinguer de .trip-info sans lui voler la vedette. */
.banniere {
  background: #0f1419;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0.75rem;
}

.banniere a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Vide jusqu'à la réponse du portail : le :empty évite une puce d'espacement
   quand le chiffre n'arrive jamais. */
.banniere span:empty {
  display: none;
}

/* Places restantes dans une carte. Discret par choix : le prix reste l'élément
   principal, la rareté n'est qu'un appui. */
.rarete {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #00695c;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Sortie d'une carte dont le forfait est complet : elle occupe la place des
   boutons de paiement, donc elle en reprend la géométrie. */
.complet p {
  font-size: 0.9rem;
  color: #00695c;
  background: #e0f2f1;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.complet a {
  display: block;
  width: 100%;
  padding: 0.875rem;
  border: 2px solid #009390;
  color: #009390;
  background: transparent;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.complet a:hover {
  background: #009390;
  color: #fff;
}
