/* Styles that exist only in the static demo — the plan picker and the fake
   checkout confirmation. Everything else is inherited from the storefront's
   own travel-landing.css, so the demo stays visually identical to the real
   store. Scoped under .tl to pick up its design tokens. */

.tl .demo-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.tl .demo-head p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}

.tl .demo-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 640px) {
  .tl .demo-plans {
    grid-template-columns: 1fr;
  }
}
.tl .demo-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px 16px 18px;
  border-radius: 16px;
  text-align: left;
  background: var(--card);
  border: 1px solid var(--hair);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.3s var(--ease);
}
.tl .demo-plan:hover {
  border-color: rgba(30, 50, 90, 0.28);
  transform: translateY(-2px);
}
.tl .demo-plan.on {
  border-color: var(--brand-base);
  box-shadow: 0 0 0 1px var(--brand-base);
}
.tl .demo-plan.best {
  padding-top: 40px;
}
.tl .demo-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-base);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 15px 15px 0 0;
}
.tl .demo-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(30, 50, 90, 0.3);
  margin-bottom: 8px;
}
.tl .demo-plan.on .demo-radio {
  border-color: var(--brand-base);
  background:
    radial-gradient(circle at center, var(--brand-base) 0 4.5px, transparent 4.5px);
}
.tl .demo-data {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-strong);
}
.tl .demo-period {
  font-size: 14px;
  color: var(--ink-faint);
}
.tl .demo-price {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-strong);
}

.tl .demo-fine {
  margin: 16px 0 0;
  font-size: 12.5px;
  color: var(--ink-faint);
  text-align: center;
}
.tl .demo-cta {
  width: 100%;
  margin-top: 14px;
  padding: 17px 0;
  border: none;
  border-radius: 999px;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: var(--brand-base);
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.25s;
}
.tl .demo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.5);
}

/* confirmation */
.tl .demo-done {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 12px 0 6px;
}
.tl .demo-tick {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
}
.tl .demo-done b {
  font-size: 19px;
  font-weight: 500;
  color: var(--ink-strong);
}
.tl .demo-done p {
  margin: 0;
  max-width: 46ch;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink);
}
.tl .demo-note {
  margin-top: 6px !important;
  font-size: 12.5px !important;
  color: var(--ink-faint) !important;
}
