/* ============================================================
   NaiM One-Page Checkout
   Uses the theme's own CSS variables — no gradients, no CDN.
   © NayeeM
   ============================================================ */

.nchk{
  --nc-brand: var(--brand, #110C4C);
  --nc-brand-700: var(--brand-700, #1a1268);
  --nc-accent: var(--accent, #F47B20);
  --nc-accent-soft: var(--accent-soft, rgba(244,123,32,.12));
  --nc-card: var(--card, #ffffff);
  --nc-border: var(--border, #e6e8f0);
  --nc-text: var(--text, #1f2233);
  --nc-muted: var(--muted, #6b7088);
  --nc-radius: var(--radius, 10px);
  --nc-shadow: var(--shadow-sm, 0 1px 2px rgba(17,12,76,.05));
  --nc-ok: #1c7a45;
  --nc-ok-bg: #e8f6ee;
  --nc-bad: #b32828;
  --nc-bad-bg: #fdecec;

  color: var(--nc-text);
  font-size: 14px;
}

.nchk *,
.nchk *::before,
.nchk *::after{ box-sizing: border-box; }

/* A class that sets `display` silently defeats the HTML `hidden` attribute,
   because the class rule outranks the user-agent [hidden] rule. That is why the
   default-nameserver line stayed on screen in custom mode. One authoritative
   rule fixes every element in the module. */
.nchk [hidden]{ display: none !important; }

/* ---------------------------------------------------- top bar */
.nchk-topbar{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:16px; flex-wrap:wrap; margin-bottom:20px;
}
.nchk-title{
  margin:0; font-size:26px; font-weight:700; color:var(--nc-brand);
  letter-spacing:-.2px; line-height:1.2;
}
.nchk-sub{
  margin:6px 0 0; color:var(--nc-muted); font-size:13px;
  display:flex; align-items:center; gap:7px; flex-wrap:wrap;
}
.nchk-sub i{ color:var(--nc-accent); }
.nchk-dot{ width:4px; height:4px; border-radius:50%; background:var(--nc-border); display:inline-block; }
.nchk-topbar-right{ display:flex; align-items:center; gap:10px; }

.nchk-cur{
  display:inline-flex; align-items:center; gap:3px; padding:3px;
  background:#f2f3f8; border:1px solid var(--nc-border); border-radius:11px;
}
.nchk-cur-btn{
  display:inline-flex; align-items:center; gap:6px;
  height:34px; padding:0 13px; border:0; border-radius:8px;
  background:transparent; color:var(--nc-muted);
  font-size:12.5px; font-weight:700; cursor:pointer;
  transition:background .15s ease, color .15s ease, box-shadow .15s ease;
}
.nchk-cur-btn:hover{ color:var(--nc-text); }
.nchk-cur-btn.active{
  background:#fff; color:var(--nc-brand);
  box-shadow:0 1px 3px rgba(17,12,76,.12);
}
.nchk-cur-sym{ font-size:14px; line-height:1; }
.nchk-cur-code{ letter-spacing:.3px; }
.nchk-btn-ghost{
  display:inline-flex; align-items:center; gap:7px; height:40px; padding:0 16px;
  border:1px solid var(--nc-border); border-radius:9px; background:var(--nc-card);
  color:var(--nc-brand); font-weight:600; font-size:13px; text-decoration:none;
  transition:border-color .15s ease, color .15s ease;
}
.nchk-btn-ghost:hover{ border-color:var(--nc-accent); color:var(--nc-accent); text-decoration:none; }
.nchk-btn-sm{ height:34px; padding:0 12px; font-size:12px; }

/* ---------------------------------------------------- alerts */
.nchk-alert{
  display:flex; gap:12px; padding:14px 16px; border-radius:var(--nc-radius);
  margin-bottom:18px; font-size:13.5px; line-height:1.5;
}
.nchk-alert i{ font-size:16px; margin-top:2px; }
.nchk-alert ul{ margin:6px 0 0; padding-left:18px; }
.nchk-alert-danger{ background:var(--nc-bad-bg); color:var(--nc-bad); border:1px solid #f3c9c9; }
.nchk-alert-warning{ background:#fff6e6; color:#8a5a10; border:1px solid #f3dfb9; }

/* ---------------------------------------------------- layout */
.nchk-grid{
  display:grid; grid-template-columns: minmax(0,1fr) 360px; gap:22px; align-items:start;
}
.nchk-main{ min-width:0; display:flex; flex-direction:column; gap:18px; }

/* ---------------------------------------------------- cards */
.nchk-card{
  background:var(--nc-card); border:1px solid var(--nc-border);
  border-radius:14px; box-shadow:var(--nc-shadow); overflow:hidden;
}
.nchk-card-head{
  display:flex; gap:14px; align-items:flex-start;
  padding:18px 22px; border-bottom:1px solid var(--nc-border);
}
.nchk-step{
  flex:0 0 30px; width:30px; height:30px; border-radius:50%;
  background:var(--nc-brand); color:#fff; font-weight:700; font-size:13px;
  display:flex; align-items:center; justify-content:center;
}
.nchk-card-head h2{
  margin:0; font-size:16.5px; font-weight:700; color:var(--nc-brand); line-height:1.35;
}
.nchk-card-head p{ margin:3px 0 0; font-size:12.5px; color:var(--nc-muted); }
.nchk-card-body{ padding:20px 22px 22px; }

.nchk-block{ margin-bottom:22px; }
.nchk-block:last-child{ margin-bottom:0; }
.nchk-label{
  display:block; font-size:12px; font-weight:700; letter-spacing:.4px;
  text-transform:uppercase; color:var(--nc-muted); margin-bottom:10px;
}
.nchk-label i{ color:var(--nc-accent); margin-right:4px; }
.nchk-mini-label{
  display:block; font-size:12.5px; font-weight:600; color:var(--nc-text); margin-bottom:6px;
}
.nchk-opt{ color:var(--nc-muted); font-weight:400; }
.nchk-req{ color:var(--nc-accent); }
.nchk-hint{ display:block; font-size:11.5px; color:var(--nc-muted); margin-top:5px; }
.nchk-note{
  display:flex; align-items:center; gap:9px; margin:14px 0 0; padding:11px 14px;
  background:#f7f8fc; border:1px solid var(--nc-border); border-radius:9px;
  font-size:12.5px; color:var(--nc-muted);
}
.nchk-note i{ color:var(--nc-accent); }

/* ---------------------------------------------------- inputs */
.nchk-input{
  width:100%; height:44px; padding:0 13px;
  border:1px solid var(--nc-border); border-radius:9px; background:#fff;
  color:var(--nc-text); font-size:14px; outline:none;
  transition:border-color .15s ease, box-shadow .15s ease;
  -webkit-appearance:none; appearance:none;
}
textarea.nchk-input{ height:auto; padding:11px 13px; line-height:1.5; resize:vertical; }
select.nchk-input{
  background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7088' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 13px center; background-size:11px;
  padding-right:34px; cursor:pointer;
}
.nchk-input:focus{ border-color:var(--nc-accent); box-shadow:0 0 0 3px var(--nc-accent-soft); }
.nchk-input::placeholder{ color:#a6aabd; }

.nchk-fields{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px 16px; }
.nchk-field-full{ grid-column:1 / -1; }

/* ---------------------------------------------------- buttons */
.nchk-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  height:44px; padding:0 22px; border:0; border-radius:9px;
  font-weight:700; font-size:14px; cursor:pointer; white-space:nowrap;
  transition:background .15s ease;
}
.nchk-btn-dark{ background:var(--nc-brand); color:#fff; }
.nchk-btn-dark:hover{ background:var(--nc-brand-700); }
.nchk-btn-accent{ background:var(--nc-accent); color:#fff; }
.nchk-btn-accent:hover{ background:#db6a12; }
.nchk-btn:disabled{ opacity:.6; cursor:not-allowed; }
.nchk-link-btn{
  background:none; border:0; padding:0; color:var(--nc-accent);
  font-weight:600; font-size:12.5px; cursor:pointer;
}

/* ---------------------------------------------------- domain */
.nchk-pills{ display:flex; gap:9px; flex-wrap:wrap; margin-bottom:16px; }
.nchk-pill{
  display:inline-flex; align-items:center; gap:8px; height:40px; padding:0 15px;
  border:1px solid var(--nc-border); border-radius:9px; background:#fff;
  font-size:13px; font-weight:600; color:var(--nc-muted); cursor:pointer;
  margin:0; transition:all .15s ease;
}
.nchk-pill input{ position:absolute; opacity:0; width:0; height:0; }
.nchk-pill i{ font-size:12px; }
.nchk-pill:hover{ border-color:#cfd3e4; color:var(--nc-text); }
.nchk-pill.active{
  border-color:var(--nc-brand); background:var(--nc-brand); color:#fff;
}
.nchk-pill.active i{ color:var(--nc-accent); }

.nchk-domain-row{
  display:flex; align-items:center; gap:0; border:1px solid var(--nc-border);
  border-radius:11px; background:#fff; overflow:hidden; height:52px;
}
.nchk-domain-row:focus-within{ border-color:var(--nc-accent); box-shadow:0 0 0 3px var(--nc-accent-soft); }
.nchk-www{
  padding:0 4px 0 16px; color:var(--nc-muted); font-size:13.5px; flex:0 0 auto;
}
.nchk-sld{
  flex:1 1 auto; height:50px; border:0 !important; border-radius:0 !important;
  box-shadow:none !important; font-size:15px; min-width:0;
}
.nchk-tld{
  flex:0 0 130px; height:50px; border:0 !important; border-left:1px solid var(--nc-border) !important;
  border-radius:0 !important; box-shadow:none !important; font-weight:600;
}
.nchk-domain-row .nchk-btn{
  flex:0 0 auto; height:52px; border-radius:0; margin:0;
}

.nchk-domain-extra{ margin-top:14px; max-width:340px; }
.nchk-ns{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; max-width:100%; }
.nchk-select-sm{ max-width:340px; }

.nchk-domain-result{
  display:flex; align-items:center; gap:11px; margin-top:14px;
  padding:13px 16px; border-radius:10px; font-size:13.5px; font-weight:600;
}
.nchk-domain-result.is-ok{ background:var(--nc-ok-bg); color:var(--nc-ok); border:1px solid #c4e6d3; }
.nchk-domain-result.is-bad{ background:var(--nc-bad-bg); color:var(--nc-bad); border:1px solid #f3c9c9; }
.nchk-domain-result.is-info{ background:#f7f8fc; color:var(--nc-muted); border:1px solid var(--nc-border); }
.nchk-domain-result .nchk-dp{ margin-left:auto; font-weight:700; }

.nchk-suggestions{ margin-top:12px; display:grid; gap:8px; }
.nchk-sugg{
  display:flex; align-items:center; gap:12px; padding:11px 14px;
  border:1px solid var(--nc-border); border-radius:9px; background:#fff; font-size:13.5px;
}
.nchk-sugg-name{ font-weight:600; }
.nchk-sugg-price{ margin-left:auto; color:var(--nc-muted); font-weight:600; }
.nchk-sugg-btn{
  border:1px solid var(--nc-accent); background:var(--nc-accent-soft); color:var(--nc-accent);
  border-radius:7px; height:30px; padding:0 12px; font-weight:700; font-size:12px; cursor:pointer;
}
.nchk-sugg-btn:hover{ background:var(--nc-accent); color:#fff; }
.nchk-sugg.is-taken{ opacity:.55; }
.nchk-sugg.is-taken .nchk-sugg-price{ text-decoration:line-through; }

/* ---------------------------------------------------- features */
.nchk-features{
  border:1px solid var(--nc-border); border-radius:11px; padding:14px 16px;
  background:#fbfbfe; margin-bottom:22px;
}
.nchk-features-head{
  display:flex; align-items:center; justify-content:space-between;
  font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.4px;
  color:var(--nc-muted); margin-bottom:10px;
}
.nchk-features-head i{ color:var(--nc-accent); margin-right:5px; }
.nchk-feature-list{
  list-style:none; margin:0; padding:0;
  display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:7px 18px;
}
.nchk-feature-list li{ font-size:13px; color:var(--nc-text); display:flex; gap:8px; align-items:baseline; }
.nchk-feature-list li i{ color:var(--nc-ok); font-size:10px; }
.nchk-feature-list.collapsed li:nth-child(n+7){ display:none; }

/* ---------------------------------------------------- billing cycles */
.nchk-cycles{ display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:10px; }
.nchk-cycle{
  position:relative; display:flex; flex-direction:column; gap:2px;
  padding:14px 15px; border:1.5px solid var(--nc-border); border-radius:11px;
  background:#fff; cursor:pointer; margin:0; transition:all .15s ease;
}
.nchk-cycle input{ position:absolute; opacity:0; width:0; height:0; }
.nchk-cycle:hover{ border-color:#cfd3e4; }
.nchk-cycle.active{ border-color:var(--nc-accent); background:var(--nc-accent-soft); }
.nchk-cycle-name{ font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.4px; color:var(--nc-muted); }
.nchk-cycle.active .nchk-cycle-name{ color:var(--nc-accent); }
.nchk-cycle-price{ font-size:17px; font-weight:700; color:var(--nc-brand); }
.nchk-cycle-setup{ font-size:11.5px; color:var(--nc-muted); }
.nchk-cycle-save{
  position:absolute; top:-9px; right:10px; background:var(--nc-ok); color:#fff;
  font-size:10px; font-weight:700; border-radius:20px; padding:2px 8px;
}
.nchk-cycle-save:empty{ display:none; }

/* ---------------------------------------------------- server locations */
.nchk-loc-head{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  flex-wrap:wrap; margin-bottom:12px;
}
.nchk-loc-head .nchk-label{ margin-bottom:0; }
.nchk-loc-search{ position:relative; }
.nchk-loc-search i{
  position:absolute; left:12px; top:50%; transform:translateY(-50%);
  color:var(--nc-muted); font-size:12px;
}
.nchk-loc-filter{
  height:38px; width:230px; padding:0 12px 0 32px;
  border:1px solid var(--nc-border); border-radius:9px; font-size:13px; outline:none;
  background:#fff; color:var(--nc-text);
}
.nchk-loc-filter:focus{ border-color:var(--nc-accent); box-shadow:0 0 0 3px var(--nc-accent-soft); }

.nchk-loc-grid{
  display:grid; grid-template-columns:repeat(auto-fill,minmax(178px,1fr)); gap:10px;
}
.nchk-loc{ position:relative; margin:0; cursor:pointer; }
.nchk-loc input{ position:absolute; opacity:0; width:0; height:0; }
.nchk-loc-inner{
  display:flex; align-items:center; gap:10px; height:100%;
  padding:12px 13px; border:1.5px solid var(--nc-border); border-radius:11px;
  background:#fff; transition:all .15s ease;
}
.nchk-loc:hover .nchk-loc-inner{ border-color:#cfd3e4; }
.nchk-loc input:checked + .nchk-loc-inner{
  border-color:var(--nc-accent); background:var(--nc-accent-soft);
}
.nchk-loc input:focus-visible + .nchk-loc-inner{ box-shadow:0 0 0 3px var(--nc-accent-soft); }

.nchk-flagwrap{
  flex:0 0 26px; width:26px; height:20px; border-radius:3px;
  display:flex; align-items:center; justify-content:center;
  background:transparent;
}
.nchk-flagwrap .nchk-f{ position:static; border-radius:2px; }
.nchk-flag-fallback{
  width:24px; height:16px; border-radius:3px; background:#eef0f7;
  border:1px solid var(--nc-border); display:flex; align-items:center;
  justify-content:center; font-size:9px; color:var(--nc-muted);
}

.nchk-loc-text{ min-width:0; display:flex; flex-direction:column; line-height:1.25; }
.nchk-loc-name{
  font-size:13px; font-weight:700; color:var(--nc-text);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.nchk-loc-sub{
  font-size:11px; color:var(--nc-muted);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.nchk-loc-price{
  margin-left:auto; font-size:11.5px; font-weight:700; color:var(--nc-accent); white-space:nowrap;
}
.nchk-loc-price:empty{ display:none; }
.nchk-loc-tick{
  position:absolute; top:-7px; right:-6px; color:var(--nc-accent);
  font-size:16px; background:#fff; border-radius:50%; line-height:1; display:none;
}
.nchk-loc input:checked ~ .nchk-loc-tick,
.nchk-loc input:checked + .nchk-loc-inner .nchk-loc-tick{ display:block; }
.nchk-loc-inner .nchk-loc-tick{ position:absolute; top:-7px; right:-6px; }

.nchk-loc.is-disabled{ cursor:not-allowed; }
.nchk-loc.is-disabled .nchk-loc-inner{ background:#f7f8fc; opacity:.62; }
.nchk-loc-badge{
  position:absolute; top:-8px; left:10px; background:var(--nc-muted); color:#fff;
  font-size:9.5px; font-weight:700; text-transform:uppercase; letter-spacing:.3px;
  border-radius:20px; padding:2px 7px;
}
.nchk-loc-empty{ margin:12px 0 0; font-size:13px; color:var(--nc-muted); }
.nchk-loc.is-hidden{ display:none; }

/* ---------------------------------------------------- generic option cards */
.nchk-opt-cards{ display:grid; grid-template-columns:repeat(auto-fill,minmax(190px,1fr)); gap:10px; }
.nchk-opt-card{
  position:relative; display:flex; align-items:center; gap:10px; margin:0; cursor:pointer;
  padding:13px 14px; border:1.5px solid var(--nc-border); border-radius:11px; background:#fff;
  transition:all .15s ease;
}
.nchk-opt-card input{ position:absolute; opacity:0; width:0; height:0; }
.nchk-opt-card:hover{ border-color:#cfd3e4; }
.nchk-opt-card:has(input:checked){ border-color:var(--nc-accent); background:var(--nc-accent-soft); }
.nchk-opt-card.is-disabled{ opacity:.55; cursor:not-allowed; }
.nchk-opt-name{ font-size:13px; font-weight:600; }
.nchk-opt-price{ margin-left:auto; font-size:12px; font-weight:700; color:var(--nc-accent); }
.nchk-opt-price:empty{ display:none; }

/* ---------------------------------------------------- quantity */
.nchk-qty{ display:flex; align-items:center; gap:8px; }
.nchk-qty-btn{
  width:40px; height:40px; border:1px solid var(--nc-border); border-radius:9px;
  background:#fff; font-size:17px; font-weight:700; color:var(--nc-brand); cursor:pointer;
}
.nchk-qty-btn:hover{ border-color:var(--nc-accent); color:var(--nc-accent); }
.nchk-qty-input{ width:88px; height:40px; text-align:center; font-weight:700; }
.nchk-qty-note{ font-size:12.5px; color:var(--nc-muted); }

/* ---------------------------------------------------- toggle */
.nchk-toggle{ display:flex; align-items:center; gap:12px; cursor:pointer; margin:0; }
.nchk-toggle input{ position:absolute; opacity:0; width:0; height:0; }
.nchk-toggle-ui{
  flex:0 0 42px; width:42px; height:24px; border-radius:20px; background:#d8dae8;
  position:relative; transition:background .15s ease;
}
.nchk-toggle-ui::after{
  content:""; position:absolute; top:3px; left:3px; width:18px; height:18px;
  border-radius:50%; background:#fff; transition:transform .15s ease;
  box-shadow:0 1px 3px rgba(17,12,76,.25);
}
.nchk-toggle input:checked + .nchk-toggle-ui{ background:var(--nc-accent); }
.nchk-toggle input:checked + .nchk-toggle-ui::after{ transform:translateX(18px); }
.nchk-toggle-text{ display:flex; align-items:baseline; gap:9px; }
.nchk-toggle-name{ font-size:13.5px; font-weight:600; }
.nchk-toggle-price{ font-size:12.5px; font-weight:700; color:var(--nc-accent); }

/* ---------------------------------------------------- addons */
.nchk-addons{ display:grid; gap:10px; }
.nchk-addon{ margin:0; cursor:pointer; }
.nchk-addon input{ position:absolute; opacity:0; width:0; height:0; }
.nchk-addon-box{
  display:flex; align-items:center; gap:12px; padding:13px 15px;
  border:1.5px solid var(--nc-border); border-radius:11px; background:#fff;
  transition:all .15s ease;
}
.nchk-addon:hover .nchk-addon-box{ border-color:#cfd3e4; }
.nchk-addon input:checked + .nchk-addon-box{ border-color:var(--nc-accent); background:var(--nc-accent-soft); }
.nchk-addon-tick{
  flex:0 0 20px; width:20px; height:20px; border:1.5px solid var(--nc-border);
  border-radius:6px; background:#fff; display:flex; align-items:center; justify-content:center;
  color:transparent; font-size:10px;
}
.nchk-addon input:checked + .nchk-addon-box .nchk-addon-tick{
  background:var(--nc-accent); border-color:var(--nc-accent); color:#fff;
}
.nchk-addon-body{ display:flex; flex-direction:column; min-width:0; }
.nchk-addon-name{ font-size:13.5px; font-weight:700; }
.nchk-addon-desc{ font-size:12px; color:var(--nc-muted); }
.nchk-addon-price{ margin-left:auto; font-size:13px; font-weight:700; color:var(--nc-brand); white-space:nowrap; }

/* ---------------------------------------------------- account box */
.nchk-account{
  display:flex; align-items:center; gap:13px; padding:14px 16px;
  border:1px solid var(--nc-border); border-radius:11px; background:#fbfbfe; margin-bottom:22px;
}
.nchk-avatar{
  flex:0 0 40px; width:40px; height:40px; border-radius:50%; background:var(--nc-brand);
  color:#fff; display:flex; align-items:center; justify-content:center;
}
.nchk-account-body{ display:flex; flex-direction:column; min-width:0; }
.nchk-account-body strong{ font-size:14px; }
.nchk-account-body span{ font-size:12.5px; color:var(--nc-muted); }
.nchk-account .nchk-btn-ghost{ margin-left:auto; }

/* ---------------------------------------------------- gateways */
.nchk-gateways{ display:grid; grid-template-columns:repeat(auto-fill,minmax(190px,1fr)); gap:10px; }
.nchk-gateway{
  position:relative; display:flex; align-items:center; gap:10px; margin:0; cursor:pointer;
  padding:14px 15px; border:1.5px solid var(--nc-border); border-radius:11px; background:#fff;
  transition:all .15s ease;
}
.nchk-gateway input{ position:absolute; opacity:0; width:0; height:0; }
.nchk-gateway:hover{ border-color:#cfd3e4; }
.nchk-gateway.active{ border-color:var(--nc-accent); background:var(--nc-accent-soft); }
.nchk-gateway-tick{ color:var(--nc-border); font-size:16px; }
.nchk-gateway.active .nchk-gateway-tick{ color:var(--nc-accent); }
.nchk-gateway-name{ font-size:13.5px; font-weight:600; }

/* ---------------------------------------------------- checkbox */
.nchk-check{ display:flex; align-items:flex-start; gap:9px; font-size:13px; margin:0; cursor:pointer; }
.nchk-check input{ margin-top:2px; accent-color:var(--nc-accent); }
.nchk-check a{ color:var(--nc-accent); font-weight:600; }

/* ---------------------------------------------------- summary */
.nchk-side{ min-width:0; }
.nchk-side.is-sticky{ position:sticky; top:20px; }

.nchk-summary{
  background:var(--nc-card); border:1px solid var(--nc-border);
  border-radius:14px; box-shadow:var(--nc-shadow); overflow:hidden;
}
.nchk-summary-head{
  padding:15px 18px; border-bottom:1px solid var(--nc-border); background:var(--nc-brand);
}
.nchk-summary-head h3{
  margin:0; font-size:14px; font-weight:700; color:#fff;
  display:flex; align-items:center; gap:8px; letter-spacing:.2px;
}
.nchk-summary-head i{ color:var(--nc-accent); }
.nchk-summary-body{ padding:16px 18px 18px; }

.nchk-lines{ display:flex; flex-direction:column; gap:10px; padding-bottom:14px; }
.nchk-line{ display:flex; gap:10px; align-items:baseline; font-size:13px; }
.nchk-line-label{ display:flex; flex-direction:column; min-width:0; }
.nchk-line-label em{ font-style:normal; font-size:11.5px; color:var(--nc-muted); }
.nchk-line-price{ margin-left:auto; font-weight:700; white-space:nowrap; }
.nchk-line-setup{ font-size:11px; color:var(--nc-muted); display:block; text-align:right; font-weight:400; }
.nchk-line.is-domain .nchk-line-price{ color:var(--nc-brand); }

/* promo */
.nchk-promo{ border-top:1px solid var(--nc-border); padding:14px 0; }
.nchk-promo-toggle{
  background:none; border:0; padding:0; color:var(--nc-accent);
  font-size:12.5px; font-weight:700; cursor:pointer; display:flex; align-items:center; gap:7px;
}
.nchk-promo-box{ display:flex; gap:8px; margin-top:10px; }
.nchk-promo-box .nchk-input{ height:40px; font-size:13px; }
.nchk-promo-box .nchk-btn{ height:40px; padding:0 16px; font-size:13px; }
.nchk-promo-msg{ margin-top:9px; font-size:12.5px; font-weight:600; }
.nchk-promo-msg.is-ok{ color:var(--nc-ok); }
.nchk-promo-msg.is-bad{ color:var(--nc-bad); }

.nchk-totals{ border-top:1px solid var(--nc-border); padding-top:14px; display:flex; flex-direction:column; gap:9px; }
.nchk-total-row{ display:flex; justify-content:space-between; font-size:13px; color:var(--nc-muted); }
.nchk-total-row strong{ color:var(--nc-text); font-weight:700; }
.nchk-discount strong{ color:var(--nc-ok); }

.nchk-grand{
  margin-top:14px; padding-top:14px; border-top:2px solid var(--nc-border);
  text-align:right;
}
.nchk-grand > span{ font-size:12px; color:var(--nc-muted); text-transform:uppercase; letter-spacing:.4px; font-weight:700; }
.nchk-grand-amount{ font-size:27px; font-weight:700; color:var(--nc-brand); line-height:1.2; margin-top:2px; }
.nchk-grand-recurring{ font-size:12px; color:var(--nc-muted); margin-top:2px; }

.nchk-tos{ margin:16px 0 0; }

.nchk-submit{
  width:100%; margin-top:16px; height:52px; border:0; border-radius:11px;
  background:var(--nc-accent); color:#fff; font-size:15px; font-weight:700;
  cursor:pointer; display:flex; align-items:center; justify-content:center; gap:9px;
  transition:background .15s ease;
}
.nchk-submit:hover{ background:var(--nc-brand); }
.nchk-submit:disabled{ opacity:.6; cursor:not-allowed; }
.nchk-submit i{ font-size:13px; }

.nchk-secure{
  margin:12px 0 0; text-align:center; font-size:11.5px; color:var(--nc-muted);
}
.nchk-secure i{ color:var(--nc-ok); }

.nchk-continue{
  display:flex; align-items:center; justify-content:center; gap:8px;
  margin-top:12px; padding:11px; border-radius:10px;
  border:1px solid var(--nc-border); background:var(--nc-card);
  color:var(--nc-muted); font-size:13px; font-weight:600; text-decoration:none;
}
.nchk-continue:hover{ color:var(--nc-accent); border-color:var(--nc-accent); text-decoration:none; }

/* ---------------------------------------------------- responsive */
@media (max-width: 1100px){
  .nchk-grid{ grid-template-columns:1fr; }
  .nchk-side.is-sticky{ position:static; }
}
@media (max-width: 640px){
  .nchk-title{ font-size:21px; }
  .nchk-topbar{ align-items:flex-start; }
  .nchk-fields{ grid-template-columns:1fr; }
  .nchk-feature-list{ grid-template-columns:1fr; }
  .nchk-card-body{ padding:16px 15px 18px; }
  .nchk-card-head{ padding:15px; }
  .nchk-domain-row{ flex-wrap:wrap; height:auto; border:0; }
  .nchk-domain-row:focus-within{ box-shadow:none; }
  .nchk-www{ display:none; }
  .nchk-sld{
    flex:1 1 100%; height:48px; border:1px solid var(--nc-border) !important;
    border-radius:10px !important; padding:0 13px;
  }
  .nchk-tld{
    flex:1 1 45%; height:48px; border:1px solid var(--nc-border) !important;
    border-radius:10px !important;
  }
  .nchk-domain-row .nchk-btn{ flex:1 1 45%; height:48px; border-radius:10px; }
  .nchk-loc-search{ width:100%; }
  .nchk-loc-filter{ width:100%; }
  .nchk-loc-grid{ grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); }
  .nchk-cycles{ grid-template-columns:repeat(2,1fr); }
  .nchk-pill{ flex:1 1 100%; }
}

/* keep the guest shell from clipping the sticky summary */
body.pt-tpl-naim-onepage .pt-content-inner{ overflow:visible; }


/* ============================================================ DOMAIN BASKET */
.nchk-dm-list{ display:flex; flex-direction:column; gap:9px; }
.nchk-dm-row{
  display:flex; align-items:center; gap:11px; flex-wrap:wrap;
  padding:12px 14px; border:1.5px solid var(--nc-border);
  border-radius:11px; background:#fff;
}
.nchk-dm-name{ font-size:14px; font-weight:700; color:var(--nc-brand); }
.nchk-dm-badge{
  font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.3px;
  padding:3px 8px; border-radius:20px; background:var(--nc-accent-soft); color:var(--nc-accent);
}
.nchk-dm-badge.is-transfer{ background:#e8effa; color:#2b5fb8; }
.nchk-dm-years{ width:118px; height:38px; margin-left:auto; font-size:13px; }
.nchk-dm-protect{
  display:flex; align-items:center; gap:7px; margin:0;
  font-size:12.5px; color:var(--nc-muted); cursor:pointer; white-space:nowrap;
}
.nchk-dm-protect input{ accent-color:var(--nc-accent); }
.nchk-dm-remove{
  width:34px; height:34px; border:1px solid var(--nc-border); border-radius:9px;
  background:#fff; color:var(--nc-muted); cursor:pointer; flex:0 0 auto;
}
.nchk-dm-remove:hover{ border-color:#e0b4b4; color:var(--nc-bad); background:#fdf4f4; }
.nchk-dm-empty{
  margin:10px 0 0; padding:16px; text-align:center; font-size:13px;
  color:var(--nc-muted); border:1.5px dashed var(--nc-border); border-radius:11px;
  transition:color .2s ease;
}

/* ============================================================ MOBILE */
@media (max-width: 991px){
  .nchk-grid{ grid-template-columns:1fr; }
  .nchk-side.is-sticky{ position:static; }
  .nchk-side{ order:2; }
  .nchk-main{ order:1; }
}

@media (max-width: 640px){
  .nchk{ font-size:14px; }
  .nchk-topbar{ flex-direction:column; align-items:stretch; gap:12px; }
  .nchk-topbar-right{ justify-content:space-between; }
  .nchk-btn-ghost{ flex:1; justify-content:center; }

  .nchk-card{ border-radius:12px; }
  .nchk-card-head{ padding:14px; gap:11px; }
  .nchk-card-head h2{ font-size:15.5px; }
  .nchk-card-body{ padding:15px 14px 18px; }
  .nchk-step{ flex:0 0 26px; width:26px; height:26px; font-size:12px; }

  .nchk-fields{ grid-template-columns:1fr; }
  .nchk-feature-list{ grid-template-columns:1fr; }
  .nchk-cycles{ grid-template-columns:1fr 1fr; }
  .nchk-loc-grid{ grid-template-columns:1fr 1fr; gap:8px; }
  .nchk-loc-inner{ padding:10px; gap:8px; }
  .nchk-loc-name{ font-size:12px; }
  .nchk-loc-sub{ font-size:10px; }
  .nchk-loc-price{ display:none; }
  .nchk-opt-cards{ grid-template-columns:1fr; }
  .nchk-gateways{ grid-template-columns:1fr; }

  .nchk-pills{ gap:7px; }
  .nchk-pill{ flex:1 1 100%; justify-content:center; }

  .nchk-domain-row{ flex-wrap:wrap; height:auto; border:0; gap:8px; }
  .nchk-domain-row:focus-within{ box-shadow:none; }
  .nchk-www{ display:none; }
  .nchk-sld{
    flex:1 1 100%; height:48px; border:1px solid var(--nc-border) !important;
    border-radius:10px !important; padding:0 13px;
  }
  .nchk-tld{
    flex:1 1 calc(45% - 4px); height:48px;
    border:1px solid var(--nc-border) !important; border-radius:10px !important;
  }
  .nchk-domain-row .nchk-btn{ flex:1 1 calc(55% - 4px); height:48px; border-radius:10px; }

  .nchk-dm-row{ gap:8px; }
  .nchk-dm-name{ flex:1 1 100%; font-size:13.5px; word-break:break-all; }
  .nchk-dm-years{ margin-left:0; flex:1 1 auto; width:auto; }
  .nchk-dm-protect{ flex:1 1 auto; }

  .nchk-summary-body{ padding:14px; }
  .nchk-grand-amount{ font-size:24px; }
  .nchk-submit{ height:50px; font-size:14.5px; }

  /* thumb-friendly sticky action bar */
  .nchk-side .nchk-submit{ position:relative; }
}

@media (max-width: 380px){
  .nchk-cycles{ grid-template-columns:1fr; }
  .nchk-loc-grid{ grid-template-columns:1fr; }
}

/* larger tap targets on touch devices */
@media (hover: none){
  .nchk-input{ height:46px; font-size:15px; }
  .nchk-qty-btn{ width:44px; height:44px; }
  .nchk-check input{ width:18px; height:18px; }
}

/* ============================================================ DOMAIN SEARCH */
.nchk-search{
  display:flex; align-items:stretch; height:58px;
  border:1.5px solid var(--nc-border); border-radius:14px; background:#fff;
  overflow:hidden; transition:border-color .15s ease, box-shadow .15s ease;
}
.nchk-search:focus-within{
  border-color:var(--nc-accent);
  box-shadow:0 0 0 4px var(--nc-accent-soft);
}
.nchk-search-icon{
  display:flex; align-items:center; justify-content:center;
  width:50px; flex:0 0 50px; color:var(--nc-muted); font-size:15px;
}
.nchk-search-input{
  flex:1 1 auto; min-width:0; border:0; outline:none;
  font-size:16px; font-weight:600; color:var(--nc-text);
  padding:0 6px 0 0; background:transparent;
}
.nchk-search-input::placeholder{ font-weight:400; color:#a6aabd; }
.nchk-search-tld{
  flex:0 0 118px; border:0; border-left:1px solid var(--nc-border);
  outline:none; background:#fbfbfe; font-size:14px; font-weight:700;
  color:var(--nc-brand); padding:0 10px 0 14px; cursor:pointer;
  -webkit-appearance:none; appearance:none;
  background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7088' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 12px center; background-size:11px;
}
.nchk-search-btn{
  flex:0 0 auto; display:inline-flex; align-items:center; gap:8px;
  padding:0 26px; border:0; background:var(--nc-brand); color:#fff;
  font-size:14.5px; font-weight:700; cursor:pointer; transition:background .15s ease;
}
.nchk-search-btn:hover{ background:var(--nc-accent); }
.nchk-search-btn:disabled{ opacity:.65; cursor:wait; }
.nchk-search-hint{
  margin:9px 2px 0; font-size:12px; color:var(--nc-muted);
}

/* ============================================================ DOMAIN ADDONS */
.nchk-daddons{ margin-top:18px; }
.nchk-daddon-grid{ display:grid; gap:9px; }
.nchk-daddon{ margin:0; cursor:pointer; }
.nchk-daddon input{ position:absolute; opacity:0; width:0; height:0; }
.nchk-daddon-box{
  display:flex; align-items:center; gap:12px; padding:12px 14px;
  border:1.5px solid var(--nc-border); border-radius:11px; background:#fff;
  transition:all .15s ease;
}
.nchk-daddon:hover .nchk-daddon-box{ border-color:#cfd3e4; }
.nchk-daddon input:checked + .nchk-daddon-box{
  border-color:var(--nc-accent); background:var(--nc-accent-soft);
}
.nchk-daddon-tick{
  flex:0 0 20px; width:20px; height:20px; border:1.5px solid var(--nc-border);
  border-radius:6px; background:#fff; display:flex; align-items:center;
  justify-content:center; color:transparent; font-size:10px;
}
.nchk-daddon input:checked + .nchk-daddon-box .nchk-daddon-tick{
  background:var(--nc-accent); border-color:var(--nc-accent); color:#fff;
}
.nchk-daddon-body{ display:flex; flex-direction:column; min-width:0; }
.nchk-daddon-name{ font-size:13.5px; font-weight:700; }
.nchk-daddon-name i{ color:var(--nc-accent); margin-right:5px; font-size:12px; }
.nchk-daddon-desc{ font-size:11.5px; color:var(--nc-muted); }
.nchk-daddon-price{
  margin-left:auto; font-size:12.5px; font-weight:700;
  color:var(--nc-brand); white-space:nowrap;
}

/* ============================================================ NAMESERVERS */
.nchk-nsbox{
  margin-top:18px; padding:15px 16px;
  border:1px solid var(--nc-border); border-radius:12px; background:#fbfbfe;
}
.nchk-nsbox-head .nchk-mini-label i{ color:var(--nc-accent); margin-right:5px; }
.nchk-nsmode{ display:flex; gap:9px; flex-wrap:wrap; margin-top:4px; }
.nchk-nsmode-opt{
  display:inline-flex; align-items:center; gap:8px; margin:0; cursor:pointer;
  padding:9px 14px; border:1.5px solid var(--nc-border); border-radius:9px;
  background:#fff; font-size:12.5px; font-weight:600; color:var(--nc-muted);
  transition:all .15s ease;
}
.nchk-nsmode-opt input{ position:absolute; opacity:0; width:0; height:0; }
.nchk-nsmode-opt:hover{ border-color:#cfd3e4; }
.nchk-nsmode-opt.active{
  border-color:var(--nc-accent); background:var(--nc-accent-soft); color:var(--nc-accent);
}
.nchk-nsfields{ margin-top:14px; }
.nchk-nsgrid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px 14px; }
.nchk-nsgrid .nchk-field-full{ grid-column:1 / -1; }

@media (max-width: 640px){
  .nchk-search{ height:auto; flex-wrap:wrap; border:0; box-shadow:none; }
  .nchk-search:focus-within{ box-shadow:none; }
  .nchk-search-icon{ display:none; }
  .nchk-search-input{
    flex:1 1 100%; height:50px; padding:0 14px;
    border:1.5px solid var(--nc-border); border-radius:11px; font-size:16px;
  }
  .nchk-search-input:focus{ border-color:var(--nc-accent); }
  .nchk-search-tld{
    flex:1 1 calc(42% - 4px); height:48px; margin-top:8px;
    border:1.5px solid var(--nc-border); border-radius:11px;
  }
  .nchk-search-btn{
    flex:1 1 calc(58% - 4px); height:48px; margin-top:8px;
    margin-left:8px; border-radius:11px; justify-content:center; padding:0;
  }
  .nchk-nsgrid{ grid-template-columns:1fr; }
  .nchk-nsmode-opt{ flex:1 1 100%; justify-content:center; }
}


/* ============================================================ SPACING */
/* payment method needs air above it — it used to collide with the note */
.nchk-block-pay{
  margin-top:30px; padding-top:26px;
  border-top:1px solid var(--nc-border);
}
.nchk-note{ margin-top:22px; }
.nchk-cf-block{ margin-top:28px; }

/* ============================================================ DEFAULT NAMESERVERS */
.nchk-nsdefault{
  display:flex; align-items:center; flex-wrap:wrap; gap:6px;
  margin:12px 0 0; font-size:12.5px; color:var(--nc-muted);
}
.nchk-nsdefault i{ color:var(--nc-muted); font-size:12px; }
.nchk-nsdefault code{
  padding:3px 8px; border-radius:6px;
  background:#eef0f7; border:1px solid var(--nc-border);
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
  font-size:12px; color:var(--nc-brand);
}

/* ============================================================ TRANSFER NOTICE */
.nchk-transfer{
  margin-top:16px; padding:14px 16px; border-radius:11px;
  background:#eef3fc; border:1px solid #cddcf3;
}
.nchk-transfer-head{
  display:flex; gap:12px; align-items:flex-start; margin-bottom:12px;
}
.nchk-transfer-head > i{ color:#2b5fb8; font-size:15px; margin-top:2px; }
.nchk-transfer-head strong{ display:block; font-size:13.5px; color:#1f3f7a; }
.nchk-transfer-head span{ display:block; font-size:12px; color:#4a6193; margin-top:2px; line-height:1.45; }
.nchk-transfer .nchk-mini-label{ color:#1f3f7a; }
.nchk-transfer .nchk-input{ background:#fff; }
.nchk-transfer:last-child .nchk-transfer-head{ margin-bottom:0; }

/* ============================================================ REGISTRATION TERM */
.nchk-term{ margin-top:18px; }
.nchk-term .nchk-mini-label i{ color:var(--nc-accent); margin-right:5px; }
.nchk-term-cards{
  display:grid; grid-template-columns:repeat(auto-fill,minmax(118px,1fr));
  gap:9px; margin-top:4px;
}
.nchk-term-card{
  position:relative; display:flex; flex-direction:column; gap:2px;
  padding:11px 12px; border:1.5px solid var(--nc-border); border-radius:11px;
  background:#fff; cursor:pointer; text-align:left;
  transition:border-color .15s ease, background .15s ease;
}
.nchk-term-card:hover{ border-color:#cfd3e4; }
.nchk-term-card.active{ border-color:var(--nc-accent); background:var(--nc-accent-soft); }
.nchk-term-y{
  font-size:11px; font-weight:700; letter-spacing:.3px;
  text-transform:uppercase; color:var(--nc-muted);
}
.nchk-term-card.active .nchk-term-y{ color:var(--nc-accent); }
.nchk-term-p{ font-size:15px; font-weight:700; color:var(--nc-brand); }
.nchk-term-save{
  position:absolute; top:-8px; right:8px;
  background:var(--nc-ok); color:#fff; font-size:9.5px; font-weight:700;
  border-radius:20px; padding:2px 7px; letter-spacing:.2px;
}
/* the real field stays in the DOM for no-JS submits, hidden when cards render */
.nchk-term-select{ position:absolute; width:1px; height:1px; opacity:0; pointer-events:none; }

/* ============================================================ DOMAIN ROW EPP */
.nchk-dm-epp{
  flex:1 1 100%; height:40px; margin-top:4px; font-size:13px;
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
}

/* ============================================================ MOBILE (final pass) */
@media (max-width: 640px){
  .nchk-cur{ width:100%; justify-content:center; }
  .nchk-cur-btn{ flex:1; justify-content:center; }
  .nchk-term-cards{ grid-template-columns:1fr 1fr; }
  .nchk-nsdefault-list{ flex-direction:column; }
  .nchk-nsdefault-item{ width:100%; }
  .nchk-block-pay{ margin-top:26px; padding-top:22px; }
  .nchk-transfer{ padding:13px; }
  .nchk-daddon-desc{ display:none; }
}

@media (max-width: 380px){
  .nchk-term-cards{ grid-template-columns:1fr; }
}


/* ============================================================ EPP */
.nchk-dm-eppwrap{
  flex:1 1 100%; display:flex; flex-direction:column; gap:7px;
  margin:12px 0 0; padding:13px 14px;
  background:#fff8f2; border:1px solid #f3d9bf; border-radius:10px;
}
.nchk-dm-epplabel{
  display:flex; align-items:center; gap:7px;
  font-size:12px; font-weight:700; letter-spacing:.2px;
  color:#8a5a10;
}
.nchk-dm-epplabel i{ color:var(--nc-accent); font-size:12px; }
.nchk-dm-epplabel b{ color:var(--nc-accent); font-weight:700; }
.nchk-dm-epp{
  height:44px; font-size:13.5px; letter-spacing:.4px;
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
  background:#fff; border-color:#f0d3b6;
}
.nchk-dm-epp::placeholder{
  font-family:inherit; letter-spacing:0; font-size:13px; color:#b99a7c;
}
.nchk-dm-epp:focus{
  border-color:var(--nc-accent);
  box-shadow:0 0 0 3px var(--nc-accent-soft);
}
.nchk-dm-epp.is-missing{
  border-color:#f0d3b6; background:#fff;
}
.nchk-dm-eppwrap .nchk-dm-hint{
  font-size:11.5px; color:#a6785a;
}

/* the product-page EPP panel inherits the same calm treatment */
.nchk-transfer .nchk-input{
  height:44px; font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
  letter-spacing:.4px;
}
.nchk-transfer .nchk-input::placeholder{
  font-family:inherit; letter-spacing:0;
}

.nchk-input.is-missing{
  border-color:#e6b9b9; background:#fdf7f7;
}
.nchk-input.is-missing:focus{
  border-color:var(--nc-bad); box-shadow:0 0 0 3px rgba(179,40,40,.10);
}

/* ============================================================ CHOSEN DOMAIN */
.nchk-chosen{
  display:flex; align-items:center; gap:13px;
  padding:16px 18px; border-radius:12px;
  background:#f2faf5; border:1.5px solid #c4e6d3;
}
.nchk-chosen-icon{
  flex:0 0 34px; width:34px; height:34px; border-radius:50%;
  background:var(--nc-ok); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:13px;
}
.nchk-chosen-body{ display:flex; flex-direction:column; min-width:0; }
.nchk-chosen-name{
  font-size:16px; font-weight:700; color:var(--nc-brand);
  word-break:break-all; line-height:1.3;
}
.nchk-chosen-meta{ font-size:12px; color:#4d7a62; margin-top:1px; }
.nchk-chosen-remove{
  margin-left:auto; flex:0 0 auto;
  display:inline-flex; align-items:center; gap:7px;
  height:38px; padding:0 15px; border-radius:9px;
  border:1px solid var(--nc-border); background:#fff;
  color:var(--nc-muted); font-size:12.5px; font-weight:700; cursor:pointer;
  transition:all .15s ease;
}
.nchk-chosen-remove:hover{
  border-color:var(--nc-accent); color:var(--nc-accent); background:var(--nc-accent-soft);
}

.nchk-use-btn{
  margin-left:auto; flex:0 0 auto;
  display:inline-flex; align-items:center; gap:7px;
  height:38px; padding:0 18px; border:0; border-radius:9px;
  background:var(--nc-ok); color:#fff;
  font-size:13px; font-weight:700; cursor:pointer; white-space:nowrap;
}
.nchk-use-btn:hover{ background:#155f35; }

.nchk-search.is-missing{
  border-color:var(--nc-bad);
  box-shadow:0 0 0 4px rgba(179,40,40,.10);
}

/* ============================================================ PROCESSING OVERLAY */
.nchk-overlay{
  position:fixed; inset:0; z-index:9999;
  display:flex; align-items:center; justify-content:center;
  padding:24px;
  background:rgba(17,12,76,.55);
  -webkit-backdrop-filter:blur(4px); backdrop-filter:blur(4px);
  animation:nchkFade .18s ease;
}
@keyframes nchkFade{ from{opacity:0} to{opacity:1} }
.nchk-overlay-card{
  width:100%; max-width:380px; padding:34px 30px 28px;
  background:#fff; border-radius:18px; text-align:center;
  box-shadow:0 24px 60px rgba(17,12,76,.30);
}
.nchk-overlay-card h3{
  margin:20px 0 6px; font-size:18px; font-weight:700; color:var(--nc-brand);
}
.nchk-overlay-card p{ margin:0; font-size:13px; color:var(--nc-muted); line-height:1.5; }
.nchk-spinner{ display:flex; justify-content:center; gap:7px; }
.nchk-spinner span{
  width:11px; height:11px; border-radius:50%; background:var(--nc-accent);
  animation:nchkBounce 1.1s infinite ease-in-out both;
}
.nchk-spinner span:nth-child(1){ animation-delay:-.28s; }
.nchk-spinner span:nth-child(2){ animation-delay:-.14s; }
@keyframes nchkBounce{
  0%,80%,100%{ transform:scale(.55); opacity:.45 }
  40%{ transform:scale(1); opacity:1 }
}
.nchk-overlay-bar{
  margin-top:22px; height:4px; border-radius:4px;
  background:#eef0f7; overflow:hidden;
}
.nchk-overlay-bar i{
  display:block; height:100%; width:40%; border-radius:4px;
  background:var(--nc-accent);
  animation:nchkSlide 1.3s infinite ease-in-out;
}
@keyframes nchkSlide{
  0%{ transform:translateX(-100%) }
  100%{ transform:translateX(260%) }
}

/* ============================================================ PRICES & BREATHING ROOM */
.nchk-cycle-price{ font-size:16px; letter-spacing:-.2px; white-space:nowrap; }
.nchk-cycle{ padding:15px 16px; }
.nchk-cycles{ grid-template-columns:repeat(auto-fit,minmax(158px,1fr)); gap:11px; }

.nchk-term-cards{ grid-template-columns:repeat(auto-fill,minmax(112px,1fr)); gap:8px; }
.nchk-term-card{ padding:10px 11px; }
.nchk-term-p{ font-size:14px; white-space:nowrap; letter-spacing:-.2px; }

.nchk-line-price{ font-variant-numeric:tabular-nums; }
.nchk-total-row strong,
.nchk-grand-amount{ font-variant-numeric:tabular-nums; letter-spacing:-.4px; }

.nchk-card-body{ padding:24px 24px 26px; }
.nchk-block{ margin-bottom:26px; }
.nchk-card-head{ padding:20px 24px; }
.nchk-domain-extra,
.nchk-term,
.nchk-nsbox{ margin-top:22px; }
.nchk-chosen + .nchk-daddons{ margin-top:20px; }

/* ============================================================ YOUR DETAILS */
.nchk-fieldset{
  padding:20px; margin-bottom:18px;
  border:1px solid var(--nc-border); border-radius:12px; background:#fdfdff;
}
.nchk-fieldset:last-child{ margin-bottom:0; }
.nchk-fieldset-head{
  display:flex; align-items:center; gap:9px; margin-bottom:16px;
}
.nchk-fieldset-head i{
  width:28px; height:28px; flex:0 0 28px; border-radius:8px;
  background:var(--nc-accent-soft); color:var(--nc-accent);
  display:flex; align-items:center; justify-content:center; font-size:12px;
}
.nchk-fieldset-head span{
  font-size:12px; font-weight:700; letter-spacing:.4px;
  text-transform:uppercase; color:var(--nc-brand);
}
.nchk-fields{ gap:16px 18px; }
.nchk-input{ height:46px; }
.nchk-mini-label{ margin-bottom:7px; }

@media (max-width: 640px){
  .nchk-card-body{ padding:16px 15px 20px; }
  .nchk-card-head{ padding:15px; }
  .nchk-fieldset{ padding:15px; }
  .nchk-chosen{ flex-wrap:wrap; padding:14px; }
  .nchk-chosen-remove{ margin-left:0; width:100%; justify-content:center; }
  .nchk-use-btn{ margin-left:0; width:100%; justify-content:center; margin-top:10px; }
  .nchk-overlay-card{ padding:28px 22px 24px; }
}

/* ============================================================ CAPTCHA */
.nchk-captcha{ margin-top:18px; display:flex; justify-content:center; }
.nchk-captcha-note{
  display:flex; align-items:center; gap:7px; margin:0;
  font-size:11.5px; color:var(--nc-muted);
}
.nchk-captcha-note i{ color:var(--nc-ok); }
.nchk-captcha .g-recaptcha,
.nchk-captcha .h-captcha{ transform-origin:center; }
@media (max-width: 400px){
  .nchk-captcha .g-recaptcha,
  .nchk-captcha .h-captcha{ transform:scale(.86); }
}

/* currency toggle now shows the code only */
.nchk-cur-btn{ padding:0 15px; }
.nchk-cur-code{ font-size:12.5px; }
