/* ===== NVR order wizard (self-contained; !important guards against theme CSS) ===== */
#nvr-order.nvr-order{display:grid;grid-template-columns:1fr 360px;gap:30px;align-items:start;max-width:1120px;margin:28px auto;direction:rtl;font-family:Heebo,Arial,sans-serif;color:#0f172a}
#nvr-order .nvr-order__main{background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:20px;padding:clamp(22px,3vw,38px);box-shadow:0 18px 44px rgba(2,12,60,.06)}
#nvr-order h3{font-size:23px;font-weight:800;margin:0 0 4px;color:#0b1220}
#nvr-order .muted{color:#64748b;font-size:14.5px;margin:0 0 20px;line-height:1.6}

/* step indicator */
#nvr-order .nvr-steps{display:flex;align-items:center;gap:8px;margin:0 0 26px;flex-wrap:wrap}
#nvr-order .nvr-steps__i{display:inline-flex;align-items:center;gap:7px;font-size:14px;font-weight:600;color:#94a3b8}
#nvr-order .nvr-steps__i b{display:grid;place-items:center;width:24px;height:24px;border-radius:50%;background:#eef2ff;color:#94a3b8;font-size:13px;font-weight:800}
#nvr-order .nvr-steps__i.is-active{color:#001E99}
#nvr-order .nvr-steps__i.is-active b{background:linear-gradient(135deg,#001E99,#3a52d6);color:#fff}
#nvr-order .nvr-steps__i.is-done b{background:#16a34a;color:#fff}
#nvr-order .nvr-steps__sep{flex:1;min-width:14px;height:2px;background:#eef2ff;border-radius:2px}

#nvr-order .step{display:none}
#nvr-order .step.active{display:block;animation:nvrfade .25s ease}
@keyframes nvrfade{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}
#nvr-order label{display:block;font-weight:700;margin:16px 0 7px;color:#0b1220;font-size:14.5px}

/* fields — forced visible/legible regardless of theme */
#nvr-order input[type=text],#nvr-order input[type=email],#nvr-order input[type=password],#nvr-order input[type=tel],#nvr-order input:not([type]),#nvr-order select{
  -webkit-appearance:none;-moz-appearance:none;appearance:none;
  display:block!important;width:100%!important;box-sizing:border-box!important;
  font-family:inherit!important;font-size:16px!important;line-height:1.5!important;color:#0f172a!important;
  background-color:#fff!important;border:1.5px solid #d8dfea!important;border-radius:12px!important;
  min-height:52px!important;height:auto!important;padding:13px 16px!important;margin:0!important;transition:border-color .18s ease,box-shadow .18s ease}
#nvr-order input:focus,#nvr-order select:focus{outline:none!important;border-color:#6e88ff!important;box-shadow:0 0 0 4px rgba(110,136,255,.16)!important}
#nvr-order input:hover,#nvr-order select:hover{background-color:#fff!important;border-color:#c2cbe0!important}
#nvr-order input::placeholder{color:#9aa7bd!important;opacity:1}

/* select: custom chevron on the left (RTL), with room so text never clips */
#nvr-order select{cursor:pointer;padding-left:46px!important;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23475569' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat!important;background-position:left 16px center!important;background-size:13px!important}

/* actions */
#nvr-order .nvr-actions{display:flex;gap:10px;margin-top:24px;flex-wrap:wrap}
#nvr-order .btn{background:linear-gradient(135deg,#001E99,#3a52d6);color:#fff;border:0;padding:14px 28px;border-radius:12px;font-weight:800;font-size:15px;cursor:pointer;box-shadow:0 10px 24px rgba(0,30,153,.28);transition:transform .2s ease,box-shadow .2s ease}
#nvr-order .btn:hover{transform:translateY(-2px);box-shadow:0 16px 32px rgba(0,30,153,.4)}
#nvr-order .btn.secondary{background:#eef2ff;color:#001E99;box-shadow:none}
#nvr-order .btn.secondary:hover{transform:none;background:#dde4ff}
#nvr-order .err{color:#dc2626;font-size:14px;margin-top:12px;font-weight:700}

/* domain radio cards */
#nvr-order .nvr-radios{display:grid;gap:14px;margin-top:6px}
#nvr-order .nvr-radio{display:block;cursor:pointer;margin:0}
#nvr-order .nvr-radio>input{position:absolute;opacity:0;width:0;height:0;margin:0}
#nvr-order .nvr-radio__b{display:block;border:1.5px solid rgba(15,23,42,.14);border-radius:14px;padding:18px 18px 18px 48px;position:relative;transition:border-color .18s ease,background-color .18s ease;background:#fff}
#nvr-order .nvr-radio__b:before{content:"";position:absolute;top:19px;left:18px;width:20px;height:20px;border-radius:50%;border:2px solid #cbd5e1;transition:all .18s ease;box-sizing:border-box}
#nvr-order .nvr-radio:hover .nvr-radio__b{border-color:#9db0ff}
#nvr-order .nvr-radio.is-on .nvr-radio__b{border-color:#001E99;background:#fff;box-shadow:0 6px 18px rgba(0,30,153,.08)}
#nvr-order .nvr-radio.is-on .nvr-radio__b:before{border-color:#001E99;background:radial-gradient(circle,#001E99 0 6px,#fff 7px)}
#nvr-order .nvr-radio__t{display:block;font-weight:800;font-size:16px;color:#0b1220}
#nvr-order .nvr-radio__d{display:block;color:#64748b;font-size:14px;margin-top:5px;line-height:1.6}
#nvr-order .nvr-radio__f{display:none;margin-top:14px}
#nvr-order .nvr-radio.is-on .nvr-radio__f{display:block}
/* subdomain field as an input-group: [ my-site ][ .nvr.co.il ] reading LTR */
#nvr-order .nvr-sub{display:flex!important;align-items:stretch;direction:ltr;background:#fff;border:1.5px solid #d8dfea;border-radius:12px;overflow:hidden;transition:border-color .18s ease,box-shadow .18s ease}
#nvr-order .nvr-sub:focus-within{border-color:#6e88ff;box-shadow:0 0 0 4px rgba(110,136,255,.16)}
#nvr-order .nvr-sub>input{flex:1 1 auto;min-width:0;border:0!important;border-radius:0!important;background:transparent!important;box-shadow:none!important;direction:ltr!important;text-align:left!important;padding:13px 14px!important;min-height:50px!important}
#nvr-order .nvr-sub__suf{display:flex;align-items:center;flex:0 0 auto;padding:0 14px;background:#eef2ff;color:#001E99;font-weight:800;font-size:14px;direction:ltr;white-space:nowrap;border-left:1.5px solid #d8dfea}

/* login / register tabs on the final step */
#nvr-order .nvr-authtabs{display:flex;gap:6px;margin:6px 0 18px;background:#eef2ff;padding:5px;border-radius:12px}
#nvr-order .nvr-tab{flex:1;border:0;background:transparent;cursor:pointer;font-family:inherit;font-weight:700;font-size:15px;color:#475569;padding:11px;border-radius:9px;transition:all .18s ease}
#nvr-order .nvr-tab.is-active{background:#fff;color:#001E99;box-shadow:0 2px 8px rgba(2,12,60,.08)}

/* thanks */
#nvr-order .thanks{background:#f5f7ff;border:1px solid rgba(0,30,153,.12);border-radius:14px;padding:28px;text-align:center}
#nvr-order .thanks h3{color:#16a34a}

/* ===== summary card ===== */
#nvr-order .nvr-order__aside{position:sticky;top:90px}
#nvr-order .nvr-sumcard{background:linear-gradient(165deg,#001E99 0%,#1733c0 100%);color:#fff;border-radius:20px;padding:26px;box-shadow:0 24px 50px rgba(0,30,153,.3)}
#nvr-order .nvr-sumcard__badge{display:inline-block;background:linear-gradient(135deg,#6e88ff,#9db0ff);color:#001233;font-weight:800;font-size:12.5px;padding:5px 12px;border-radius:999px;margin-bottom:12px}
#nvr-order .nvr-sumcard__label{font-size:13px;color:#aab8ff;font-weight:600}
#nvr-order .nvr-sumcard__name{font-size:24px;font-weight:900;margin-top:3px}
#nvr-order .nvr-sumcard__sub{font-size:14px;color:#c7d2ff;margin-top:4px;line-height:1.6}
#nvr-order .nvr-sumcard__price{margin:16px 0 4px;font-size:40px;font-weight:900;line-height:1}
#nvr-order .nvr-sumcard__price small{font-size:15px;font-weight:600;color:#c7d2ff}
#nvr-order .nvr-sumcard__feats{list-style:none;margin:16px 0 0;padding:16px 0 0;border-top:1px solid rgba(255,255,255,.14);display:grid;gap:10px}
#nvr-order .nvr-sumcard__feats li{position:relative;padding-right:24px;font-size:14.5px;color:#e6ebff}
#nvr-order .nvr-sumcard__feats li:before{content:"✓";position:absolute;right:0;color:#9bffc4;font-weight:800}
#nvr-order .nvr-sumcard__note{margin-top:16px;font-size:12.5px;color:#aab8ff;line-height:1.7}
#nvr-order .nvr-sumcard__change{display:inline-block;margin-top:14px;color:#fff;font-size:13.5px;font-weight:700;text-decoration:none;opacity:.85}
#nvr-order .nvr-sumcard__change:hover{opacity:1}

@media(max-width:880px){
  #nvr-order.nvr-order{grid-template-columns:1fr}
  #nvr-order .nvr-order__aside{position:static;order:-1}
  #nvr-order .nvr-sumcard__price{font-size:34px}
}
