/* ============================================================
   El Croco Vacations — professional airline check-in
   Panther used sparingly as quiet accent only.
   ============================================================ */

:root {
  --brand:       #126b40;        /* El Croco tropical green */
  --brand-dark:  #0a4e2e;
  --brand-soft:  #e7f2ec;
  --accent:      #c8313c;        /* airline red for CTAs */
  --accent-soft: #fde7e9;
  --gold:        #c9a227;        /* small Belgian/pass accent */
  --ink:         #0b1320;
  --ink-soft:    #334155;
  --muted:       #64748b;
  --muted-soft:  #94a3b8;
  --line:        #e3e8ef;
  --line-soft:   #eef2f7;
  --bg:          #f6f8fb;
  --card:        #ffffff;
  --ok:          #16794f;
  --ok-soft:     #e3f3ea;
  --warn:        #8c3c0f;
  --warn-soft:   #fbe7d9;

  /* Belgian flag strip for tiny accents */
  --be-black:    #000000;
  --be-yellow:   #fad226;
  --be-red:      #ef3340;

  --shadow-sm:   0 1px 2px rgba(10,30,60,0.05), 0 1px 4px rgba(10,30,60,0.04);
  --shadow-md:   0 4px 12px rgba(10,30,60,0.07), 0 1px 3px rgba(10,30,60,0.05);
  --shadow-lg:   0 18px 40px -18px rgba(10,30,60,0.25), 0 4px 10px rgba(10,30,60,0.05);

  --font-sans:   "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:   "JetBrains Mono", ui-monospace, monospace;

  /* Subtle leopard-spot pattern reused only for understated accents */
  --panther-print: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'><g fill='%230b1320'><path d='M28 44c1-6 7-10 13-8 6 2 8 9 5 14-3 4-9 5-14 2-3-2-5-5-4-8z'/><path d='M54 30c3-3 9-2 11 2 2 5-2 10-7 9-4 0-6-4-6-8 0-1 1-2 2-3z'/><path d='M40 66c2-4 8-5 11-2 3 3 2 9-2 11-4 2-9-1-10-5 0-2 0-3 1-4z'/><path d='M82 96c1-5 7-8 12-6 5 2 7 8 4 13-3 4-9 6-13 3-3-2-4-6-3-10z'/><path d='M106 82c3-3 8-3 11 0 3 4 1 10-3 12-4 1-9-1-10-5 0-3 0-5 2-7z'/><path d='M160 46c2-5 9-7 13-3 5 4 4 12-1 15-6 3-13-1-14-7-1-2 0-4 2-5z'/><path d='M184 30c3-2 8-1 10 2 2 4-1 9-5 9-4 1-8-3-8-7 0-2 1-3 3-4z'/><path d='M46 144c2-5 8-7 13-4 5 3 6 11 1 15-5 4-14 2-16-4-1-3-1-5 2-7z'/><path d='M138 150c2-5 9-7 14-4 5 4 5 12 0 15-6 4-14 1-15-5-1-2-1-4 1-6z'/><path d='M162 136c3-2 7-1 9 2 2 4 0 9-4 9-4 1-8-2-8-6 0-2 1-4 3-5z'/><path d='M200 100c2-4 8-6 13-3 4 3 5 10 1 13-5 3-13 1-15-4-1-2-1-4 1-6z'/><circle cx='12' cy='118' r='2'/><circle cx='120' cy='10' r='2'/><circle cx='80' cy='208' r='2'/></g></svg>");
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { color: var(--ink); letter-spacing: -0.01em; font-weight: 700; }
h1 { font-size: 1.6rem; margin: 0 0 0.35rem; line-height: 1.2; }
h2 { font-size: 1.2rem; margin: 0 0 0.5rem; line-height: 1.25; }
h3 { font-size: 0.85rem; margin: 0.9rem 0 0.55rem; }
.lede { color: var(--muted); margin: 0 0 1rem; font-size: 0.95rem; line-height: 1.55; max-width: 64ch; }

/* ================================================
   Top bar
   ================================================ */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
  background: var(--brand);
  color: white;
  position: relative;
}
.topbar::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(to right,
    var(--be-black) 0 33.33%,
    var(--be-yellow) 33.33% 66.66%,
    var(--be-red) 66.66% 100%);
}

.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.logo {
  width: 44px; height: 44px;
  background: #0b1e14;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 2px 5px rgba(0,0,0,0.2);
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.logo img.croc {
  width: 32px; height: 32px;
  object-fit: contain;
  position: relative; z-index: 1;
}

.brand-text { min-width: 0; }
.brand-name { font-weight: 700; font-size: 0.98rem; letter-spacing: -0.005em; white-space: nowrap; }
.brand-sub { font-size: 0.7rem; opacity: 0.75; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 1px; }

.topbar-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }

.lang-switch {
  display: flex;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 3px;
}
.lang-switch button {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: none;
  font-family: inherit;
  font-size: 0.73rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.lang-switch button:hover { color: white; }
.lang-switch button.active { background: white; color: var(--brand); font-weight: 600; }

.header-meta { display: flex; align-items: center; gap: 8px; }
.pnr-pill {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  background: rgba(255,255,255,0.12);
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.logout-btn {
  background: rgba(255,255,255,0.08);
  color: white;
  border: none;
  width: 28px; height: 28px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}
.logout-btn:hover { background: rgba(255,255,255,0.18); }

main {
  flex: 1;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  padding: 28px 20px 60px;
}

/* ================================================
   Hero skyline
   ================================================ */
.hero-skyline {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: var(--shadow-md);
  height: 260px;
  background: #0b1324;
}
.hero-skyline img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0) 70%);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}
.hero-title {
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.hero-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
@media (max-width: 720px) {
  .hero-skyline { height: 200px; border-radius: 10px; }
  .hero-overlay { padding: 18px 20px; }
  .hero-title { font-size: 1.8rem; }
  .hero-sub { font-size: 0.85rem; }
}

.footer {
  display: flex;
  justify-content: space-between;
  padding: 14px 28px;
  font-size: 0.75rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--card);
  gap: 10px;
  flex-wrap: wrap;
}

/* ================================================
   Login
   ================================================ */
.login-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 20px 0;
}
.login-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 40px 40px 32px;
  width: 100%;
  max-width: 520px;
  position: relative;
  overflow: hidden;
}
.login-card::after {
  /* subtle green brand accent in corner */
  content: "";
  position: absolute;
  right: -60px; bottom: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--brand-soft) 0%, transparent 70%);
  pointer-events: none;
}
.login-intro { margin-bottom: 22px; }
.login-mark { display: flex; justify-content: flex-start; margin-bottom: 14px; }

.tricolor-pill {
  display: inline-flex;
  width: 50px; height: 8px;
  border-radius: 2px;
  overflow: hidden;
}
.tricolor-pill span { flex: 1; }
.tricolor-pill span:nth-child(1) { background: var(--be-black); }
.tricolor-pill span:nth-child(2) { background: var(--be-yellow); }
.tricolor-pill span:nth-child(3) { background: var(--be-red); }

/* ================================================
   Cards & sections
   ================================================ */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 30px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.section-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.section-num {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--brand);
  font-weight: 700;
  background: var(--brand-soft);
  padding: 5px 10px;
  border-radius: 5px;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.section-header h2 { font-size: 1.15rem; margin-bottom: 4px; }
.section-header .lede { margin: 0; }

/* ================================================
   Forms
   ================================================ */
label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.78rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.hint { font-size: 0.75rem; color: var(--muted); margin-top: 5px; line-height: 1.45; }

input[type=text], input[type=number], input[type=date], select, textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-family: inherit;
  font-size: 0.95rem;
  background: white;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
textarea { resize: vertical; min-height: 90px; line-height: 1.5; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.6' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(10,53,88,0.12);
}

.row { display: flex; gap: 14px; margin-bottom: 0; }
.row > * { flex: 1; min-width: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 12px; }

/* ================================================
   Buttons
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--brand);
  color: white;
  border: none;
  border-radius: 7px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.btn:hover { background: var(--brand-dark); }
.btn:active { transform: translateY(1px); }
.btn.secondary { background: white; color: var(--brand); border: 1px solid var(--line); }
.btn.secondary:hover { background: var(--bg); }
.btn.accent { background: var(--accent); }
.btn.accent:hover { background: #aa2832; }
.btn.ghost { background: transparent; color: var(--muted); }
.btn.ghost:hover { color: var(--ink); background: var(--bg); }
.btn-block { display: flex; width: 100%; padding: 13px 20px; font-size: 0.95rem; }

.error {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 10px 14px;
  border-radius: 7px;
  font-size: 0.88rem;
  margin-bottom: 14px;
  border: 1px solid rgba(200,49,60,0.2);
}

/* ================================================
   Trip list (top-down)
   ================================================ */
.trip-list {
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  overflow: hidden;
}
.trip-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-soft);
  gap: 12px;
}
.trip-row:last-child { border-bottom: none; }
.trip-row:hover { background: var(--bg); }
.trip-row dt {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
  font-weight: 600;
}
.trip-row dd { margin: 0; font-size: 0.95rem; font-weight: 500; color: var(--ink); }
.trip-list.compact .trip-row { padding: 10px 14px; }
.trip-list.compact .trip-row dt { font-size: 0.65rem; }
.trip-list.compact .trip-row dd { font-size: 0.88rem; }

/* ================================================
   Amenities
   ================================================ */
.amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.amenity {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 0.88rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.amenity:hover { border-color: var(--brand); box-shadow: 0 2px 8px rgba(18,107,64,0.06); }
.amenity-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--brand-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.amenity.excluded .amenity-icon { background: var(--warn-soft); }
.amenity-icon img { display: block; width: 22px; height: 22px; }
.amenity-body-wrap { min-width: 0; flex: 1; }
.amenity-title { font-weight: 700; margin-bottom: 2px; font-size: 0.92rem; }
.amenity-body { color: var(--muted); font-size: 0.82rem; line-height: 1.45; }
.excluded-head { color: var(--warn); margin-top: 20px; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; }

/* Photo amenity — bigger visual, real image */
.amenity.has-photo { gap: 14px; padding: 12px; }
.amenity-photo {
  width: 96px; height: 96px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--brand-soft);
  position: relative;
}
.amenity-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.amenity.has-photo.no-photo .amenity-photo { background: var(--brand-soft); }
.amenity-title-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 3px; }
.amenity-badge {
  display: inline-block;
  background: var(--brand);
  color: white;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Extras block */
.extras-wrap {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
}
.extras-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.extras-title {
  margin: 0;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 700;
}
.extras-sub { color: var(--muted); font-size: 0.8rem; }
.extras-wrap .amenity-badge { background: var(--gold); color: #3e2f0a; }

/* ================================================
   Trip map (Leaflet)
   ================================================ */
.trip-map {
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 16px;
  background: #eef3f8;
  position: relative;
  z-index: 0;
}
.trip-map .leaflet-container { font-family: var(--font-sans); }
.trip-map .leaflet-control-attribution {
  background: rgba(255,255,255,0.85);
  font-size: 10px;
  padding: 1px 5px;
}
.map-pin { background: transparent; border: none; }
.map-pin .pin {
  display: inline-block;
  background: var(--brand);
  color: white;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 3px 10px -3px rgba(0,0,0,0.35), 0 0 0 3px white;
  white-space: nowrap;
  position: relative;
}
.map-pin .pin::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -6px;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--brand);
}

/* ================================================
   Route
   ================================================ */
.route {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
  background: var(--brand-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 18px;
}
.route.three { gap: 10px; }
.route-point { text-align: center; flex: 0 0 auto; }
.route-code {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}
.route-city {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.route-line {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--brand) 0 6px, transparent 6px 12px);
  position: relative;
  min-width: 20px;
}
.route-line::after {
  content: "✈";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  background: var(--brand-soft);
  padding: 0 4px;
  font-size: 12px;
}

.map-steps { display: grid; gap: 10px; }
.map-step {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.map-step .num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}
.map-step .step-title { font-weight: 600; margin-bottom: 3px; font-size: 0.92rem; }
.map-step .step-body { color: var(--muted); font-size: 0.85rem; line-height: 1.45; }

/* ================================================
   Stads Tour section
   ================================================ */
.tour-section {
  position: relative;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(201,162,39,0.18) 0%, transparent 55%),
    linear-gradient(135deg, #fffdf6 0%, #fff 60%);
  border: 2px solid var(--gold);
  box-shadow: 0 14px 32px -20px rgba(201,162,39,0.5), var(--shadow-sm);
  overflow: hidden;
}
.tour-section::before {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(201,162,39,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.tour-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  box-shadow: 0 4px 14px -4px rgba(201,162,39,0.6);
}
.tour-header { position: relative; z-index: 1; }
.tour-required-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 3px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  vertical-align: middle;
}
.tour-picker {
  position: relative;
  z-index: 1;
  background: white;
  padding: 18px 20px;
  border-radius: 10px;
  border: 1px solid var(--line);
  margin-top: 8px;
}
.tour-picker label {
  font-size: 0.85rem;
  font-weight: 700;
}
.tour-picker select {
  font-size: 1.05rem;
  font-weight: 600;
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
}
.tour-picker select:focus {
  border-color: var(--gold-deep, var(--gold));
  box-shadow: 0 0 0 4px rgba(201,162,39,0.25);
}

/* ================================================
   Masjoefels (pax card)
   ================================================ */
.pax-card {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 0;
  background: var(--bg);
  margin-bottom: 12px;
  overflow: hidden;
}
.pax-card > .pax-header {
  padding: 16px 20px;
  color: white;
  position: relative;
  overflow: hidden;
  background-color: #2a1505;
  background-image:
    linear-gradient(90deg, rgba(10,12,18,0.78) 0%, rgba(10,12,18,0.35) 55%, rgba(10,12,18,0.55) 100%),
    url("assets/leopard.jpg");
  background-size: cover;
  background-position: center;
  border-bottom: 2px solid var(--gold);
}
.pax-card > .pax-header > * { position: relative; z-index: 1; }
.pax-card > .pax-body { padding: 18px; }
.pax-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}
.pax-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.pax-header .remove {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.78rem;
  backdrop-filter: blur(4px);
}
.pax-header .remove:hover { background: rgba(200,49,60,0.6); border-color: transparent; }

/* ================================================
   Declaration
   ================================================ */
.decl-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.decl-column h3 { margin: 0 0 10px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }
.decl-column.allowed h3 { color: var(--ok); }
.decl-column.forbidden h3 { color: var(--warn); }

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  margin-bottom: 7px;
  background: white;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.15s, background 0.15s;
  font-size: 0.88rem;
}
.check-item:hover { border-color: var(--brand); }
.check-item input { margin: 0; width: 18px; height: 18px; accent-color: var(--brand); flex-shrink: 0; }
.check-item.checked { background: var(--ok-soft); border-color: rgba(22,121,79,0.3); }
.check-item.forbidden.checked { background: var(--warn-soft); border-color: rgba(140,60,15,0.3); }
.check-item-inline { align-items: flex-start; padding: 12px 14px; margin-top: 10px; }
.check-item-inline input { margin-top: 2px; }

/* ================================================
   Upsell banner (scarcity nudge) — simplified
   ================================================ */
.upsell-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #fff7e6 0%, #ffedb8 100%);
  border: 1px solid #f1d77a;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.upsell-left { min-width: 0; flex: 1; }
.upsell-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--accent);
  color: white;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 12px -4px rgba(200,49,60,0.4);
}
.upsell-cta { white-space: nowrap; transition: background 0.25s, color 0.25s, box-shadow 0.25s; }
.upsell-cta.booked {
  background: var(--ok);
  color: white;
  box-shadow: 0 2px 0 #0f5b3e, 0 8px 20px -10px rgba(22,121,79,0.55);
}
.upsell-cta.booked:hover { background: #0f5b3e; }
.pulse-dot {
  width: 8px; height: 8px;
  background: white;
  border-radius: 50%;
  position: relative;
}
.pulse-dot::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ================================================
   Room / stay
   ================================================ */
.room-card {
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
  padding: 0;
  overflow: hidden;
}
.room-photo {
  position: relative;
  width: 100%;
  height: 220px;
  background: var(--brand-soft);
  overflow: hidden;
}
.room-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-photo::after {
  content: "Kamer 01 · Verbondstraat 4";
  position: absolute;
  left: 14px; bottom: 12px;
  background: rgba(0,0,0,0.55);
  color: white;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-family: var(--font-mono);
  backdrop-filter: blur(6px);
}
.room-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--brand-soft);
  border-bottom: 1px solid var(--line);
}
.room-title { font-weight: 700; font-size: 1rem; }
.room-sub { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
.room-badge {
  background: var(--brand);
  color: white;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 5px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  font-weight: 600;
  white-space: nowrap;
}
.room-card .trip-list { border: none; border-radius: 0; }

/* ================================================
   Payconic ad
   ================================================ */
.payconic-ad {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.payconic-ad::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: #fd4885;
}
.ad-label { font-size: 0.65rem; font-weight: 700; color: var(--muted); letter-spacing: 0.12em; margin-bottom: 10px; }
.ad-row { display: flex; align-items: center; gap: 14px; }
.ad-logo-img {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: white;
  padding: 6px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(253,72,133,0.15);
  border: 1px solid #ffe0ea;
}
.ad-text { flex: 1; min-width: 0; }
.ad-title { font-weight: 700; font-size: 0.93rem; margin-bottom: 2px; }
.ad-sub { color: var(--muted); font-size: 0.82rem; line-height: 1.4; }
.ad-cta {
  background: #fd4885;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: inherit;
  transition: background 0.15s;
}
.ad-cta:hover { background: #e33878; }
.ad-disclaimer { font-size: 0.68rem; color: var(--muted); margin-top: 10px; font-style: italic; }

/* ================================================
   Boarding pass preview (capture target)
   ================================================ */
.bp-previews {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.bp-preview, .bp-room-preview {
  background: #fbf8f1;
  background-image:
    radial-gradient(ellipse at 100% 0%, rgba(201,162,39,0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(18,107,64,0.04) 0%, transparent 55%);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  font-family: var(--font-sans);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.bp-preview { display: flex; min-height: 240px; }
/* Huge crocodile watermark on the main area */
.bp-preview .bp-main::before,
.bp-room-preview .bp-room-body::before {
  content: "";
  position: absolute;
  right: -40px; bottom: -40px;
  width: 260px; height: 260px;
  background-image: url("assets/crocodile-fluent.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.bp-stripe {
  /* Clean Belgian tricolor hairline at the very top */
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right,
    var(--be-black) 0 33.33%,
    var(--be-yellow) 33.33% 66.66%,
    var(--be-red) 66.66% 100%);
  z-index: 2;
}
.bp-main {
  flex: 1;
  padding: 22px 22px 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.bp-main > * { position: relative; z-index: 1; }
.bp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  margin: 6px -22px 18px;
  background: transparent;
  color: var(--ink);
  position: relative;
  border-bottom: 2px solid var(--brand);
}
.bp-logo {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brand);
}
.bp-logo span { line-height: 1; }
.bp-logo-mark {
  width: 38px; height: 38px;
  display: block;
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}
.bp-flight { font-family: var(--font-mono); font-size: 0.78rem; font-weight: 700; color: var(--brand); letter-spacing: 0.08em; padding: 4px 10px; border: 1px solid var(--brand); border-radius: 4px; }

.bp-pax-wrap { margin-bottom: 12px; }
.bp-pax-label { font-family: var(--font-mono); font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.bp-pax-name { font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; }

.bp-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bp-code { font-family: var(--font-mono); font-size: 1.55rem; font-weight: 700; color: var(--ink); line-height: 1; }
.bp-city { font-family: var(--font-mono); font-size: 0.6rem; color: var(--muted); letter-spacing: 0.08em; margin-top: 3px; }
.bp-city-from { text-align: left; }
.bp-city-to { text-align: right; }
.bp-arrow { flex: 1; text-align: center; color: var(--gold); font-size: 0.72rem; letter-spacing: 0.16em; }

.bp-grid-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 12px;
  padding-bottom: 8px;
}
.bp-grid-info.bp-prefs {
  border-top: 1px dashed var(--line);
  padding-top: 8px;
  margin-top: 4px;
}
.bp-cell-k { font-family: var(--font-mono); font-size: 0.6rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }
.bp-cell-v { font-family: var(--font-mono); font-size: 0.8rem; font-weight: 700; color: var(--ink); }

.bp-footer { margin-top: auto; padding-top: 10px; font-size: 0.62rem; color: var(--muted); font-style: italic; }

.bp-stub {
  width: 160px;
  background: #f5f1e6;
  color: var(--ink);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-left: 2px dashed var(--line);
}
.bp-stub::before { display: none; }
.bp-stub > * { position: relative; z-index: 1; }
.bp-stub-title { font-family: var(--font-mono); font-weight: 700; letter-spacing: 0.2em; font-size: 0.72rem; color: var(--brand); }
.bp-qr-wrap { background: white; padding: 6px; border-radius: 5px; border: 1px solid var(--line); }
.bp-qr-wrap img { display: block; width: 100px; height: 100px; }
.bp-stub-name { font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; color: var(--ink); }
.bp-stub-line { font-family: var(--font-mono); font-size: 0.66rem; color: var(--muted); margin-bottom: 2px; letter-spacing: 0.02em; }

/* Room preview */
.bp-room-preview .bp-header { padding: 14px 22px; margin: 6px 0 0; background: transparent; color: var(--ink); border-bottom: 2px solid var(--brand); }
.bp-room-preview .bp-room-body { position: relative; z-index: 1; }
.bp-room-preview .bp-room-body > * { position: relative; z-index: 1; }
.bp-room-body { padding: 16px 18px 14px; }
.bp-room-title { font-weight: 700; font-size: 1.05rem; }
.bp-room-sub { font-size: 0.78rem; color: var(--muted); margin-top: 2px; margin-bottom: 14px; }
.bp-room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.bp-room-notes { margin-top: 12px; padding-top: 10px; border-top: 1px dashed var(--line); }
.bp-notes-body { font-size: 0.85rem; color: var(--ink); line-height: 1.45; margin-top: 3px; }
.bp-room-preview .bp-footer { padding: 0 18px 12px; }

/* ================================================
   Download section
   ================================================ */
.download-section {
  background: linear-gradient(135deg, white 0%, var(--brand-soft) 100%);
  border-color: var(--brand);
}

/* ================================================
   Submit CTA (end of details page)
   ================================================ */
.submit-section {
  background: linear-gradient(135deg, #ffffff 0%, #fff1f2 100%);
  border: 2px solid var(--accent);
  box-shadow: 0 16px 40px -16px rgba(200,49,60,0.28), var(--shadow-sm);
}
.submit-big {
  font-size: 1.05rem !important;
  padding: 18px 22px !important;
  letter-spacing: 0.01em;
  margin-top: 8px;
}
.submit-fineprint {
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

/* ================================================
   Tickets page (post-send)
   ================================================ */
.tickets-page { padding-top: 12px; }
.tickets-header {
  background: linear-gradient(135deg, var(--ok-soft) 0%, #f2faf4 100%);
  border: 1px solid rgba(22,121,79,0.22);
  border-radius: 14px;
  padding: 26px 28px;
  margin-bottom: 22px;
}
.tickets-success { display: flex; align-items: flex-start; gap: 18px; }
.tickets-check {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ok);
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px -8px rgba(22,121,79,0.55);
}
.tickets-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ok);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.tickets-h1 { margin: 0 0 6px; font-size: 1.65rem; color: var(--ink); }
.tickets-header .lede { margin: 0; }

/* 3-step flow */
.dl-step {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 14px;
}
.dl-step-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.dl-step-num {
  width: 28px; height: 28px;
  background: var(--brand);
  color: white;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.dl-step-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.dl-step-sub {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
}
.dl-send { font-size: 0.95rem; padding: 14px 18px; }
.sent-hint {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--ok);
  background: var(--ok-soft);
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(22,121,79,0.2);
}

.prefs-confirm { background: var(--brand-soft); border-color: rgba(18,107,64,0.25); }
.prefs-confirm.checked { background: var(--ok-soft); border-color: rgba(22,121,79,0.35); }

.dl-locked {
  background: #fff9e6;
  color: #7a5a00;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #f0d77a;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 14px;
}

#bp-previews.locked {
  filter: grayscale(1) blur(2px);
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
  transition: filter 0.2s, opacity 0.2s;
}

.download-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.download-row .btn { flex: 1; min-width: 170px; }
.download-row .btn.ghost { flex: 0 1 auto; }
.download-row .btn:disabled,
.download-row .btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  background: var(--muted);
}
.download-row .btn.secondary:disabled { background: white; color: var(--muted-soft); }

/* ================================================
   Mobile
   ================================================ */
@media (max-width: 720px) {
  .topbar { flex-direction: column; gap: 10px; align-items: stretch; padding: 12px 16px; }
  .brand { justify-content: flex-start; }
  .topbar-right { justify-content: space-between; width: 100%; gap: 8px; }
  .lang-switch button { padding: 5px 8px; font-size: 0.7rem; }
  .pnr-pill { font-size: 0.62rem; padding: 4px 8px; }

  main { padding: 18px 14px 40px; }
  .card { padding: 20px 16px; }
  .login-card { padding: 28px 22px 24px; }

  .row, .grid-2 { grid-template-columns: 1fr; flex-direction: column; gap: 12px; }
  .amenities, .decl-columns { grid-template-columns: 1fr; gap: 10px; }

  .section-header { gap: 10px; padding-bottom: 10px; margin-bottom: 14px; }
  .section-header h2 { font-size: 1.05rem; }
  .section-num { padding: 4px 8px; font-size: 0.72rem; }

  .trip-row { grid-template-columns: 1fr; gap: 2px; padding: 12px 14px; }
  .trip-row dt { font-size: 0.6rem; }
  .trip-row dd { font-size: 0.9rem; font-weight: 600; }

  .route { padding: 16px 10px; gap: 6px; }
  .route.three .route-code { font-size: 1.1rem; }
  .route-city { font-size: 0.55rem; }
  .route-line::after { font-size: 10px; }

  .room-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .room-badge { align-self: flex-start; }

  .ad-row { flex-wrap: wrap; }
  .ad-cta { width: 100%; padding: 10px; }

  .download-row .btn { min-width: 100%; }

  .bp-preview { flex-direction: column; min-height: 0; }
  .bp-stub { width: 100%; flex-direction: row; flex-wrap: wrap; justify-content: space-around; gap: 14px; padding: 14px; }
  .bp-grid-info { grid-template-columns: repeat(2, 1fr); }
  .bp-room-grid { grid-template-columns: repeat(2, 1fr); }

  .footer { flex-direction: column; align-items: flex-start; font-size: 0.7rem; }
}

/* ================================================
   Print — boarding pass only
   ================================================ */
@media print {
  @page { size: A4 landscape; margin: 10mm; }
  html, body { background: white !important; }
  .topbar, .footer, .payconic-ad { display: none !important; }
  main { padding: 0 !important; max-width: none !important; margin: 0 !important; }
  main > *:not(.download-section) { display: none !important; }
  .download-section {
    background: white !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .download-section > *:not(#bp-previews) { display: none !important; }
  #bp-previews { gap: 0 !important; margin: 0 !important; display: block !important; }
  .bp-preview, .bp-room-preview {
    page-break-after: always;
    break-after: page;
    box-shadow: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border: 1px solid #ccc !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  #bp-previews > *:last-child { page-break-after: auto; break-after: auto; }
  /* ensure background images print */
  .bp-stripe, .bp-stub::before { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
}
