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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f7f9fb;
  color: #1a1a2e;
  min-height: 100vh;
}

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

header {
  text-align: center;
  margin-bottom: 48px;
}

.brand {
  font-size: 13pt;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0d3b6e;
}

.tagline {
  font-size: 11pt;
  color: #888;
  margin-top: 4px;
}

.card {
  background: white;
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 24px;
}

h1 { font-size: 20pt; font-weight: 700; margin-bottom: 8px; }
h2 { font-size: 14pt; font-weight: 600; margin-bottom: 16px; color: #0d3b6e; }
p  { color: #555; line-height: 1.6; margin-bottom: 12px; }

input[type="text"], input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #dde0e8;
  border-radius: 6px;
  font-size: 11pt;
  color: #1a1a2e;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
input:focus { outline: none; border-color: #0d3b6e; }

.btn {
  display: inline-block;
  background: #0d3b6e;
  color: white;
  padding: 13px 28px;
  border: none;
  border-radius: 6px;
  font-size: 11pt;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.btn:hover { background: #0a2d56; }
.btn:disabled { background: #aaa; cursor: not-allowed; }
.btn-full { width: 100%; text-align: center; }

.error { color: #c0392b; font-size: 10.5pt; margin-top: 8px; }
.success { color: #27ae60; font-size: 10.5pt; margin-top: 8px; }

.itinerary-summary {
  background: #f0f5fb;
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 11pt;
  line-height: 1.7;
  margin-bottom: 20px;
}
.itinerary-summary .ship { font-weight: 700; color: #0d3b6e; }

.style-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.style-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid #dde0e8;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 10.5pt;
}
.style-option input { display: none; }
.style-option.selected {
  border-color: #0d3b6e;
  background: #f0f5fb;
  font-weight: 600;
}

.price-line {
  font-size: 20pt;
  font-weight: 700;
  color: #0d3b6e;
  text-align: center;
  margin: 20px 0;
}
.price-sub {
  text-align: center;
  font-size: 10pt;
  color: #888;
  margin-bottom: 20px;
}

.spinner {
  display: inline-block;
  width: 32px; height: 32px;
  border: 3px solid #dde8f0;
  border-top-color: #0d3b6e;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.status-icon { font-size: 40pt; text-align: center; margin-bottom: 12px; }

.divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 32px 0;
}

.resend-section h2 { margin-bottom: 12px; }