/* Page background like a checkout UI */
.lttc-co{
  max-width: 980px;
  margin: 0 auto;
  padding: 26px 18px 44px;
}

body{
  background: radial-gradient(1200px 600px at 30% 10%, #e8f0ff 0%, #f6f8ff 45%, #f7f8fb 100%);
}

/* Centered title like your screenshot */
.co-title{
  text-align:center;
  font-size:34px;
  font-weight:900;
  color:#0f172a;
  margin:8px 0 6px;
  letter-spacing:-0.02em;
}

.co-sub{
  text-align:center;
  color:#64748b;
  margin:0 0 18px;
}

.card-icons{
  display:flex;
  align-items:center;
  gap:16px;
  margin:12px 0 14px;
}

.card-wrap{
  width:64px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.card-img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  display:block;
}

.card-icons{
  justify-content:flex-start;
  gap:18px;
}

.card-img{
  filter: saturate(0.98);
}


/* Two columns like the example */
.cards{
  display:grid;
  grid-template-columns: 1.05fr 1.25fr;
  gap:18px;
  align-items:start;
}
@media (max-width:900px){
  .cards{ grid-template-columns:1fr; }
}

/* Panels */
.lttc-card{
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(148,163,184,0.35);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 45px rgba(15,23,42,0.08);
  backdrop-filter: blur(10px) saturate(160%);
}

.c-title{
  margin:0 0 8px;
  font-weight:900;
  color:#0f172a;
  letter-spacing:-0.01em;
}

/* Left panel content */
.left-sub{
  margin:0 0 14px;
  color:#64748b;
  font-size:13px;
}

.steps{
  margin: 0 0 12px 18px;
  padding: 0;
  color:#334155;
  font-size:13px;
}
.steps li{ margin: 6px 0; }

.card-badge{
  font-size:12px;
  font-weight:900;
  letter-spacing:0.02em;
  padding:7px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(148,163,184,0.35);
  color:#0f172a;
}

.privacy-line{
  font-size:12px;
  color:#64748b;
  line-height:1.5;
}
.co-link{ color:#2563eb; text-decoration:none; font-weight:800; }
.co-link:hover{ text-decoration:underline; }

.left-divider{
  height:1px;
  background: rgba(148,163,184,0.25);
  margin: 14px 0;
}

.subhead{
  margin:0 0 10px;
  font-size:13px;
  font-weight:900;
  color:#0f172a;
}

/* Order summary grid inside left panel */
.grid{
  display:grid;
  grid-template-columns: 160px 1fr;
  gap:10px 14px;
}
.grid > div{
  padding:8px 0;
  border-bottom: 1px solid rgba(148,163,184,0.18);
}
.grid > div:nth-child(odd){ color:#64748b; font-size:13px; }
#co-total{ font-size:18px; }

.support{
  margin-top:12px;
}
.support-title{
  font-size:12px;
  color:#64748b;
  margin-bottom:2px;
}

/* Payment form */
.payform{ display:grid; gap:10px; }
.payform label{ font-size:12px; color:#64748b; }

.payform input, .payform select{
  border: 1px solid rgba(148,163,184,0.35);
  border-radius: 12px;
  padding: 12px 12px;
  background: rgba(255,255,255,0.85);
  outline:none;
  transition: box-shadow .15s ease, border-color .15s ease;
}
.payform input:focus, .payform select:focus{
  border-color: rgba(37,99,235,0.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
}

/* Stripe element */
.card-el{
  padding:12px;
  border: 1px solid rgba(148,163,184,0.35);
  border-radius:12px;
  background: rgba(255,255,255,0.9);
}

/* Button like the example */
.btn{
  width:100%;
  border:none;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 900;
  cursor:pointer;
  background: linear-gradient(180deg, #4f46e5 0%, #4338ca 100%);
  color:#fff;
  box-shadow: 0 14px 30px rgba(67,56,202,0.25);
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }

.stripe-note{
  margin-top:10px;
  font-size:12px;
  color:#64748b;
  display:flex;
  align-items:center;
  gap:6px;
}
.err{ color:#b91c1c; min-height:18px; margin-top:6px; }

.tiny{ display:none; } /* optional: hides the old line if you want */

/* Stripe focus helper */
.StripeElement--focus{
  outline:none;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
  border-radius:12px;
}



