/* Netslim orderform - werkt bovenop netslim.css (al geladen door header.tpl) */

/* ============ PRIMAIR DOMEIN RESULTAAT ============ */
.ns-result-primary {
  display: flex; align-items: center; gap: 1.5rem;
  background: #fff; border: 1px solid hsl(var(--border));
  border-radius: 1rem; padding: 1.75rem 2rem;
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.ns-result-primary::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
}
.ns-result-primary.is-available::before { background: #2F9E55; }
.ns-result-primary.is-taken::before     { background: #5A6772; }
.ns-result-status {
  width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ns-result-primary.is-available .ns-result-status {
  background: rgba(47,158,85,.1); color: #2F9E55;
}
.ns-result-primary.is-taken .ns-result-status {
  background: rgba(90,103,114,.1); color: #5A6772;
}
.ns-result-body { flex: 1; min-width: 0; }
.ns-result-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; text-transform: uppercase; letter-spacing: .18em;
  color: hsl(var(--muted-foreground)); margin: 0 0 .25rem; font-weight: 500;
}
.ns-result-primary.is-available .ns-result-label { color: #2F9E55; }
.ns-result-domain {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600;
  margin: 0; color: hsl(var(--foreground)); word-break: break-all;
}
.ns-result-meta {
  margin: .5rem 0 0; color: hsl(var(--muted-foreground));
  font-size: .95rem; line-height: 1.5;
}
.ns-result-cta { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 720px) {
  .ns-result-primary { flex-wrap: wrap; padding: 1.25rem; }
  .ns-result-cta { width: 100%; justify-content: center; }
}

/* ============ TLD ALTERNATIEVEN GRID ============ */
.ns-tld-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.ns-tld-card {
  background: #fff; border: 1px solid hsl(var(--border));
  border-radius: .75rem; padding: 1.25rem;
  display: flex; flex-direction: column; gap: .5rem;
  transition: all .15s;
}
.ns-tld-card:hover {
  border-color: hsl(var(--primary));
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.ns-tld-domain {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 1rem; word-break: break-all; color: hsl(var(--foreground));
}
.ns-tld-price {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  color: hsl(var(--primary)); font-size: 1.125rem;
}
.ns-tld-btn { margin-top: .5rem; justify-content: center; font-size: .875rem; padding: .5rem 1rem; }

/* ============ PRIJZEN PER TLD PILLS ============ */
.ns-tld-price-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .5rem;
}
.ns-tld-pill {
  display: flex; flex-direction: column; gap: .15rem;
  padding: .75rem 1rem; background: #fff;
  border: 1px solid hsl(var(--border)); border-radius: .5rem;
}
.ns-tld-pill-name {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 1rem; color: hsl(var(--foreground));
}
.ns-tld-pill-price {
  font-size: .875rem; color: hsl(var(--primary)); font-weight: 600;
}
.ns-tld-pill-price small {
  color: hsl(var(--muted-foreground)); font-weight: 400; margin-left: 2px;
}

/* ============ USP STRIP ============ */
.ns-usp-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.ns-usp {
  background: #fff; border: 1px solid hsl(var(--border));
  border-radius: .75rem; padding: 1.5rem;
}
.ns-usp-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: hsl(var(--primary)/.1); color: hsl(var(--primary));
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.ns-usp h4 {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem;
  font-weight: 600; margin: 0 0 .35rem;
}
.ns-usp p {
  margin: 0; color: hsl(var(--muted-foreground)); font-size: .9rem; line-height: 1.5;
}

/* ============ PRODUCTS & CART (bestaand, behouden) ============ */
.ns-products { display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin: 24px 0; }
.ns-product { background:#fff; border:1px solid hsl(var(--border)); border-radius: 14px;
  padding: 28px; box-shadow: 0 1px 3px rgba(15,20,25,.06);
  transition: transform .15s, box-shadow .15s, border-color .15s; display:flex; flex-direction:column; }
.ns-product:hover { transform: translateY(-3px); border-color: hsl(var(--primary));
  box-shadow: 0 16px 32px -8px rgba(15,20,25,.14); }
.ns-product h3 { margin:0 0 6px; font-size: 20px; }
.ns-product .ns-product-tag { font-size:12px; text-transform: uppercase; letter-spacing:.08em; color: hsl(var(--muted-foreground)); }
.ns-product .ns-price { font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight:700;
  color: hsl(var(--primary)); margin: 16px 0 4px; }
.ns-product .ns-price small { font-size: 13px; color: hsl(var(--muted-foreground)); font-weight: 500; }
.ns-product ul { list-style:none; padding:0; margin: 16px 0; flex: 1; }
.ns-product ul li { padding: 6px 0; border-bottom: 1px dashed hsl(var(--border)); font-size:14px; }
.ns-product ul li:last-child { border-bottom: none; }

.ns-summary { background:#fff; border:1px solid hsl(var(--border)); border-radius: 14px; padding: 24px; position: sticky; top: 24px; }
.ns-summary h3 { margin:0 0 16px; font-size: 18px; }
.ns-summary .ns-sum-row { display:flex; justify-content:space-between; padding: 8px 0; border-bottom: 1px solid hsl(var(--border)); font-size:14px; }
.ns-summary .ns-sum-row.total { font-size: 18px; font-weight:700; border-bottom: none; padding-top: 16px; }

/* ============ FULL-BLEED HERO (breekt uit WHMCS container) ============ */
.ns-hero-fullbleed{position:relative;width:100vw;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;background:linear-gradient(135deg,#0F1419 0%,#1B232B 60%,#2A1418 100%);color:#fff;padding:4rem 1.5rem 3.5rem;overflow:hidden;margin-top:-2rem;margin-bottom:0}
.ns-hero-fullbleed::before{content:"";position:absolute;inset:0;background:radial-gradient(ellipse at 80% 20%,hsl(var(--primary)/.18) 0%,transparent 55%),radial-gradient(ellipse at 20% 80%,hsl(206 60% 50% / .12) 0%,transparent 55%);pointer-events:none}
.ns-hero-fullbleed-inner{position:relative;max-width:48rem;margin:0 auto;text-align:center;z-index:1}
.ns-hero-fullbleed .ns-domain-search input[type=text]{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.15);color:#fff}
.ns-hero-fullbleed .ns-domain-search input[type=text]::placeholder{color:rgba(255,255,255,.45)}
.ns-hero-fullbleed .ns-domain-search-note{text-align:center;margin-top:.75rem;color:rgba(255,255,255,.6);font-size:.85rem}
