/* Simple checkout banner */
.iptvv-banner.simple{display:flex;align-items:center;gap:12px;margin-bottom:10px;background:#fff;border:1px solid #e5e7eb;border-radius:12px;padding:12px}
.iptvv-banner.simple img{width:36px;height:36px;border-radius:6px}

/* Exact Thank You card design */
.iptvv-card{
  margin:24px 0;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:22px 22px 16px 22px;
  box-shadow:0 4px 16px rgba(0,0,0,.06);
  position:relative;
}
.iptvv-card::before{
  content:"";
  position:absolute;
  top:0; bottom:0; left:0;
  width:6px;
  background:linear-gradient(180deg,#f59e0b,#ffc043);
  border-radius:14px 0 0 14px;
}
.iptvv-card__header{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.iptvv-card__logo{ width:40px; border-radius:6px; }
.iptvv-card h3{ margin:0; font-size:18px; font-weight:700; color:#111827; }

.iptvv-steps{ list-style:none; margin:0; padding:0; counter-reset: step; }
.iptvv-steps li{
  counter-increment: step;
  margin:10px 0;
  font-size:15px;
  color:#1f2937;
  line-height:1.5;
  position:relative;
  padding-left:28px;
}
.iptvv-steps li::before{
  content: counter(step) "-";
  position:absolute; left:0; top:0;
  font-weight:700; color:#f59e0b;
}

.iptvv-box{
  border:1px solid #d1d5db;
  background:#f9fafb;
  padding:10px 12px;
  border-radius:8px;
  font-size:14px;
  margin-top:6px;
}
.iptvv-line{ display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.iptvv-copy-btn{
  border:1px solid #d1d5db;
  background:#fff;
  border-radius:999px;
  padding:4px 8px;
  font-size:12px;
  cursor:pointer;
}
.iptvv-copy-btn[disabled]{opacity:.6; cursor:default}

/* Soft alert */
.iptvv-alert{
  margin-top:18px;
  border-left:4px solid #fdba74;
  background:#fff7ed;
  color:#7c2d12;
  padding:12px;
  border-radius:8px;
  font-size:14px;
  font-weight:600;
}

/* Mobile tweaks */
@media (max-width:640px){
  .iptvv-card{ padding:18px 16px 14px 16px; }
}
